First create solution
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,95 @@
|
||||
Imports System.Text
|
||||
Imports System.Security.Cryptography
|
||||
Imports System.IO
|
||||
Imports DevExpress.Xpo.Metadata
|
||||
|
||||
Public Module EncryptDecrypt
|
||||
Public Function AESEncrypt(ByVal PlainText As String, ByVal Password As String, ByVal salt As String) As String
|
||||
Const HashAlgorithm As String = "SHA1" 'Can be SHA1 or MD5
|
||||
Const PasswordIterations As Integer = 2
|
||||
Const InitialVector As String = "CanEncryption123" 'This should be a string of 16 ASCII characters.
|
||||
Const KeySize As Integer = 256 'Can be 128, 192, or 256.
|
||||
|
||||
If (String.IsNullOrEmpty(PlainText)) Then
|
||||
Return ""
|
||||
Exit Function
|
||||
End If
|
||||
Dim InitialVectorBytes As Byte() = Encoding.ASCII.GetBytes(InitialVector)
|
||||
Dim SaltValueBytes As Byte() = Encoding.ASCII.GetBytes(salt)
|
||||
Dim PlainTextBytes As Byte() = Encoding.UTF8.GetBytes(PlainText)
|
||||
Dim DerivedPassword As PasswordDeriveBytes = New PasswordDeriveBytes(Password, SaltValueBytes, HashAlgorithm, PasswordIterations)
|
||||
Dim KeyBytes As Byte() = DerivedPassword.GetBytes(KeySize / 8)
|
||||
Dim SymmetricKey As RijndaelManaged = New RijndaelManaged() With {.Mode = CipherMode.CBC}
|
||||
|
||||
Dim CipherTextBytes As Byte() = Nothing
|
||||
Using Encryptor As ICryptoTransform = SymmetricKey.CreateEncryptor(KeyBytes, InitialVectorBytes)
|
||||
Using MemStream As New MemoryStream()
|
||||
Using CryptoStream As New CryptoStream(MemStream, Encryptor, CryptoStreamMode.Write)
|
||||
CryptoStream.Write(PlainTextBytes, 0, PlainTextBytes.Length)
|
||||
CryptoStream.FlushFinalBlock()
|
||||
CipherTextBytes = MemStream.ToArray()
|
||||
MemStream.Close()
|
||||
CryptoStream.Close()
|
||||
End Using
|
||||
End Using
|
||||
End Using
|
||||
SymmetricKey.Clear()
|
||||
Return Convert.ToBase64String(CipherTextBytes)
|
||||
End Function
|
||||
Public Function AESDecrypt(ByVal CipherText As String, ByVal password As String, ByVal salt As String) As String
|
||||
|
||||
On Error Resume Next
|
||||
|
||||
Const HashAlgorithm As String = "SHA1"
|
||||
Const PasswordIterations As Integer = 2
|
||||
Const InitialVector As String = "CanEncryption123"
|
||||
Const KeySize As Integer = 256
|
||||
|
||||
If (String.IsNullOrEmpty(CipherText)) Then
|
||||
Return ""
|
||||
End If
|
||||
Dim InitialVectorBytes As Byte() = Encoding.ASCII.GetBytes(InitialVector)
|
||||
Dim SaltValueBytes As Byte() = Encoding.ASCII.GetBytes(salt)
|
||||
Dim CipherTextBytes As Byte() = Convert.FromBase64String(CipherText)
|
||||
Dim DerivedPassword As PasswordDeriveBytes = New PasswordDeriveBytes(password, SaltValueBytes, HashAlgorithm, PasswordIterations)
|
||||
Dim KeyBytes As Byte() = DerivedPassword.GetBytes(KeySize / 8)
|
||||
Dim SymmetricKey As RijndaelManaged = New RijndaelManaged() With {.Mode = CipherMode.CBC}
|
||||
Dim PlainTextBytes As Byte() = New Byte(CipherTextBytes.Length - 1) {}
|
||||
|
||||
Dim ByteCount As Integer = 0
|
||||
|
||||
Using Decryptor As ICryptoTransform = SymmetricKey.CreateDecryptor(KeyBytes, InitialVectorBytes)
|
||||
Using MemStream As MemoryStream = New MemoryStream(CipherTextBytes)
|
||||
Using CryptoStream As CryptoStream = New CryptoStream(MemStream, Decryptor, CryptoStreamMode.Read)
|
||||
ByteCount = CryptoStream.Read(PlainTextBytes, 0, PlainTextBytes.Length)
|
||||
MemStream.Close()
|
||||
CryptoStream.Close()
|
||||
End Using
|
||||
End Using
|
||||
End Using
|
||||
SymmetricKey.Clear()
|
||||
Return Encoding.UTF8.GetString(PlainTextBytes, 0, ByteCount)
|
||||
End Function
|
||||
End Module
|
||||
Public Class Encryption
|
||||
Inherits ValueConverter
|
||||
Public Overrides Function ConvertToStorageType(ByVal value As Object) As Object
|
||||
If value IsNot Nothing Then
|
||||
Return AESEncrypt(value.ToString, "HrX12!!0Zm7764W2", "vXm657YS+!0@mmT")
|
||||
Else
|
||||
Return Nothing
|
||||
End If
|
||||
End Function
|
||||
Public Overrides Function ConvertFromStorageType(ByVal value As Object) As Object
|
||||
If value Is Nothing Then
|
||||
Return Nothing
|
||||
Else
|
||||
Return AESDecrypt(value.ToString, "HrX12!!0Zm7764W2", "vXm657YS+!0@mmT")
|
||||
End If
|
||||
End Function
|
||||
Public Overrides ReadOnly Property StorageType() As Type
|
||||
Get
|
||||
Return GetType(String)
|
||||
End Get
|
||||
End Property
|
||||
End Class
|
||||
@@ -0,0 +1,528 @@
|
||||
Imports System
|
||||
Imports System.ComponentModel
|
||||
Imports DevExpress.Xpo
|
||||
Imports DevExpress.Data.Filtering
|
||||
|
||||
Imports DevExpress.ExpressApp
|
||||
Imports DevExpress.Persistent.Base
|
||||
Imports DevExpress.Persistent.BaseImpl
|
||||
Imports DevExpress.Persistent.Validation
|
||||
Imports DevExpress.Persistent.Base.General
|
||||
Imports System.Data.SqlClient
|
||||
Imports System.Configuration
|
||||
Imports System.Linq
|
||||
Imports System.Linq.Expressions
|
||||
|
||||
Public Module GLFunctions
|
||||
Public Sub ReconfigurePCI(_uow As UnitOfWork, _CustomersFrom As CustomersFrom, _Customers As Customers, _PartnerType As ePartnerType, _ConnectInfo As String)
|
||||
Dim _PCIDetail As PCIDetail = Nothing
|
||||
Dim _PCIDetail1 As PCIDetail = Nothing
|
||||
Dim _PCIGroup As PCIGroup = Nothing
|
||||
Dim _GLAccounts As GLAccounts = Nothing
|
||||
Dim _GLRows As GLRows = Nothing
|
||||
Dim _InvoiceHeader As InvoiceHeader = Nothing
|
||||
Dim _RegistryHeader As RegistryHeader = Nothing
|
||||
Dim _DateExecution_Account As Date
|
||||
Dim _DatePayment_Account As Date
|
||||
Dim _CurrencyName_Account As CurrencyName = Nothing
|
||||
Dim _PCIDetail_Collection As XPCollection(Of PCIDetail)
|
||||
|
||||
If _Customers Is Nothing Then Exit Sub
|
||||
If _CustomersFrom Is Nothing Then Exit Sub
|
||||
If _PartnerType = ePartnerType.eNotSet Then Exit Sub
|
||||
If _ConnectInfo Is Nothing Then _ConnectInfo = ""
|
||||
Try
|
||||
' HIBAJAVÍTÁS MIATT
|
||||
Dim _GLAccount_Collection_X As New XPCollection(Of GLAccounts)(_uow, CriteriaOperator.Parse("IsNull(ConnectInfo)=True or ConnectInfo=''"))
|
||||
For Each _GLAccounts In _GLAccount_Collection_X
|
||||
Select Case GLOBAL_SQLType
|
||||
Case eSQLType.PostgreSQL
|
||||
_uow.ExecuteNonQuery("update ""GLAccounts"" set ""ConnectInfo""='" & _GLAccounts.DocumentNumber & "' Where ""Oid""='" & _GLAccounts.Oid.ToString & "'")
|
||||
Case eSQLType.MSSQL, eSQLType.MySQL
|
||||
_uow.ExecuteNonQuery("update GLAccounts set ConnectInfo='" & _GLAccounts.DocumentNumber & "' Where Oid='" & _GLAccounts.Oid.ToString & "'")
|
||||
End Select
|
||||
Next
|
||||
_uow.CommitChanges()
|
||||
|
||||
'--- Itt kezdődik -----------------------------------------------------------------------------------------------------------------------------------
|
||||
Dim _PCIGroup_Collection As New XPCollection(Of PCIGroup)(PersistentCriteriaEvaluationBehavior.InTransaction, _
|
||||
_uow, CriteriaOperator.Parse("CustomersFrom.Oid=? and Customers.Oid=? and PartnerType=? and ConnectInfo=?", _
|
||||
_CustomersFrom.Oid, _Customers.Oid, _PartnerType, _ConnectInfo))
|
||||
|
||||
For Each _PCIGroup In _PCIGroup_Collection
|
||||
Select Case GLOBAL_SQLType
|
||||
Case eSQLType.PostgreSQL
|
||||
_uow.ExecuteNonQuery("update ""InvoiceHeader"" set ""PCIGroup""=Null Where ""PCIGroup""='" & _PCIGroup.Oid.ToString & "'")
|
||||
_uow.ExecuteNonQuery("update ""PCIGroupAging"" set ""PCIGroup""=Null Where ""PCIGroup""='" & _PCIGroup.Oid.ToString & "'")
|
||||
_uow.CommitChanges()
|
||||
Case Else
|
||||
_uow.ExecuteNonQuery("update InvoiceHeader set PCIGroup=Null Where PCIGroup='" & _PCIGroup.Oid.ToString & "'")
|
||||
_uow.ExecuteNonQuery("update PCIGroupAging set PCIGroup=Null Where PCIGroup='" & _PCIGroup.Oid.ToString & "'")
|
||||
_uow.CommitChanges()
|
||||
End Select
|
||||
Next
|
||||
|
||||
Dim _SQL As String = ""
|
||||
Select Case GLOBAL_SQLType
|
||||
Case eSQLType.PostgreSQL
|
||||
_SQL = "delete from ""PCIDetail"" where ""CustomersFrom""='" & _CustomersFrom.Oid.ToString & "' and"
|
||||
_SQL += " ""Customers""='" & _Customers.Oid.ToString & "' and"
|
||||
_SQL += " ""PartnerType""=" & _PartnerType & " and"
|
||||
_SQL += " ""ConnectInfo""='" & _ConnectInfo & "'"
|
||||
_uow.ExecuteNonQuery(_SQL)
|
||||
|
||||
_SQL = "delete from ""PCIGroup"" where ""CustomersFrom""='" & _CustomersFrom.Oid.ToString & "' and"
|
||||
_SQL += " ""Customers""='" & _Customers.Oid.ToString & "' and"
|
||||
_SQL += " ""PartnerType""=" & _PartnerType & " and"
|
||||
_SQL += " ""ConnectInfo""='" & _ConnectInfo & "'"
|
||||
_uow.ExecuteNonQuery(_SQL)
|
||||
Case Else
|
||||
_SQL = "delete from PCIDetail where CustomersFrom='" & _CustomersFrom.Oid.ToString & "' and"
|
||||
_SQL += " Customers='" & _Customers.Oid.ToString & "' and"
|
||||
_SQL += " PartnerType=" & _PartnerType & " and"
|
||||
_SQL += " ConnectInfo='" & _ConnectInfo & "'"
|
||||
_uow.ExecuteNonQuery(_SQL)
|
||||
|
||||
_SQL = "delete from PCIGroup where CustomersFrom='" & _CustomersFrom.Oid.ToString & "' and"
|
||||
_SQL += " Customers='" & _Customers.Oid.ToString & "' and"
|
||||
_SQL += " PartnerType=" & _PartnerType & " and"
|
||||
_SQL += " ConnectInfo='" & _ConnectInfo & "'"
|
||||
_uow.ExecuteNonQuery(_SQL)
|
||||
End Select
|
||||
_uow.CommitChanges()
|
||||
_PCIGroup = Nothing
|
||||
_PCIDetail = Nothing
|
||||
'I. A lekönyvelt GLAccounts dokumentumok
|
||||
|
||||
Dim _GLAccounts_Collection As New XPCollection(Of GLAccounts)(PersistentCriteriaEvaluationBehavior.InTransaction, _
|
||||
_uow, CriteriaOperator.Parse("IsDeleted=False and CustomersFrom.Oid=? and Customers.Oid=? and PartnerType=? and ConnectInfo=? and IsEditable=False", _
|
||||
_CustomersFrom.Oid, _Customers.Oid, _PartnerType, _ConnectInfo))
|
||||
|
||||
For Each _GLAccounts In _GLAccounts_Collection
|
||||
'If _PCIDetail Is Nothing Then
|
||||
|
||||
_PCIDetail = New PCIDetail(_uow)
|
||||
_PCIDetail.GLAccounts = _GLAccounts
|
||||
_PCIDetail.MainType = "01-Account"
|
||||
_PCIDetail.CustomersFrom = _uow.GetObjectByKey(Of CustomersFrom)(_CustomersFrom.Oid)
|
||||
_PCIDetail.Customers = _uow.GetObjectByKey(Of Customers)(_Customers.Oid)
|
||||
_PCIDetail.PartnerType = _PartnerType
|
||||
_PCIDetail.ConnectInfo = _ConnectInfo
|
||||
_PCIDetail.DocumentNumber = _GLAccounts.DocumentNumber
|
||||
_PCIDetail.CurrencyName = _GLAccounts.CurrencyName
|
||||
_PCIDetail.DateExecution = _GLAccounts.DateExecution
|
||||
_PCIDetail.DateCreated = _GLAccounts.DateCreated
|
||||
_PCIDetail.DateExecution_Account = _GLAccounts.DateExecution
|
||||
_PCIDetail.DatePayment_Account = _GLAccounts.DatePayment
|
||||
If _GLAccounts.PaymentOption Is Nothing Then
|
||||
_PCIDetail.Paymode_Account = ePayMode.InTransfer
|
||||
Else
|
||||
_PCIDetail.Paymode_Account = _GLAccounts.PaymentOption.PayMode
|
||||
End If
|
||||
|
||||
_PCIDetail.CurrencyName_Account = _GLAccounts.CurrencyName
|
||||
_PCIDetail.AmountDEV_Account = _GLAccounts.AmountDEVBrutto
|
||||
_PCIDetail.AmountHUF_Account = _GLAccounts.AmountHUFBrutto
|
||||
_CurrencyName_Account = _GLAccounts.CurrencyName
|
||||
_DateExecution_Account = _GLAccounts.DateExecution
|
||||
_DatePayment_Account = _GLAccounts.DatePayment
|
||||
|
||||
|
||||
|
||||
If _GLAccounts.ImportedRegistryHeader IsNot Nothing Then
|
||||
_PCIDetail.RegistryNumber = _GLAccounts.ImportedRegistryHeader.RegistryNumber
|
||||
Else
|
||||
_PCIDetail.RegistryNumber = _GLAccounts.RegistryNumber
|
||||
End If
|
||||
If _PCIGroup Is Nothing Then
|
||||
_PCIGroup = New PCIGroup(_uow)
|
||||
_PCIGroup.CustomersFrom = _uow.GetObjectByKey(Of CustomersFrom)(_CustomersFrom.Oid)
|
||||
_PCIGroup.Customers = _uow.GetObjectByKey(Of Customers)(_Customers.Oid)
|
||||
_PCIGroup.PartnerType = _PartnerType
|
||||
_PCIGroup.ConnectInfo = _ConnectInfo
|
||||
_PCIGroup.DocumentNumber = _GLAccounts.DocumentNumber
|
||||
_PCIGroup.Description = _GLAccounts.NoteHeader
|
||||
_PCIGroup.GLAccounts = _GLAccounts
|
||||
|
||||
_PCIGroup.CurrencyName = _CurrencyName_Account
|
||||
_PCIGroup.CurrencyName_Account = _CurrencyName_Account
|
||||
_PCIGroup.DateCreated_Account = _GLAccounts.DateCreated
|
||||
_PCIGroup.DateExecution_Account = _DateExecution_Account
|
||||
_PCIGroup.DatePayment_Account = _GLAccounts.DatePayment
|
||||
|
||||
If _GLAccounts.PaymentOption Is Nothing Then
|
||||
_PCIGroup.Paymode_Account = ePayMode.InTransfer
|
||||
Else
|
||||
_PCIGroup.Paymode_Account = _GLAccounts.PaymentOption.PayMode
|
||||
End If
|
||||
|
||||
_PCIGroup.AmountDEV_Account = _GLAccounts.AmountDEVBrutto
|
||||
_PCIGroup.AmountHUF_Account = _GLAccounts.AmountHUFBrutto
|
||||
|
||||
If _GLAccounts.ImportedRegistryHeader IsNot Nothing Then
|
||||
_PCIGroup.RegistryNumber = _GLAccounts.ImportedRegistryHeader.RegistryNumber
|
||||
Else
|
||||
_PCIGroup.RegistryNumber = _GLAccounts.RegistryNumber
|
||||
End If
|
||||
|
||||
If _GLAccounts.PartnerType = ePartnerType.ePayabels Then
|
||||
_PCIGroup.RegistryHeader = _GLAccounts.ImportedRegistryHeader
|
||||
Else
|
||||
_PCIGroup.InvoiceHeader = _GLAccounts.ImportedInvoice
|
||||
End If
|
||||
|
||||
End If
|
||||
_PCIDetail.PCIGroup = _PCIGroup
|
||||
'End If
|
||||
_PCIDetail.BallanceDEV += _GLAccounts.AmountDEVBrutto
|
||||
_PCIDetail.BallanceHUF += _GLAccounts.AmountHUFBrutto
|
||||
_PCIGroup.BallanceDEV += _GLAccounts.AmountDEVBrutto
|
||||
_PCIGroup.BallanceHUF += _GLAccounts.AmountHUFBrutto
|
||||
|
||||
If _GLAccounts.ImportedInvoice IsNot Nothing Then
|
||||
_GLAccounts.ImportedInvoice.PCIGroup = _PCIGroup
|
||||
End If
|
||||
Next
|
||||
_uow.CommitChanges()
|
||||
_PCIDetail = Nothing
|
||||
'II. A kimenő számla, ami nincs feladva !
|
||||
If _PartnerType = ePartnerType.eReceivables Then
|
||||
Dim _InvoiceHeader_Collection As New XPCollection(Of InvoiceHeader)(PersistentCriteriaEvaluationBehavior.InTransaction, _
|
||||
_uow, CriteriaOperator.Parse("IsDeleted=False and isnull(DocumentNumber)=False and CustomersFrom.Oid=? and Customers.Oid=? and ConnectInfo=? and IsEditable=False and isnull(GLAccounts)=True", _
|
||||
_CustomersFrom.Oid, _Customers.Oid, _ConnectInfo))
|
||||
|
||||
For Each _InvoiceHeader In _InvoiceHeader_Collection
|
||||
'If _PCIDetail Is Nothing Then
|
||||
_PCIDetail = New PCIDetail(_uow)
|
||||
_PCIDetail.InvoiceHeader = _InvoiceHeader
|
||||
_PCIDetail.MainType = "01-Account"
|
||||
_PCIDetail.CustomersFrom = _uow.GetObjectByKey(Of CustomersFrom)(_CustomersFrom.Oid)
|
||||
_PCIDetail.Customers = _uow.GetObjectByKey(Of Customers)(_Customers.Oid)
|
||||
_PCIDetail.PartnerType = _PartnerType
|
||||
_PCIDetail.ConnectInfo = _ConnectInfo
|
||||
_PCIDetail.DocumentNumber = _InvoiceHeader.DocumentNumber
|
||||
|
||||
_PCIDetail.CurrencyName = _InvoiceHeader.CurrencyName
|
||||
_PCIDetail.DateExecution = _InvoiceHeader.DateExecution
|
||||
_PCIDetail.DateCreated = _InvoiceHeader.DateCreated
|
||||
_PCIDetail.DateExecution_Account = _InvoiceHeader.DateExecution
|
||||
_PCIDetail.DatePayment_Account = _InvoiceHeader.DatePayment
|
||||
_PCIDetail.Paymode_Account = _InvoiceHeader.PaymentOption.PayMode
|
||||
_PCIDetail.CurrencyName_Account = _InvoiceHeader.CurrencyName
|
||||
_PCIDetail.AmountDEV_Account = _InvoiceHeader.TotalBruttoDEV
|
||||
_PCIDetail.AmountHUF_Account = _InvoiceHeader.TotalBruttoHUF
|
||||
_PCIDetail.Description = _InvoiceHeader.DocumentNumber
|
||||
_CurrencyName_Account = _InvoiceHeader.CurrencyName
|
||||
_DateExecution_Account = _InvoiceHeader.DateExecution
|
||||
_DatePayment_Account = _InvoiceHeader.DatePayment
|
||||
If _PCIGroup Is Nothing Then
|
||||
_PCIGroup = New PCIGroup(_uow)
|
||||
_PCIGroup.CustomersFrom = _uow.GetObjectByKey(Of CustomersFrom)(_CustomersFrom.Oid)
|
||||
_PCIGroup.Customers = _uow.GetObjectByKey(Of Customers)(_Customers.Oid)
|
||||
_PCIGroup.PartnerType = _PartnerType
|
||||
_PCIGroup.ConnectInfo = _ConnectInfo
|
||||
_PCIGroup.DocumentNumber = _InvoiceHeader.DocumentNumber
|
||||
_PCIGroup.Description = _InvoiceHeader.Description
|
||||
_PCIGroup.CurrencyName = _CurrencyName_Account
|
||||
_PCIGroup.CurrencyName_Account = _CurrencyName_Account
|
||||
_PCIGroup.DateCreated_Account = _InvoiceHeader.DateCreated
|
||||
_PCIGroup.DateExecution_Account = _DateExecution_Account
|
||||
_PCIGroup.DatePayment_Account = _InvoiceHeader.DatePayment
|
||||
_PCIGroup.Paymode_Account = _InvoiceHeader.PaymentOption.PayMode
|
||||
_PCIGroup.InvoiceHeader = _InvoiceHeader
|
||||
|
||||
_PCIGroup.AmountDEV_Account = _InvoiceHeader.TotalBruttoDEV
|
||||
_PCIGroup.AmountHUF_Account = _InvoiceHeader.TotalBruttoHUF
|
||||
End If
|
||||
_PCIDetail.PCIGroup = _PCIGroup
|
||||
'End If
|
||||
_PCIDetail.BallanceDEV += _InvoiceHeader.TotalBruttoDEV
|
||||
_PCIDetail.BallanceHUF += _InvoiceHeader.TotalBruttoHUF
|
||||
_PCIGroup.BallanceDEV += _InvoiceHeader.TotalBruttoDEV
|
||||
_PCIGroup.BallanceHUF += _InvoiceHeader.TotalBruttoHUF
|
||||
|
||||
_InvoiceHeader.PCIGroup = _PCIGroup
|
||||
Next
|
||||
End If
|
||||
_uow.CommitChanges()
|
||||
_PCIDetail = Nothing
|
||||
'IV. A rögzített számla iktatás, ami nincs feladva !
|
||||
If _PartnerType = ePartnerType.ePayabels Then
|
||||
Dim _RegistryHeader_Collection As New XPCollection(Of RegistryHeader)(PersistentCriteriaEvaluationBehavior.InTransaction, _
|
||||
_uow, CriteriaOperator.Parse("IsStorno=False and IsDeleted=False and RegistryAcceptState=0 and RegistryType.RegistryMainType in (0,2,4) and CustomersFrom.Oid=? and Customers.Oid=? and F_ConnectInfo=? and IsEditable=False and isnull(F_GLAccounts)=True", _
|
||||
_CustomersFrom.Oid, _Customers.Oid, _ConnectInfo))
|
||||
|
||||
For Each _RegistryHeader In _RegistryHeader_Collection
|
||||
'If _PCIDetail Is Nothing Then
|
||||
_PCIDetail = New PCIDetail(_uow)
|
||||
_PCIDetail.RegistryHeader = _RegistryHeader
|
||||
_PCIDetail.MainType = "01-Account"
|
||||
_PCIDetail.CustomersFrom = _uow.GetObjectByKey(Of CustomersFrom)(_CustomersFrom.Oid)
|
||||
_PCIDetail.Customers = _uow.GetObjectByKey(Of Customers)(_Customers.Oid)
|
||||
_PCIDetail.PartnerType = _PartnerType
|
||||
_PCIDetail.ConnectInfo = _ConnectInfo
|
||||
_PCIDetail.DocumentNumber = _RegistryHeader.DocumentNumber
|
||||
_PCIDetail.CurrencyName = _RegistryHeader.F_CurrencyName
|
||||
_PCIDetail.DateExecution = _RegistryHeader.F_DateExecution
|
||||
_PCIDetail.DateCreated = _RegistryHeader.DateCreated
|
||||
_PCIDetail.DatePayment_Account = _RegistryHeader.F_DatePayment
|
||||
_PCIDetail.Paymode_Account = _RegistryHeader.F_PayMode
|
||||
_PCIDetail.DateExecution_Account = _RegistryHeader.F_DateExecution
|
||||
_PCIDetail.CurrencyName_Account = _RegistryHeader.F_CurrencyName
|
||||
_PCIDetail.AmountDEV_Account = _RegistryHeader.F_AmountBruttoDEV
|
||||
_PCIDetail.AmountHUF_Account = _RegistryHeader.F_AmountBruttoHUF
|
||||
_CurrencyName_Account = _RegistryHeader.F_CurrencyName
|
||||
_DateExecution_Account = _RegistryHeader.F_DateExecution
|
||||
_DatePayment_Account = _RegistryHeader.F_DatePayment
|
||||
_PCIDetail.RegistryNumber = _RegistryHeader.RegistryNumber
|
||||
If _PCIGroup Is Nothing Then
|
||||
_PCIGroup = New PCIGroup(_uow)
|
||||
_PCIGroup.CustomersFrom = _uow.GetObjectByKey(Of CustomersFrom)(_CustomersFrom.Oid)
|
||||
_PCIGroup.Customers = _uow.GetObjectByKey(Of Customers)(_Customers.Oid)
|
||||
_PCIGroup.PartnerType = _PartnerType
|
||||
_PCIGroup.ConnectInfo = _ConnectInfo
|
||||
_PCIGroup.DocumentNumber = _RegistryHeader.DocumentNumber
|
||||
_PCIGroup.Description = _RegistryHeader.ShortName
|
||||
_PCIGroup.RegistryHeader = _RegistryHeader
|
||||
|
||||
_PCIGroup.CurrencyName = _CurrencyName_Account
|
||||
_PCIGroup.CurrencyName_Account = _CurrencyName_Account
|
||||
_PCIGroup.DateCreated_Account = _RegistryHeader.F_DateCreated
|
||||
_PCIGroup.DateExecution_Account = _DateExecution_Account
|
||||
_PCIGroup.DatePayment_Account = _RegistryHeader.F_DatePayment
|
||||
_PCIGroup.Paymode_Account = _RegistryHeader.F_PayMode
|
||||
_PCIGroup.AmountDEV_Account = _RegistryHeader.F_AmountBruttoDEV
|
||||
_PCIGroup.AmountHUF_Account = _RegistryHeader.F_AmountBruttoHUF
|
||||
|
||||
_PCIGroup.RegistryNumber = _RegistryHeader.RegistryNumber
|
||||
End If
|
||||
_PCIDetail.PCIGroup = _PCIGroup
|
||||
'End If
|
||||
_PCIDetail.BallanceDEV += _RegistryHeader.F_AmountBruttoDEV
|
||||
_PCIDetail.BallanceHUF += _RegistryHeader.F_AmountBruttoHUF
|
||||
_PCIGroup.BallanceDEV += _RegistryHeader.F_AmountBruttoDEV
|
||||
_PCIGroup.BallanceHUF += _RegistryHeader.F_AmountBruttoHUF
|
||||
Next
|
||||
End If
|
||||
_uow.CommitChanges()
|
||||
_PCIDetail = Nothing
|
||||
|
||||
'II A pénzügyi teljesítések (soronként !)
|
||||
Dim _GLRows_Collection As New XPCollection(Of GLRows)(PersistentCriteriaEvaluationBehavior.InTransaction, _
|
||||
_uow, CriteriaOperator.Parse("GLHeader.IsDeleted=False and GLHeader.CustomersFrom.Oid=? and Customer.Oid=? and PartnerType=? and ConnectInfo=? and GLHeader.GLDocumentType in (0,2,3,4,5)", _
|
||||
_CustomersFrom.Oid, _Customers.Oid, _PartnerType, _ConnectInfo))
|
||||
|
||||
For Each _GLRows In _GLRows_Collection
|
||||
If _GLRows.GLHeader.GLDocumentType = eGLDocumentType.eGLMixed And _GLRows.GLRowsType <> eGLRowsType.eNormal Then
|
||||
|
||||
Else
|
||||
_PCIDetail = New PCIDetail(_uow)
|
||||
_PCIDetail.GLRows = _GLRows
|
||||
If _PCIGroup Is Nothing Then
|
||||
_PCIGroup = New PCIGroup(_uow)
|
||||
_PCIGroup.CustomersFrom = _uow.GetObjectByKey(Of CustomersFrom)(_CustomersFrom.Oid)
|
||||
_PCIGroup.Customers = _uow.GetObjectByKey(Of Customers)(_Customers.Oid)
|
||||
_PCIGroup.PartnerType = _PartnerType
|
||||
_PCIGroup.ConnectInfo = _ConnectInfo
|
||||
|
||||
|
||||
_PCIGroup.CurrencyName = _GLRows.GLHeader.CurrencyName
|
||||
_PCIGroup.DateCreated_Account = Nothing
|
||||
_PCIGroup.CurrencyName_Account = Nothing
|
||||
_PCIGroup.DateExecution_Account = Nothing
|
||||
_PCIGroup.DatePayment_Account = Nothing
|
||||
_PCIGroup.Paymode_Account = ePayMode.NotSet
|
||||
_PCIGroup.AmountDEV_Account = 0
|
||||
_PCIGroup.AmountHUF_Account = 0
|
||||
End If
|
||||
_PCIDetail.PCIGroup = _PCIGroup
|
||||
Select Case _GLRows.GLHeader.GLDocumentType
|
||||
Case eGLDocumentType.eGLMixed
|
||||
_PCIDetail.MainType = "06-Mixed"
|
||||
Case eGLDocumentType.eGLBank
|
||||
_PCIDetail.MainType = "02-Bank"
|
||||
Case eGLDocumentType.eGLCassa
|
||||
_PCIDetail.MainType = "03-Cassa"
|
||||
Case eGLDocumentType.eGLCompensation
|
||||
_PCIDetail.MainType = "04-Compensation"
|
||||
Case eGLDocumentType.eGLRateDiff
|
||||
_PCIDetail.MainType = "05-Ratediff"
|
||||
Case eGLDocumentType.eLateCharge
|
||||
_PCIDetail.MainType = "06-Latecharge"
|
||||
End Select
|
||||
|
||||
_PCIDetail.CustomersFrom = _uow.GetObjectByKey(Of CustomersFrom)(_CustomersFrom.Oid)
|
||||
_PCIDetail.Customers = _uow.GetObjectByKey(Of Customers)(_Customers.Oid)
|
||||
_PCIDetail.PartnerType = _PartnerType
|
||||
_PCIDetail.ConnectInfo = _ConnectInfo
|
||||
_PCIDetail.DocumentNumber = _GLRows.GLHeader.DocumentNumber
|
||||
_PCIDetail.CurrencyName = _GLRows.GLHeader.CurrencyName
|
||||
_PCIDetail.DateExecution = _GLRows.GLHeader.DateExecution
|
||||
_PCIDetail.DateCreated = _GLRows.GLHeader.DateCreated
|
||||
_PCIDetail.AmountDEV_Account = 0
|
||||
_PCIDetail.AmountHUF_Account = 0
|
||||
|
||||
If _GLRows.LiquidAssets IsNot Nothing Then
|
||||
_PCIDetail.Description = _GLRows.LiquidAssets.ShortName & ", " & _GLRows.GLHeader.DocumentNumber
|
||||
Else
|
||||
_PCIDetail.Description = "<NINCS>, " & _GLRows.GLHeader.DocumentNumber
|
||||
End If
|
||||
|
||||
If _CurrencyName_Account IsNot Nothing Then
|
||||
_PCIDetail.DateExecution_Account = _DateExecution_Account
|
||||
_PCIDetail.CurrencyName_Account = _CurrencyName_Account
|
||||
_PCIDetail.DatePayment_Account = _DatePayment_Account
|
||||
Select Case _PartnerType
|
||||
Case ePartnerType.ePayabels
|
||||
If _GLRows.InAmountHUF <> 0 Then _PCIDetail.BallanceHUF = _GLRows.InAmountHUF
|
||||
If _GLRows.OutAmountHUF <> 0 Then _PCIDetail.BallanceHUF = _GLRows.OutAmountHUF * -1
|
||||
|
||||
If _GLRows.InAmountDEV <> 0 And _GLRows.GLHeader.CurrencyName Is _CurrencyName_Account Then _PCIDetail.BallanceDEV = _GLRows.InAmountDEV
|
||||
If _GLRows.OutAmountDEV <> 0 And _GLRows.GLHeader.CurrencyName Is _CurrencyName_Account Then _PCIDetail.BallanceDEV = _GLRows.OutAmountDEV * -1
|
||||
If _GLRows.InAmountDEV2 <> 0 And _GLRows.GLHeader.CurrencyName IsNot _CurrencyName_Account And _CurrencyName_Account.ShortName <> "HUF" Then _PCIDetail.BallanceDEV = _GLRows.InAmountDEV2
|
||||
If _GLRows.OutAmountDEV2 <> 0 And _GLRows.GLHeader.CurrencyName IsNot _CurrencyName_Account And _CurrencyName_Account.ShortName <> "HUF" Then _PCIDetail.BallanceDEV = _GLRows.OutAmountDEV2 * -1
|
||||
|
||||
Case ePartnerType.eReceivables
|
||||
If _GLRows.InAmountHUF <> 0 Then _PCIDetail.BallanceHUF = _GLRows.InAmountHUF * -1
|
||||
If _GLRows.OutAmountHUF <> 0 Then _PCIDetail.BallanceHUF = _GLRows.OutAmountHUF
|
||||
|
||||
If _GLRows.InAmountDEV <> 0 And _GLRows.GLHeader.CurrencyName Is _CurrencyName_Account Then _PCIDetail.BallanceDEV = _GLRows.InAmountDEV * -1
|
||||
If _GLRows.OutAmountDEV <> 0 And _GLRows.GLHeader.CurrencyName Is _CurrencyName_Account Then _PCIDetail.BallanceDEV = _GLRows.OutAmountDEV
|
||||
If _GLRows.InAmountDEV2 <> 0 And _GLRows.GLHeader.CurrencyName IsNot _CurrencyName_Account And _CurrencyName_Account.ShortName <> "HUF" Then _PCIDetail.BallanceDEV = _GLRows.InAmountDEV2 * -1
|
||||
If _GLRows.OutAmountDEV2 <> 0 And _GLRows.GLHeader.CurrencyName IsNot _CurrencyName_Account And _CurrencyName_Account.ShortName <> "HUF" Then _PCIDetail.BallanceDEV = _GLRows.OutAmountDEV2
|
||||
End Select
|
||||
Else
|
||||
_PCIDetail.DateExecution_Account = Nothing
|
||||
_PCIDetail.CurrencyName_Account = Nothing
|
||||
Select Case _PartnerType
|
||||
Case ePartnerType.ePayabels
|
||||
If _GLRows.InAmountHUF <> 0 Then _PCIDetail.BallanceHUF = _GLRows.InAmountHUF
|
||||
If _GLRows.OutAmountHUF <> 0 Then _PCIDetail.BallanceHUF = _GLRows.OutAmountHUF * -1
|
||||
If _GLRows.InAmountDEV <> 0 Then _PCIDetail.BallanceDEV = _GLRows.InAmountDEV
|
||||
If _GLRows.OutAmountDEV <> 0 Then _PCIDetail.BallanceDEV = _GLRows.OutAmountDEV * -1
|
||||
Case ePartnerType.eReceivables
|
||||
If _GLRows.InAmountHUF <> 0 Then _PCIDetail.BallanceHUF = _GLRows.InAmountHUF * -1
|
||||
If _GLRows.OutAmountHUF <> 0 Then _PCIDetail.BallanceHUF = _GLRows.OutAmountHUF
|
||||
If _GLRows.InAmountDEV <> 0 Then _PCIDetail.BallanceDEV = _GLRows.InAmountDEV * -1
|
||||
If _GLRows.OutAmountDEV <> 0 Then _PCIDetail.BallanceDEV = _GLRows.OutAmountDEV
|
||||
End Select
|
||||
End If
|
||||
_PCIGroup.BallanceDEV += _PCIDetail.BallanceDEV
|
||||
_PCIGroup.BallanceHUF += _PCIDetail.BallanceHUF
|
||||
End If
|
||||
Next
|
||||
_uow.CommitChanges()
|
||||
If _PCIGroup IsNot Nothing Then
|
||||
|
||||
|
||||
_PCIDetail_Collection = New XPCollection(Of PCIDetail)(_uow, CriteriaOperator.Parse("PCIGroup.Oid=?", _PCIGroup.Oid))
|
||||
_PCIDetail_Collection.Sorting.Add(New SortProperty("DateExecution", DB.SortingDirection.Descending))
|
||||
Dim _IsDateLastConnected As Boolean = False
|
||||
For Each _PCIDetail In _PCIDetail_Collection
|
||||
_PCIDetail.BallanceRateDiff = _PCIGroup.BallanceRateDiff
|
||||
_PCIDetail.BallanceState = _PCIGroup.BallanceState
|
||||
_PCIDetail.Save()
|
||||
_uow.CommitChanges()
|
||||
If _IsDateLastConnected = False Then
|
||||
Select Case _PCIDetail.MainType
|
||||
Case "02-Bank", "03-Cassa", "04-Compensation"
|
||||
_PCIDetail.PCIGroup.DateLastConnected = _PCIDetail.DateExecution
|
||||
_IsDateLastConnected = True
|
||||
_uow.CommitChanges()
|
||||
End Select
|
||||
End If
|
||||
Next
|
||||
|
||||
|
||||
If _PCIGroup.InvoiceHeader IsNot Nothing Then
|
||||
If _PCIGroup.InvoiceHeader.InvoiceHold IsNot Nothing Then
|
||||
If _PCIGroup.InvoiceHeader.InvoiceHold.Count > 0 Then
|
||||
If _PCIGroup.CurrencyName_Account.ShortName = "HUF" Then
|
||||
Dim _InvoiceHold As InvoiceHold
|
||||
Dim _AmountHUF As Double = _PCIGroup.AmountHUF_Account - _PCIGroup.BallanceHUF
|
||||
If _AmountHUF > 0 Then
|
||||
_PCIGroup.InvoiceHeader.InvoiceHold.Sorting.Add(New SortProperty("DatePayment", DB.SortingDirection.Ascending))
|
||||
For Each _InvoiceHold In _InvoiceHeader.InvoiceHold
|
||||
_InvoiceHold.BallanceHUF = 0
|
||||
Next
|
||||
For Each _InvoiceHold In _InvoiceHeader.InvoiceHold
|
||||
If _AmountHUF <= _InvoiceHold.AmountHUF Then
|
||||
_InvoiceHold.BallanceHUF = _AmountHUF
|
||||
Exit For
|
||||
Else
|
||||
_InvoiceHold.BallanceHUF = _InvoiceHold.AmountHUF
|
||||
_AmountHUF -= _InvoiceHold.AmountHUF
|
||||
End If
|
||||
Next
|
||||
For Each _InvoiceHold In _InvoiceHeader.InvoiceHold
|
||||
_InvoiceHold.BallanceHUF = _InvoiceHold.AmountHUF - _InvoiceHold.BallanceHUF
|
||||
Next
|
||||
End If
|
||||
Else
|
||||
|
||||
End If
|
||||
End If
|
||||
End If
|
||||
End If
|
||||
_uow.CommitChanges()
|
||||
If _PCIGroup.RegistryHeader IsNot Nothing Then
|
||||
If _PCIGroup.RegistryHeader.RegistryBankTransfer IsNot Nothing Then
|
||||
If _PCIGroup.RegistryHeader.RegistryBankTransfer.Count > 0 Then
|
||||
If _PCIGroup.CurrencyName_Account.ShortName = "HUF" Then
|
||||
Dim _RegistryBankTransfer As RegistryBankTransfer
|
||||
Dim _AmountHUF As Double = _PCIGroup.AmountHUF_Account - _PCIGroup.BallanceHUF
|
||||
If _AmountHUF > 0 Then
|
||||
_PCIGroup.RegistryHeader.RegistryBankTransfer.Sorting.Add(New SortProperty("DatePayment", DB.SortingDirection.Ascending))
|
||||
For Each _RegistryBankTransfer In _PCIGroup.RegistryHeader.RegistryBankTransfer
|
||||
_RegistryBankTransfer.BallanceHUF = 0
|
||||
Next
|
||||
For Each _RegistryBankTransfer In _PCIGroup.RegistryHeader.RegistryBankTransfer
|
||||
If _AmountHUF <= _RegistryBankTransfer.AmountHUF Then
|
||||
_RegistryBankTransfer.BallanceHUF = _AmountHUF
|
||||
Exit For
|
||||
Else
|
||||
_RegistryBankTransfer.BallanceHUF = _RegistryBankTransfer.AmountHUF
|
||||
_AmountHUF -= _RegistryBankTransfer.AmountHUF
|
||||
End If
|
||||
Next
|
||||
For Each _RegistryBankTransfer In _PCIGroup.RegistryHeader.RegistryBankTransfer
|
||||
_RegistryBankTransfer.BallanceHUF = _RegistryBankTransfer.AmountHUF - _RegistryBankTransfer.BallanceHUF
|
||||
Next
|
||||
End If
|
||||
Else
|
||||
|
||||
End If
|
||||
End If
|
||||
End If
|
||||
End If
|
||||
_uow.CommitChanges()
|
||||
End If
|
||||
_uow.CommitChanges()
|
||||
Catch exp As Exception
|
||||
|
||||
Dim _uow_exception As New UnitOfWork(_uow.DataLayer)
|
||||
Dim _ErrorLog As ErrorLog = New ErrorLog(_uow_exception)
|
||||
_ErrorLog.Description = exp.Message.ToString
|
||||
_ErrorLog.Description += Chr(13) + Chr(10) + _ConnectInfo
|
||||
_ErrorLog.Save()
|
||||
_uow_exception.CommitChanges()
|
||||
|
||||
Finally
|
||||
|
||||
End Try
|
||||
End Sub
|
||||
Public Sub CorrectPCI(ByVal _uow As UnitOfWork, ByVal _Object As Object)
|
||||
Dim _AuditDataItemPersistent_Collection As XPCollection(Of AuditDataItemPersistent)
|
||||
Dim _AuditDataItemPersistent As AuditDataItemPersistent
|
||||
|
||||
If TryCast(_Object, RegistryHeader) IsNot Nothing Then
|
||||
_AuditDataItemPersistent_Collection = AuditedObjectWeakReference.GetAuditTrail(_uow, _Object)
|
||||
For Each _AuditDataItemPersistent In _AuditDataItemPersistent_Collection
|
||||
If _AuditDataItemPersistent.PropertyName = "DocumentNumber" Then
|
||||
|
||||
End If
|
||||
Next
|
||||
End If
|
||||
End Sub
|
||||
|
||||
End Module
|
||||
@@ -0,0 +1,481 @@
|
||||
Imports System
|
||||
Imports DevExpress.Xpo
|
||||
Imports DevExpress.Xpo.DB
|
||||
Imports DevExpress.Data.Filtering
|
||||
Imports DevExpress.ExpressApp
|
||||
Imports System.Linq
|
||||
Imports System.Linq.Expressions
|
||||
Imports System.IO
|
||||
|
||||
Public Module GeneralFunction
|
||||
'-- Globális változó !
|
||||
Public GLOBAL_CustomersFrom_Oid As String
|
||||
Public GLOBAL_ConnectionString As String
|
||||
Public GLOBAL_WINFormCaption As String
|
||||
Public GLOBAL_WEBFormCaption As String
|
||||
Public GLOBAL_RegistryTask_Current_Oid As Guid
|
||||
Public GLOBAL_CustomersFrom_String As String = ""
|
||||
Public GLOBAL_PreviewName As String = ""
|
||||
Public GLOBAL_PrevievFilter As String = ""
|
||||
Public GLOBAL_ApplicationStartupPath As String = ""
|
||||
Public GLOBAL_ApplicationStartupPath_Mail As String = ""
|
||||
Public GLOBAL_SQLType As eSQLType
|
||||
Public GLOBAL_HAS_EXPLICIT_TRANSACTION As Boolean = False
|
||||
Public GLOBAL_EUMemberStates As String() = {"AT", "BE", "BG", "CY", "CZ", "DK", "UK", "EE", "FI", "FR", "GR", "GB", "NL",
|
||||
"IE", "PL", "LV", "LT", "LU", "HU", "MT", "DE", "IT", "PT", "RO", "ES", "SE", "SK", "SI"}
|
||||
|
||||
Public GLOBAL_HAS_Audit As Boolean = True
|
||||
Public GLOBAL_MainModuleVersion As String = ""
|
||||
|
||||
'winApplication_LastLogonParametersWriting'
|
||||
Public GLOBAL_SQLServer As String = ""
|
||||
Public GLOBAL_SQLUser As String = ""
|
||||
Public GLOBAL_SQLDatabase As String = ""
|
||||
Public GLOBAL_SQLPassword As String = ""
|
||||
Public GLOBAL_Company As String = ""
|
||||
Public GLOBAL_Plattform As String = ""
|
||||
Public GLOBAL_Company_Info As String = ""
|
||||
Public GLOBAL_ActivityID As String = ""
|
||||
|
||||
Public GLOBAL_Download_MemoryStream As MemoryStream
|
||||
Public GLOBAL_Download_FileName As String
|
||||
Public GLOBAL_Download_FileExtension As String
|
||||
|
||||
'Dashboard
|
||||
Public GLOBAL_DASHBOARD_XML_DashboardXmlFile As String = ""
|
||||
Public GLOBAL_DASHBOARD_XML_ServerName As String = ""
|
||||
Public GLOBAL_DASHBOARD_XML_UserName As String = ""
|
||||
Public GLOBAL_DASHBOARD_XML_DatabaseName As String = ""
|
||||
Public GLOBAL_DASHBOARD_XML_Password As String = ""
|
||||
Public GLOBAL_DASHBOARD_XML_SQLType As String = ""
|
||||
|
||||
Public GLOBAL_ListViewReset As Boolean = False
|
||||
|
||||
Enum eDirection
|
||||
Left = 0
|
||||
Right = 1
|
||||
End Enum
|
||||
|
||||
Public Function GetConnectionGLOBAL() As String
|
||||
Dim connstr As String = ""
|
||||
Select Case UCase(GLOBAL_Company)
|
||||
Case "FR (MICROSERVER2008)"
|
||||
GLOBAL_SQLUser = "root"
|
||||
GLOBAL_SQLPassword = "pcl718"
|
||||
GLOBAL_SQLType = eSQLType.MySQL
|
||||
GLOBAL_SQLServer = "MICROSERVER2008"
|
||||
GLOBAL_SQLDatabase = "frinput"
|
||||
GLOBAL_Company_Info = "Franciska Kft : MICROSERVER2008, FRINPUT"
|
||||
GLOBAL_Plattform = "MySQL"
|
||||
connstr = DevExpress.Xpo.DB.MySqlConnectionProvider.GetConnectionString(GLOBAL_SQLServer, GLOBAL_SQLUser, GLOBAL_SQLPassword, GLOBAL_SQLDatabase)
|
||||
Case "MC LOCAL", "MC (LOCAL)"
|
||||
GLOBAL_SQLUser = "sa"
|
||||
GLOBAL_SQLPassword = "pcl718"
|
||||
GLOBAL_SQLType = eSQLType.MSSQL
|
||||
GLOBAL_SQLServer = "SISI5SSD2\SQLExpress"
|
||||
GLOBAL_SQLDatabase = "MC"
|
||||
GLOBAL_Company_Info = "Mol-Control Kft. TESZT adatbázis : SISI5SSD2\SQLExpress, MC"
|
||||
GLOBAL_Plattform = "MS SQL"
|
||||
connstr = DevExpress.Xpo.DB.MSSqlConnectionProvider.GetConnectionString(GLOBAL_SQLServer, GLOBAL_SQLUser, GLOBAL_SQLPassword, GLOBAL_SQLDatabase)
|
||||
Case "MC OFFICE TEST"
|
||||
GLOBAL_SQLUser = "sa"
|
||||
GLOBAL_SQLPassword = "pcl718"
|
||||
GLOBAL_SQLType = eSQLType.MSSQL
|
||||
GLOBAL_SQLServer = "192.168.6.9"
|
||||
GLOBAL_SQLDatabase = "Nuvolar_TEST"
|
||||
GLOBAL_Company_Info = "Mol-Control Kft. TESZT adatbázis : 192.168.6.9, Nuvolar_TEST"
|
||||
GLOBAL_Plattform = "MS SQL"
|
||||
connstr = DevExpress.Xpo.DB.MSSqlConnectionProvider.GetConnectionString(GLOBAL_SQLServer, GLOBAL_SQLUser, GLOBAL_SQLPassword, GLOBAL_SQLDatabase)
|
||||
Case "MC REMOTE", "MC (REMOTE)", "MC"
|
||||
GLOBAL_SQLUser = "sa"
|
||||
GLOBAL_SQLPassword = "pcl718"
|
||||
GLOBAL_SQLType = eSQLType.MSSQL
|
||||
GLOBAL_SQLServer = "78.131.7.14"
|
||||
GLOBAL_SQLDatabase = "Nuvolar"
|
||||
GLOBAL_Company_Info = "Mol-Control Kft. adatbázis : 78.131.7.14, MC"
|
||||
GLOBAL_Plattform = "MS SQL"
|
||||
connstr = DevExpress.Xpo.DB.MSSqlConnectionProvider.GetConnectionString(GLOBAL_SQLServer, GLOBAL_SQLUser, GLOBAL_SQLPassword, GLOBAL_SQLDatabase)
|
||||
Case "SISTEST (LOCAL)", "SISTEST LOCAL"
|
||||
GLOBAL_SQLUser = "sa"
|
||||
GLOBAL_SQLPassword = "pcl718"
|
||||
GLOBAL_SQLType = eSQLType.MSSQL
|
||||
GLOBAL_SQLServer = "SISI5SSD2\SQLExpress"
|
||||
GLOBAL_SQLDatabase = "SISTEST"
|
||||
GLOBAL_Company_Info = "TESZT adatbázis : SISI5SSD2\SQLExpress, SISTEST"
|
||||
GLOBAL_Plattform = "MS SQL"
|
||||
connstr = DevExpress.Xpo.DB.MSSqlConnectionProvider.GetConnectionString(GLOBAL_SQLServer, GLOBAL_SQLUser, GLOBAL_SQLPassword, GLOBAL_SQLDatabase)
|
||||
Case "PH (REMOTE)", "PH REMOTE", "PH"
|
||||
GLOBAL_SQLUser = "sisuser"
|
||||
GLOBAL_SQLPassword = "pcl718"
|
||||
GLOBAL_SQLType = eSQLType.MSSQL
|
||||
GLOBAL_SQLServer = "iroda.pestihazak.hu "
|
||||
GLOBAL_SQLDatabase = "Nuvolar"
|
||||
GLOBAL_Company_Info = "Pesti Házak : iroda.pestihazak.hu, Nuvolar"
|
||||
GLOBAL_Plattform = "MS SQL"
|
||||
connstr = DevExpress.Xpo.DB.MSSqlConnectionProvider.GetConnectionString(GLOBAL_SQLServer, GLOBAL_SQLUser, GLOBAL_SQLPassword, GLOBAL_SQLDatabase)
|
||||
Case "SISTEST"
|
||||
GLOBAL_SQLUser = "sa"
|
||||
GLOBAL_SQLPassword = "pcl718"
|
||||
GLOBAL_SQLType = eSQLType.MSSQL
|
||||
GLOBAL_SQLServer = "DATACENTER\SIS"
|
||||
GLOBAL_SQLDatabase = "SISTEST"
|
||||
GLOBAL_Company_Info = "SISTEST adatbázis : DATACENTER\SIS, SISTEST"
|
||||
GLOBAL_Plattform = "MS SQL"
|
||||
connstr = DevExpress.Xpo.DB.MSSqlConnectionProvider.GetConnectionString(GLOBAL_SQLServer, GLOBAL_SQLUser, GLOBAL_SQLPassword, GLOBAL_SQLDatabase)
|
||||
Case "FRANCISKA (LOCAL)", "FRANCISKA LOCAL"
|
||||
GLOBAL_SQLUser = "root"
|
||||
GLOBAL_SQLPassword = "pcl718"
|
||||
GLOBAL_SQLType = eSQLType.MySQL
|
||||
GLOBAL_SQLServer = "frserver"
|
||||
GLOBAL_SQLDatabase = "frinput"
|
||||
GLOBAL_Company_Info = "Franciska Input Kft : FRSERVER, FRINPUT"
|
||||
GLOBAL_Plattform = "MySQL"
|
||||
connstr = DevExpress.Xpo.DB.MySqlConnectionProvider.GetConnectionString(GLOBAL_SQLServer, GLOBAL_SQLUser, GLOBAL_SQLPassword, GLOBAL_SQLDatabase)
|
||||
Case "FRANCISKA (REMOTE)", "FRANCISKA REMOTE", "FR"
|
||||
GLOBAL_SQLUser = "root"
|
||||
GLOBAL_SQLPassword = "pcl718"
|
||||
GLOBAL_SQLType = eSQLType.MySQL
|
||||
GLOBAL_SQLServer = "91.137.135.109"
|
||||
GLOBAL_SQLDatabase = "frinput"
|
||||
GLOBAL_Company_Info = "Franciska Input Kft : 91.137.135.109, FRINPUT"
|
||||
GLOBAL_Plattform = "MySQL"
|
||||
connstr = DevExpress.Xpo.DB.MySqlConnectionProvider.GetConnectionString(GLOBAL_SQLServer, GLOBAL_SQLUser, GLOBAL_SQLPassword, GLOBAL_SQLDatabase)
|
||||
Case "BATIMPUT (REMOTE)", "BATINPUT REMOTE", "BI"
|
||||
GLOBAL_SQLUser = "root"
|
||||
GLOBAL_SQLPassword = "pcl718"
|
||||
GLOBAL_SQLType = eSQLType.MySQL
|
||||
GLOBAL_SQLServer = "91.137.135.109"
|
||||
GLOBAL_SQLDatabase = "batinput"
|
||||
GLOBAL_Company_Info = "Bát Input Kft : 91.137.135.109, BATINPUT"
|
||||
GLOBAL_Plattform = "MySQL"
|
||||
connstr = DevExpress.Xpo.DB.MySqlConnectionProvider.GetConnectionString(GLOBAL_SQLServer, GLOBAL_SQLUser, GLOBAL_SQLPassword, GLOBAL_SQLDatabase)
|
||||
Case "FR DB01"
|
||||
GLOBAL_SQLUser = "root"
|
||||
GLOBAL_SQLPassword = "pcl718"
|
||||
GLOBAL_SQLType = eSQLType.MySQL
|
||||
GLOBAL_SQLServer = "91.137.135.109"
|
||||
GLOBAL_SQLDatabase = "db01"
|
||||
GLOBAL_Company_Info = "Franciska Input Kft : 91.137.135.109, db01"
|
||||
GLOBAL_Plattform = "MySQL"
|
||||
connstr = DevExpress.Xpo.DB.MySqlConnectionProvider.GetConnectionString(GLOBAL_SQLServer, GLOBAL_SQLUser, GLOBAL_SQLPassword, GLOBAL_SQLDatabase)
|
||||
End Select
|
||||
Return connstr
|
||||
End Function
|
||||
|
||||
Public Function AlignStr(ByVal s As String, ByVal Direction As eDirection, ByVal AlignChar As String, ByVal MaxLen As Integer) As String
|
||||
Dim I As Integer
|
||||
Dim J As Long
|
||||
Dim seged As String = ""
|
||||
Dim _AlignStr As String = ""
|
||||
|
||||
If AlignChar = "" Then AlignChar = " "
|
||||
If MaxLen > Len(s) Then
|
||||
I = MaxLen - Len(s)
|
||||
For J = 1 To I
|
||||
seged += AlignChar
|
||||
Next
|
||||
|
||||
Select Case Direction
|
||||
Case eDirection.Left : _AlignStr = seged & s
|
||||
Case eDirection.Right : _AlignStr = s & seged
|
||||
End Select
|
||||
Return _AlignStr
|
||||
Else
|
||||
Return Mid(s, 1, MaxLen)
|
||||
End If
|
||||
End Function
|
||||
Public Function GetSQLTime(ByVal session As Session) As Date
|
||||
Try
|
||||
Dim funcNow As CriteriaOperator = New FunctionOperator(FunctionOperatorType.Now)
|
||||
Dim serverTime As Date = session.Evaluate(Of XPObjectType)(funcNow, Nothing)
|
||||
Return serverTime
|
||||
Catch
|
||||
Return Now
|
||||
End Try
|
||||
End Function
|
||||
Public Function Change3Value(ByVal s As String) As String
|
||||
Dim EStr(4) As String
|
||||
|
||||
Select Case Mid(s, 3, 1)
|
||||
Case "0" : EStr(3) = ""
|
||||
Case "1" : EStr(3) = "egy"
|
||||
Case "2" : EStr(3) = "kettő"
|
||||
Case "3" : EStr(3) = "három"
|
||||
Case "4" : EStr(3) = "négy"
|
||||
Case "5" : EStr(3) = "öt"
|
||||
Case "6" : EStr(3) = "hat"
|
||||
Case "7" : EStr(3) = "hét"
|
||||
Case "8" : EStr(3) = "nyolc"
|
||||
Case "9" : EStr(3) = "kilenc"
|
||||
End Select
|
||||
|
||||
Select Case Mid(s, 2, 1)
|
||||
Case "0" : EStr(2) = ""
|
||||
Case "1"
|
||||
If EStr(3) = "" Then
|
||||
EStr(2) = "tíz"
|
||||
Else
|
||||
EStr(2) = "tizen"
|
||||
End If
|
||||
Case "2"
|
||||
If EStr(3) = "" Then
|
||||
EStr(2) = "húsz"
|
||||
Else
|
||||
EStr(2) = "huszon"
|
||||
End If
|
||||
Case "3" : EStr(2) = "harminc"
|
||||
Case "4" : EStr(2) = "negyven"
|
||||
Case "5" : EStr(2) = "ötven"
|
||||
Case "6" : EStr(2) = "hatvan"
|
||||
Case "7" : EStr(2) = "hetven"
|
||||
Case "8" : EStr(2) = "nyolcvan"
|
||||
Case "9" : EStr(2) = "kilencven"
|
||||
End Select
|
||||
|
||||
Select Case Mid(s, 1, 1)
|
||||
Case "0" : EStr(1) = ""
|
||||
Case "1" : EStr(1) = "száz"
|
||||
Case "2" : EStr(1) = "kettőszáz"
|
||||
Case "3" : EStr(1) = "háromszáz"
|
||||
Case "4" : EStr(1) = "négyszáz"
|
||||
Case "5" : EStr(1) = "ötszáz"
|
||||
Case "6" : EStr(1) = "hatszáz"
|
||||
Case "7" : EStr(1) = "hétszáz"
|
||||
Case "8" : EStr(1) = "nyolcszáz"
|
||||
Case "9" : EStr(1) = "kilencszáz"
|
||||
End Select
|
||||
Return UCase$(EStr(1) & EStr(2) & EStr(3))
|
||||
|
||||
End Function
|
||||
Public Function GetHUNumberToText(ByVal l As Double) As String
|
||||
Dim SzámSzöveg As String
|
||||
Dim seged As String
|
||||
Dim VégStr As String
|
||||
|
||||
l = Math.Round(Math.Abs(l), 2, MidpointRounding.AwayFromZero)
|
||||
|
||||
VégStr = ""
|
||||
SzámSzöveg = Format(l, "000000000000.0")
|
||||
|
||||
seged = Mid(SzámSzöveg, 1, 3)
|
||||
seged = Change3Value(seged)
|
||||
If seged <> "" Then
|
||||
VégStr = VégStr & seged & "milliárd "
|
||||
Else
|
||||
VégStr = VégStr & ""
|
||||
End If
|
||||
|
||||
seged = Mid(SzámSzöveg, 4, 3)
|
||||
seged = Change3Value(seged)
|
||||
If seged <> "" Then
|
||||
VégStr = VégStr & seged & "millió "
|
||||
Else
|
||||
VégStr = VégStr & ""
|
||||
End If
|
||||
|
||||
seged = Mid(SzámSzöveg, 7, 3)
|
||||
seged = Change3Value(seged)
|
||||
If seged <> "" Then
|
||||
VégStr = VégStr & seged & "ezer "
|
||||
Else
|
||||
VégStr = VégStr & ""
|
||||
End If
|
||||
|
||||
seged = Mid(SzámSzöveg, 10, 3)
|
||||
seged = Change3Value(seged)
|
||||
VégStr = VégStr & seged
|
||||
seged = Mid(SzámSzöveg, 14, 1)
|
||||
VégStr = VégStr & " " & seged & "0/100"
|
||||
|
||||
Return UCase$(VégStr)
|
||||
End Function
|
||||
Public Function LastDayOfYear(ByVal d As DateTime) As DateTime
|
||||
Dim time As New DateTime((d.Year + 1), 1, 1)
|
||||
Return time.AddDays(-1)
|
||||
End Function
|
||||
Public Function FirstDayOfYear(ByVal y As DateTime) As DateTime
|
||||
Return New DateTime(y.Year, 1, 1)
|
||||
End Function
|
||||
Public Function CorrectFileName(_FileName As String) As String
|
||||
Dim _FileName_Good As String = ""
|
||||
Dim _s As String = ""
|
||||
Dim _i As Long = 0
|
||||
|
||||
For i = 1 To Len(_FileName)
|
||||
_s = Mid(_FileName, i, 1)
|
||||
Select Case _s
|
||||
Case "/", "'", ":", ",", ">", "<"
|
||||
_FileName_Good += "_"
|
||||
Case Else
|
||||
_FileName_Good += _s
|
||||
End Select
|
||||
Next
|
||||
Return _FileName_Good
|
||||
End Function
|
||||
|
||||
Public Function SQLNum(_NumberText As String) As String
|
||||
Dim _decimalSeparator As String = Globalization.CultureInfo.CurrentCulture.NumberFormat.NumberDecimalSeparator
|
||||
Dim _groupSeparator As String = Globalization.CultureInfo.CurrentCulture.NumberFormat.NumberGroupSeparator
|
||||
|
||||
Return Replace(Replace(_NumberText, _groupSeparator, ""), _decimalSeparator, ".")
|
||||
End Function
|
||||
'-- Hiba kezelés
|
||||
Public Function ThrowNewException(_p_Message As String) As Boolean
|
||||
MsgBox(_p_Message, MsgBoxStyle.Critical, "Nuvolar Framework 20.")
|
||||
Return True
|
||||
End Function
|
||||
Public Function GenerateDateCollection(_StartDate As Date, _StopDate As Date, Optional _Week As Boolean = False) As ArrayList
|
||||
Dim _DateArray As New ArrayList
|
||||
If _Week Then
|
||||
Dim _WeekCount As Integer = DateDiff(DateInterval.WeekOfYear, _StartDate, _StopDate)
|
||||
Dim _DayOfWeek As Integer = _StartDate.DayOfWeek
|
||||
If _DayOfWeek <> 0 Then
|
||||
_DateArray.Add(New Date(_StartDate.Year, _StartDate.Month, _StartDate.Day + (7 - _DayOfWeek)))
|
||||
Else
|
||||
_DateArray.Add(New Date(_StartDate.Year, _StartDate.Month, _StartDate.Day + 7))
|
||||
End If
|
||||
For ik = 1 To _WeekCount
|
||||
_DateArray.Add((New Date(CType(_DateArray(ik - 1), Date).Year, CType(_DateArray(ik - 1), Date).Month, CType(_DateArray(ik - 1), Date).Day).AddDays(7)))
|
||||
Next
|
||||
Else
|
||||
Dim _MountCount As Integer = DateDiff(DateInterval.Month, _StartDate, _StopDate)
|
||||
For ik = 1 To _MountCount + 1
|
||||
_DateArray.Add((New Date(_StartDate.Year, _StartDate.Month, 1).AddMonths(ik)).AddDays(-1))
|
||||
Next
|
||||
End If
|
||||
Return _DateArray
|
||||
End Function
|
||||
|
||||
'//Raktárkezelés
|
||||
Public Sub CheckInventoryTransferStorageInRows(_uow As UnitOfWork, _StorageInRows_Collection_Base As XPCollection(Of StorageInRows))
|
||||
Dim _SQL As String = ""
|
||||
Dim _StorageInRows_Base As StorageInRows
|
||||
|
||||
For Each _StorageInRows_Base In _StorageInRows_Collection_Base
|
||||
If _SQL = "" Then
|
||||
_SQL = " Oid in ('" & _StorageInRows_Base.Oid.ToString & "'"
|
||||
Else
|
||||
_SQL += ",'" & _StorageInRows_Base.Oid.ToString & "'"
|
||||
End If
|
||||
Next
|
||||
If _SQL <> "" Then
|
||||
_SQL += ")"
|
||||
Else
|
||||
Exit Sub
|
||||
End If
|
||||
|
||||
|
||||
Select Case GLOBAL_SQLType
|
||||
Case eSQLType.MSSQL, eSQLType.MySQL
|
||||
_uow.ExecuteNonQuery("update StorageInRows set QTT_Overstor=0,QTT_Overstor_Will=0,QTT_Overstored=0,QTT_Overstored_Will=0 Where " & _SQL)
|
||||
|
||||
Case eSQLType.PostgreSQL
|
||||
_SQL = Replace(_SQL, "Oid", """Oid""")
|
||||
_uow.ExecuteNonQuery("update ""StorageInRows"" set ""QTT_Overstor""=0,""QTT_Overstor_Will""=0,""QTT_Overstored""=0,""QTT_Overstored_Will""=0 Where " & _SQL)
|
||||
End Select
|
||||
|
||||
|
||||
|
||||
For Each _StorageInRows_Base In _StorageInRows_Collection_Base
|
||||
Dim _StorageOutRowsInRows_XPQuery As New XPQuery(Of StorageOutRowsInRows)(_uow)
|
||||
Dim query = From _StorageOutRowsInRows In _StorageOutRowsInRows_XPQuery
|
||||
Where _StorageOutRowsInRows.StorageOutRows.StorageOutHeader.StorageMoveType.MoveType = eMoveType.InventoryTransfer And
|
||||
_StorageOutRowsInRows.StorageOutRows.StorageOutHeader.IsEditable = False And
|
||||
String.IsNullOrEmpty(_StorageOutRowsInRows.StorageOutRows.StorageOutHeader.DocumentNumber) = False And
|
||||
_StorageOutRowsInRows.StorageOutRows.StorageOutHeader IsNot Nothing And
|
||||
_StorageOutRowsInRows.StorageInRows.Oid = _StorageInRows_Base.Oid
|
||||
Group _StorageOutRowsInRows By _StorageOutRowsInRows.StorageInRows.Oid Into g = Group
|
||||
Select New With {.StorageInRows = Oid,
|
||||
.QTT_Sum = g.Sum(Function(inv) inv.QTT)}
|
||||
|
||||
For Each item In query
|
||||
Dim _StorageInRows As StorageInRows = _uow.FindObject(Of StorageInRows)(CriteriaOperator.Parse("Oid=?", item.StorageInRows.ToString))
|
||||
|
||||
If _StorageInRows IsNot Nothing Then
|
||||
_StorageInRows.QTT_Overstor = item.QTT_Sum
|
||||
_uow.CommitChanges()
|
||||
End If
|
||||
Next
|
||||
|
||||
query = From _StorageOutRowsInRows In _StorageOutRowsInRows_XPQuery
|
||||
Where _StorageOutRowsInRows.StorageOutRows.StorageOutHeader.StorageMoveType.MoveType = eMoveType.InventoryTransfer And
|
||||
_StorageOutRowsInRows.StorageOutRows.StorageOutHeader.IsEditable = True And
|
||||
_StorageOutRowsInRows.StorageOutRows.StorageOutHeader IsNot Nothing And
|
||||
_StorageOutRowsInRows.StorageInRows.Oid = _StorageInRows_Base.Oid
|
||||
Group _StorageOutRowsInRows By _StorageOutRowsInRows.StorageInRows.Oid Into g = Group
|
||||
Select New With {.StorageInRows = Oid,
|
||||
.QTT_Sum = g.Sum(Function(inv) inv.QTT_Will)}
|
||||
|
||||
|
||||
For Each item In query
|
||||
Dim _StorageInRows As StorageInRows = _uow.FindObject(Of StorageInRows)(CriteriaOperator.Parse("Oid=?", item.StorageInRows.ToString))
|
||||
|
||||
If _StorageInRows IsNot Nothing Then
|
||||
_StorageInRows.QTT_Overstor_Will = item.QTT_Sum
|
||||
_uow.CommitChanges()
|
||||
End If
|
||||
Next
|
||||
|
||||
|
||||
'__Overstored renberakása
|
||||
Dim _StorageInRows_XPQuery As New XPQuery(Of StorageInRows)(_uow)
|
||||
Dim query1 = From _StorageInRows In _StorageInRows_XPQuery
|
||||
Where _StorageInRows.StorageInHeader IsNot Nothing And
|
||||
String.IsNullOrEmpty(_StorageInRows.StorageInHeader.DocumentNumber) = False AndAlso
|
||||
_StorageInRows.StorageInHeader.StorageMoveType.MoveType = eMoveType.InventoryTransfer And
|
||||
_StorageInRows.StorageInHeader.IsEditable = False And
|
||||
_StorageInRows.StorageInRowsFrom.Oid = _StorageInRows_Base.Oid
|
||||
Group _StorageInRows By _StorageInRows.StorageInRowsFrom.Oid Into g = Group
|
||||
Select New With {.StorageInRows = Oid,
|
||||
.QTT_Sum = g.Sum(Function(inv) inv.QTT)}
|
||||
For Each item In query1
|
||||
Dim _StorageInRows As StorageInRows = _uow.FindObject(Of StorageInRows)(CriteriaOperator.Parse("Oid=?", item.StorageInRows.ToString))
|
||||
|
||||
If _StorageInRows IsNot Nothing Then
|
||||
_StorageInRows.QTT_Overstored = item.QTT_Sum
|
||||
_uow.CommitChanges()
|
||||
End If
|
||||
Next
|
||||
|
||||
query1 = From _StorageInRows In _StorageInRows_XPQuery
|
||||
Where _StorageInRows.StorageInHeader IsNot Nothing And
|
||||
String.IsNullOrEmpty(_StorageInRows.StorageInHeader.DocumentNumber) = False AndAlso
|
||||
_StorageInRows.StorageInHeader.StorageMoveType.MoveType = eMoveType.InventoryTransfer And
|
||||
_StorageInRows.StorageInHeader.IsEditable = True And
|
||||
_StorageInRows.StorageInRowsFrom.Oid = _StorageInRows_Base.Oid
|
||||
Group _StorageInRows By _StorageInRows.StorageInRowsFrom.Oid Into g = Group
|
||||
Select New With {.StorageInRows = Oid,
|
||||
.QTT_Sum = g.Sum(Function(inv) inv.QTT_Will)}
|
||||
For Each item In query1
|
||||
Dim _StorageInRows As StorageInRows = _uow.FindObject(Of StorageInRows)(CriteriaOperator.Parse("Oid=?", item.StorageInRows.ToString))
|
||||
|
||||
If _StorageInRows IsNot Nothing Then
|
||||
_StorageInRows.QTT_Overstored_Will = item.QTT_Sum
|
||||
_uow.CommitChanges()
|
||||
End If
|
||||
Next
|
||||
Next
|
||||
End Sub
|
||||
|
||||
Function EAN13Generator(ByVal _Base As String) As String
|
||||
If _Base.Length = 12 Then
|
||||
Dim i As Long
|
||||
Dim _CheckSum As Long = 0
|
||||
For i = 1 To Len(_Base)
|
||||
If i Mod 2 = 0 Then
|
||||
_CheckSum += Val(Mid(_Base, i, 1)) * 3
|
||||
Else
|
||||
_CheckSum += Val(Mid(_Base, i, 1))
|
||||
End If
|
||||
Next
|
||||
_CheckSum = 10 - (_CheckSum Mod 10)
|
||||
If _CheckSum = 10 Then _CheckSum = 0
|
||||
|
||||
Return _Base & LTrim(RTrim(CStr(_CheckSum)))
|
||||
Else
|
||||
Return ""
|
||||
End If
|
||||
End Function
|
||||
|
||||
|
||||
End Module
|
||||
@@ -0,0 +1,223 @@
|
||||
Imports DevExpress.Xpo
|
||||
Imports DevExpress.Data.Filtering
|
||||
Imports DevExpress.ExpressApp.Utils
|
||||
|
||||
Module HTMLModule
|
||||
Public Function CreateHTMLEvents(_Question As Question, _Session As DevExpress.Xpo.Session) As String
|
||||
Dim _Events_Collection As New XPCollection(Of Events)(PersistentCriteriaEvaluationBehavior.InTransaction, _
|
||||
_Session, CriteriaOperator.Parse("Question.Oid=?", _Question.Oid))
|
||||
Dim _Events As Events
|
||||
Dim s As String = ""
|
||||
|
||||
's = " <style> "
|
||||
's += " * { font-family: Arial; }"
|
||||
's += " h1 { color: #8080a0; font-weight: normal; padding: 0px; margin: 5px 0px; }"
|
||||
's += " p { padding: 0px; margin: 3px 0px; color: #808080; }"
|
||||
's += " </style> "
|
||||
|
||||
If _Events_Collection IsNot Nothing Then
|
||||
_Events_Collection.Sorting.Add(New SortProperty("ObjectCreated", DB.SortingDirection.Ascending))
|
||||
|
||||
For Each _Events In _Events_Collection
|
||||
If _Events.EventDirection = eEventDirection.eIn Then
|
||||
s += "<table cellspacing='0' cellpadding='0' border='0' width=100% style='background-color:&&ECDEEC;'>"
|
||||
s += "<tr>"
|
||||
s += "<td style='width:10px;border-top:solid 1px;border-bottom:solid 1px;background-color:&&ECDEEC;color:&&866A86;"
|
||||
s += " font-size:small;'>"
|
||||
s += "</td>"
|
||||
|
||||
s += "<td style='background-color:&&ECDEEC;color:&&866A86;vertical-align:center;width:25px;height:30px;"
|
||||
s += " border-top:solid 1px;border-bottom:solid 1px;"
|
||||
s += "'>"
|
||||
s += "<img id='1' alt='<-' src='" & GLOBAL_ApplicationStartupPath & "Images\iRedArrow.png' style='height:22px;width:21px;border-style:none;'/>"
|
||||
s += "</td>"
|
||||
|
||||
s += "<td style='background-color:&&ECDEEC;color:&&866A86;vertical-align:center;"
|
||||
s += " border-top:solid 1px;border-bottom:solid 1px;"
|
||||
s += "'>"
|
||||
s += _Events.UserCreated.LastName & " " & _Events.UserCreated.FirstName & " írta (" & CaptionHelper.GetLocalizedText("Enums\Nuvolar.Module.eQuestionStatus", _Events.QuestionStatus.ToString) & ")"
|
||||
s += "</td>"
|
||||
|
||||
s += "<td style='background-color:&&ECDEEC;color:&&866A86;vertical-align:center;text-align:right;"
|
||||
s += " border-top:solid 1px;border-bottom:solid 1px;font-size:small;"
|
||||
s += "'>"
|
||||
s += Format(_Events.ObjectCreated, "yyyy/MM/dd HH:mm")
|
||||
s += "</td>"
|
||||
s += "<td style='width:5px;border-top:solid 1px;border-bottom:solid 1px;background-color:&&ECDEEC;color:&&866A86;"
|
||||
s += " font-size:small;'>"
|
||||
s += "</td>"
|
||||
s += "</tr>"
|
||||
s += "</table><br>"
|
||||
s += "<table cellspacing='0' cellpadding='0' border='0' width=100%>"
|
||||
s += "<tr>"
|
||||
s += "<td style='width:25px;'></td>"
|
||||
s += "<td>"
|
||||
If _Events.Attachment IsNot Nothing Then
|
||||
s += "<span id='100'><b>Csatolmány:</b> <a href='GetAttachments.ashx?id=" & _Events.Attachment.Oid.ToString & "' target='_blank'>" & _Events.Attachment.FileName & "</a> (" & _Events.Attachment.Size & " bytes)</span><br><br>"
|
||||
End If
|
||||
s += _Events.Description
|
||||
s += "</td>"
|
||||
s += "</tr>"
|
||||
s += "</table>"
|
||||
s += "<br><br>"
|
||||
End If
|
||||
If _Events.EventDirection = eEventDirection.eOut Then
|
||||
s += "<table cellspacing='0' cellpadding='0' border='0' width=100% style='background-color:&&E1F7EC;'>"
|
||||
s += "<tr>"
|
||||
s += "<td style='width:10px;border-top:solid 1px;border-bottom:solid 1px;background-color:&&E1F7EC;color:&&83968D;"
|
||||
s += " font-size:small;'>"
|
||||
s += "</td>"
|
||||
s += "<td style='background-color:&&E1F7EC;color:&&83968D;vertical-align:center;width:25px;height:30px;"
|
||||
s += " border-top:solid 1px;border-bottom:solid 1px;"
|
||||
s += "'>"
|
||||
s += "<img id='1' alt='->' src='" & GLOBAL_ApplicationStartupPath & "Images\iGreenArrow.png' style='height:22px;width:21px;border-style:none;'/>"
|
||||
s += "</td>"
|
||||
|
||||
s += "<td style='background-color:&&E1F7EC;color:&&83968D;vertical-align:center;"
|
||||
s += " border-top:solid 1px;border-bottom:solid 1px;"
|
||||
s += "'>"
|
||||
s += _Events.UserCreated.LastName & " " & _Events.UserCreated.FirstName & " válaszolta (" & CaptionHelper.GetLocalizedText("Enums\Nuvolar.Module.eQuestionStatus", _Events.QuestionStatus.ToString) & ")"
|
||||
s += "</td>"
|
||||
|
||||
s += "<td style='background-color:&&E1F7EC;color:&&83968D;vertical-align:center;text-align:right;"
|
||||
s += " border-top:solid 1px;border-bottom:solid 1px;font-size:small;"
|
||||
s += "'>"
|
||||
s += Format(_Events.ObjectCreated, "yyyy/MM/dd HH:mm")
|
||||
s += "</td>"
|
||||
s += "<td style='width:5px;border-top:solid 1px;border-bottom:solid 1px;background-color:&&E1F7EC;color:&&83968D;"
|
||||
s += " font-size:small;'>"
|
||||
s += "</td>"
|
||||
s += "</tr>"
|
||||
s += "</table><br>"
|
||||
s += "<table cellspacing='0' cellpadding='0' border='0' width=100%>"
|
||||
s += "<tr>"
|
||||
If LTrim(RTrim(_Events.Description)) <> "" Then
|
||||
s += "<td style='width:25px;'></td>"
|
||||
s += "<td>"
|
||||
If _Events.Attachment IsNot Nothing Then
|
||||
s += "<span id='100'><b>Csatolmány:</b> <a href='GetAttachments.ashx?id=" & _Events.Attachment.Oid.ToString & "' target='_blank'>" & _Events.Attachment.FileName & "</a> (" & _Events.Attachment.Size & " bytes)</span><br><br>"
|
||||
End If
|
||||
s += _Events.Description
|
||||
s += "</td>"
|
||||
s += "</tr>"
|
||||
|
||||
s += "</table>"
|
||||
|
||||
s += "<br><br>"
|
||||
End If
|
||||
End If
|
||||
|
||||
Next
|
||||
|
||||
End If
|
||||
s = Replace(s, "'", """")
|
||||
s = Replace(s, "&&", "#")
|
||||
Return s
|
||||
End Function
|
||||
Public Function CreateHTMLEventsMail(_Question As Question, _Session As DevExpress.Xpo.Session) As String
|
||||
Dim _Events_Collection As New XPCollection(Of Events)(PersistentCriteriaEvaluationBehavior.InTransaction, _
|
||||
_Session, CriteriaOperator.Parse("Question.Oid=?", _Question.Oid))
|
||||
Dim _Events As Events
|
||||
Dim s As String = ""
|
||||
|
||||
's = " <style> "
|
||||
's += " * { font-family: Arial; }"
|
||||
's += " h1 { color: #8080a0; font-weight: normal; padding: 0px; margin: 5px 0px; }"
|
||||
's += " p { padding: 0px; margin: 3px 0px; color: #808080; }"
|
||||
's += " </style> "
|
||||
|
||||
If _Events_Collection IsNot Nothing Then
|
||||
_Events_Collection.Sorting.Add(New SortProperty("ObjectCreated", DB.SortingDirection.Ascending))
|
||||
|
||||
For Each _Events In _Events_Collection
|
||||
If _Events.EventDirection = eEventDirection.eIn Then
|
||||
s += "<table cellspacing='0' cellpadding='0' border='0' width=100% style='background-color:&&ECDEEC;'>"
|
||||
s += "<tr>"
|
||||
s += "<td style='width:10px;border-top:solid 1px;border-bottom:solid 1px;background-color:&&ECDEEC;color:&&866A86;"
|
||||
s += " font-size:small;'>"
|
||||
s += "</td>"
|
||||
|
||||
s += "<td style='background-color:&&ECDEEC;color:&&866A86;vertical-align:center;width:25px;height:30px;"
|
||||
s += " border-top:solid 1px;border-bottom:solid 1px;"
|
||||
s += "'>"
|
||||
s += "<img id='1' alt='<-' <img src='cid:c001' style='height:22px;width:21px;border-style:none;'/>"
|
||||
s += "</td>"
|
||||
|
||||
s += "<td style='background-color:&&ECDEEC;color:&&866A86;vertical-align:center;"
|
||||
s += " border-top:solid 1px;border-bottom:solid 1px;"
|
||||
s += "'>"
|
||||
s += _Events.UserCreated.LastName & " " & _Events.UserCreated.FirstName & " írta (" & CaptionHelper.GetLocalizedText("Enums\Nuvolar.Module.eQuestionStatus", _Events.QuestionStatus.ToString) & ")"
|
||||
s += "</td>"
|
||||
|
||||
s += "<td style='background-color:&&ECDEEC;color:&&866A86;vertical-align:center;text-align:right;"
|
||||
s += " border-top:solid 1px;border-bottom:solid 1px;font-size:small;"
|
||||
s += "'>"
|
||||
s += Format(_Events.ObjectCreated, "yyyy/MM/dd HH:mm")
|
||||
s += "</td>"
|
||||
s += "<td style='width:5px;border-top:solid 1px;border-bottom:solid 1px;background-color:&&ECDEEC;color:&&866A86;"
|
||||
s += " font-size:small;'>"
|
||||
s += "</td>"
|
||||
s += "</tr>"
|
||||
s += "</table><br>"
|
||||
s += "<table cellspacing='0' cellpadding='0' border='0' width=100%>"
|
||||
s += "<tr>"
|
||||
s += "<td style='width:25px;'></td>"
|
||||
s += "<td>"
|
||||
s += _Events.Description
|
||||
s += "</td>"
|
||||
s += "</tr>"
|
||||
s += "</table>"
|
||||
s += "<br><br>"
|
||||
End If
|
||||
If _Events.EventDirection = eEventDirection.eOut Then
|
||||
s += "<table cellspacing='0' cellpadding='0' border='0' width=100% style='background-color:&&E1F7EC;'>"
|
||||
s += "<tr>"
|
||||
s += "<td style='width:10px;border-top:solid 1px;border-bottom:solid 1px;background-color:&&E1F7EC;color:&&83968D;"
|
||||
s += " font-size:small;'>"
|
||||
s += "</td>"
|
||||
s += "<td style='background-color:&&E1F7EC;color:&&83968D;vertical-align:center;width:25px;height:30px;"
|
||||
s += " border-top:solid 1px;border-bottom:solid 1px;"
|
||||
s += "'>"
|
||||
s += "<img id='1' alt='->' src='cid:c002' style='height:22px;width:21px;border-style:none;'/>"
|
||||
s += "</td>"
|
||||
|
||||
s += "<td style='background-color:&&E1F7EC;color:&&83968D;vertical-align:center;"
|
||||
s += " border-top:solid 1px;border-bottom:solid 1px;"
|
||||
s += "'>"
|
||||
s += _Events.UserCreated.LastName & " " & _Events.UserCreated.FirstName & " válaszolta (" & CaptionHelper.GetLocalizedText("Enums\Nuvolar.Module.eQuestionStatus", _Events.QuestionStatus.ToString) & ")"
|
||||
s += "</td>"
|
||||
|
||||
s += "<td style='background-color:&&E1F7EC;color:&&83968D;vertical-align:center;text-align:right;"
|
||||
s += " border-top:solid 1px;border-bottom:solid 1px;font-size:small;"
|
||||
s += "'>"
|
||||
s += Format(_Events.ObjectCreated, "yyyy/MM/dd HH:mm")
|
||||
s += "</td>"
|
||||
s += "<td style='width:5px;border-top:solid 1px;border-bottom:solid 1px;background-color:&&E1F7EC;color:&&83968D;"
|
||||
s += " font-size:small;'>"
|
||||
s += "</td>"
|
||||
s += "</tr>"
|
||||
s += "</table><br>"
|
||||
s += "<table cellspacing='0' cellpadding='0' border='0' width=100%>"
|
||||
s += "<tr>"
|
||||
If LTrim(RTrim(_Events.Description)) <> "" Then
|
||||
s += "<td style='width:25px;'></td>"
|
||||
s += "<td>"
|
||||
s += _Events.Description
|
||||
s += "</td>"
|
||||
s += "</tr>"
|
||||
|
||||
s += "</table>"
|
||||
|
||||
s += "<br><br>"
|
||||
End If
|
||||
End If
|
||||
|
||||
Next
|
||||
|
||||
End If
|
||||
s = Replace(s, "'", """")
|
||||
s = Replace(s, "&&", "#")
|
||||
Return s
|
||||
End Function
|
||||
|
||||
End Module
|
||||
@@ -0,0 +1,372 @@
|
||||
Imports System.Net
|
||||
Imports System.Net.Sockets
|
||||
Imports System.IO
|
||||
Imports System.Net.Mail
|
||||
Imports DevExpress.Xpo
|
||||
|
||||
Public Class SISPOP3Base
|
||||
' variables for pop3 class
|
||||
Public pop3host As [String]
|
||||
Public port As Integer
|
||||
Public user As [String]
|
||||
Public pwd As [String]
|
||||
Public command As [String]
|
||||
Public w_TcpClient As TcpClient
|
||||
Public w_NetStream As NetworkStream
|
||||
Public w_ReadStream As StreamReader
|
||||
Public bData As Byte()
|
||||
'for the data, tat we'll recive
|
||||
Public Function DoConnect(pop3host As [String], port As Integer, user As [String], pwd As [String]) As String
|
||||
' create POP3 connection
|
||||
w_TcpClient = New TcpClient(pop3host, port)
|
||||
|
||||
Try
|
||||
' initialization
|
||||
w_NetStream = w_TcpClient.GetStream()
|
||||
w_ReadStream = New StreamReader(w_TcpClient.GetStream())
|
||||
w_ReadStream.ReadLine()
|
||||
|
||||
' send login
|
||||
command = "USER " & user & vbCr & vbLf
|
||||
bData = System.Text.Encoding.ASCII.GetBytes(command.ToCharArray())
|
||||
w_NetStream.Write(bData, 0, bData.Length)
|
||||
w_ReadStream.ReadLine()
|
||||
' send pwd
|
||||
command = "PASS " & pwd & vbCr & vbLf
|
||||
bData = System.Text.Encoding.ASCII.GetBytes(command.ToCharArray())
|
||||
w_NetStream.Write(bData, 0, bData.Length)
|
||||
w_ReadStream.ReadLine()
|
||||
Catch err As InvalidOperationException
|
||||
Return ("Error: " & err.ToString())
|
||||
End Try
|
||||
Return "+OK"
|
||||
End Function
|
||||
Public Function GetStat() As String
|
||||
' Send STAT command to get number of mail and total size
|
||||
command = "STAT" & vbCr & vbLf
|
||||
bData = System.Text.Encoding.ASCII.GetBytes(command.ToCharArray())
|
||||
w_NetStream.Write(bData, 0, bData.Length)
|
||||
Return w_ReadStream.ReadLine()
|
||||
End Function
|
||||
|
||||
Public Function GetList() As String
|
||||
' Send LIST command with no parametrs to get all information
|
||||
Dim sTemp As String
|
||||
' For saving 'list' results
|
||||
Dim sList As String = ""
|
||||
command = "LIST" & vbCr & vbLf
|
||||
bData = System.Text.Encoding.ASCII.GetBytes(command.ToCharArray())
|
||||
w_NetStream.Write(bData, 0, bData.Length)
|
||||
sTemp = w_ReadStream.ReadLine()
|
||||
|
||||
If sTemp(0) <> "-"c Then
|
||||
' errors begins with '-'
|
||||
While sTemp <> "."
|
||||
'saving data to string while not found '.'
|
||||
sList += sTemp & vbCr & vbLf
|
||||
sTemp = w_ReadStream.ReadLine()
|
||||
End While
|
||||
Else
|
||||
Return sTemp
|
||||
End If
|
||||
Return sList
|
||||
End Function
|
||||
Public Function GetList(num As Integer) As String
|
||||
' Send LIST command with number of a letter
|
||||
command = "LIST " & num & vbCr & vbLf
|
||||
bData = System.Text.Encoding.ASCII.GetBytes(command.ToCharArray())
|
||||
w_NetStream.Write(bData, 0, bData.Length)
|
||||
Return w_ReadStream.ReadLine()
|
||||
End Function
|
||||
Public Function Retr(num As Integer) As String
|
||||
Dim sTemp As String
|
||||
Dim sBody As String = ""
|
||||
Try
|
||||
command = "RETR " & num & vbCr & vbLf
|
||||
bData = System.Text.Encoding.ASCII.GetBytes(command.ToCharArray())
|
||||
w_NetStream.Write(bData, 0, bData.Length)
|
||||
|
||||
sTemp = w_ReadStream.ReadLine()
|
||||
If sTemp(0) <> "-"c Then
|
||||
'errors begins with -
|
||||
While sTemp <> "."
|
||||
' . - is the end of the server response
|
||||
sBody += sTemp & vbCr & vbLf
|
||||
sTemp = w_ReadStream.ReadLine()
|
||||
End While
|
||||
Else
|
||||
Return sTemp
|
||||
End If
|
||||
Catch err As InvalidOperationException
|
||||
Return ("Error: " & err.ToString())
|
||||
End Try
|
||||
Return sBody
|
||||
End Function
|
||||
Public Function Dele(num As Integer) As String
|
||||
' Send DELE command to delete message with specified number
|
||||
command = "DELE " & num & vbCr & vbLf
|
||||
bData = System.Text.Encoding.ASCII.GetBytes(command.ToCharArray())
|
||||
w_NetStream.Write(bData, 0, bData.Length)
|
||||
Return w_ReadStream.ReadLine()
|
||||
End Function
|
||||
Public Function Rset() As String
|
||||
' Send RSET command to unmark all deleteting messages
|
||||
command = "RSET" & vbCr & vbLf
|
||||
bData = System.Text.Encoding.ASCII.GetBytes(command.ToCharArray())
|
||||
w_NetStream.Write(bData, 0, bData.Length)
|
||||
Return w_ReadStream.ReadLine()
|
||||
End Function
|
||||
|
||||
Public Function Quit() As String
|
||||
' Send QUIT
|
||||
command = "QUIT" & vbCr & vbLf
|
||||
bData = System.Text.Encoding.ASCII.GetBytes(command.ToCharArray())
|
||||
w_NetStream.Write(bData, 0, bData.Length)
|
||||
Dim tmp As [String] = w_ReadStream.ReadLine()
|
||||
w_NetStream.Close()
|
||||
w_ReadStream.Close()
|
||||
Return tmp
|
||||
End Function
|
||||
Public Function GetTop(num As Integer) As String
|
||||
Dim sTemp As String
|
||||
Dim [sTop] As String = ""
|
||||
Try
|
||||
' retrieve mail with number mail parameter
|
||||
command = "TOP " & num & " n" & vbCr & vbLf
|
||||
bData = System.Text.Encoding.ASCII.GetBytes(command.ToCharArray())
|
||||
w_NetStream.Write(bData, 0, bData.Length)
|
||||
|
||||
sTemp = w_ReadStream.ReadLine()
|
||||
If sTemp(0) <> "-"c Then
|
||||
While sTemp <> "."
|
||||
[sTop] += sTemp & vbCr & vbLf
|
||||
sTemp = w_ReadStream.ReadLine()
|
||||
End While
|
||||
Else
|
||||
Return sTemp
|
||||
End If
|
||||
Catch err As InvalidOperationException
|
||||
Return ("Error: " & err.ToString())
|
||||
End Try
|
||||
Return [sTop]
|
||||
End Function
|
||||
Public Function GetTop(num_mess As Integer, num_strok As Integer) As String
|
||||
Dim sTemp As String
|
||||
Dim [sTop] As String = ""
|
||||
Try
|
||||
' retrieve mail with number mail parameter
|
||||
command = "TOP " & num_mess & " " & num_strok & vbCr & vbLf
|
||||
bData = System.Text.Encoding.ASCII.GetBytes(command.ToCharArray())
|
||||
w_NetStream.Write(bData, 0, bData.Length)
|
||||
|
||||
sTemp = w_ReadStream.ReadLine()
|
||||
If sTemp(0) <> "-"c Then
|
||||
While sTemp <> "."
|
||||
[sTop] += sTemp & vbCr & vbLf
|
||||
sTemp = w_ReadStream.ReadLine()
|
||||
End While
|
||||
Else
|
||||
Return sTemp
|
||||
End If
|
||||
Catch err As InvalidOperationException
|
||||
Return ("Error: " & err.ToString())
|
||||
End Try
|
||||
Return [sTop]
|
||||
End Function
|
||||
Public Function GetUidl() As String
|
||||
Dim sTemp As String
|
||||
Dim sUidl As String = ""
|
||||
command = "UIDL" & vbCr & vbLf
|
||||
bData = System.Text.Encoding.ASCII.GetBytes(command.ToCharArray())
|
||||
w_NetStream.Write(bData, 0, bData.Length)
|
||||
sTemp = w_ReadStream.ReadLine()
|
||||
|
||||
If sTemp(0) <> "-"c Then
|
||||
' errors begins with '-'
|
||||
While sTemp <> "."
|
||||
'saving data to string while not found '.'
|
||||
sUidl += sTemp & vbCr & vbLf
|
||||
sTemp = w_ReadStream.ReadLine()
|
||||
End While
|
||||
Else
|
||||
Return sTemp
|
||||
End If
|
||||
Return sUidl
|
||||
End Function
|
||||
Public Function GetUidl(num As Integer) As String
|
||||
command = "UIDL " & num & vbCr & vbLf
|
||||
bData = System.Text.Encoding.ASCII.GetBytes(command.ToCharArray())
|
||||
w_NetStream.Write(bData, 0, bData.Length)
|
||||
Return w_ReadStream.ReadLine()
|
||||
End Function
|
||||
Public Function GetNoop() As String
|
||||
' Send NOOP command to check if we are connected
|
||||
command = "NOOP" & vbCr & vbLf
|
||||
bData = System.Text.Encoding.ASCII.GetBytes(command.ToCharArray())
|
||||
w_NetStream.Write(bData, 0, bData.Length)
|
||||
Return w_ReadStream.ReadLine()
|
||||
End Function
|
||||
End Class
|
||||
Public Class SISPOP3Message
|
||||
Public Function GetFrom(messTop As String) As String
|
||||
messTop = messTop.Remove(0, (messTop.IndexOf(vbCr & vbLf & "From:") + 7))
|
||||
messTop = messTop.Remove(messTop.IndexOf(ControlChars.Cr), ((messTop.Length - messTop.IndexOf(ControlChars.Cr)) - 1))
|
||||
Return messTop
|
||||
End Function
|
||||
Public Function GetDate(messTop As String) As String
|
||||
messTop = messTop.Remove(0, (messTop.IndexOf(vbCr & vbLf & "Date:") + 7))
|
||||
messTop = messTop.Remove(messTop.IndexOf(ControlChars.Cr), (messTop.Length - messTop.IndexOf(ControlChars.Cr)))
|
||||
Return messTop
|
||||
End Function
|
||||
Public Function GetMessID(messTop As String) As String
|
||||
messTop = messTop.Remove(0, (messTop.IndexOf(vbCr & vbLf & "Message-ID: ") + 13))
|
||||
messTop = messTop.Remove(messTop.IndexOf(ControlChars.Cr), (messTop.Length - messTop.IndexOf(ControlChars.Cr)))
|
||||
Return messTop
|
||||
End Function
|
||||
Public Function GetTo(messTop As String) As String
|
||||
messTop = messTop.Remove(0, (messTop.IndexOf(vbCr & vbLf & "To:") + 6))
|
||||
messTop = messTop.Remove(messTop.IndexOf(ControlChars.Cr), (messTop.Length - messTop.IndexOf(ControlChars.Cr)))
|
||||
Return messTop
|
||||
End Function
|
||||
Public Function GetSubject(messTop As String) As String
|
||||
messTop = messTop.Remove(0, (messTop.IndexOf(vbCr & vbLf & "Subject:") + 10))
|
||||
messTop = messTop.Remove(messTop.IndexOf(ControlChars.Cr), (messTop.Length - messTop.IndexOf(ControlChars.Cr)))
|
||||
Return messTop
|
||||
End Function
|
||||
Public Function GetBody(AllMessage As String) As String
|
||||
AllMessage = AllMessage.Remove(0, (AllMessage.IndexOf(vbCr & vbLf & vbCr & vbLf)))
|
||||
Return AllMessage
|
||||
End Function
|
||||
End Class
|
||||
'Public Class SISSendMail
|
||||
' ReadOnly Property ContactsTo As XPCollection(Of Contacts)
|
||||
' Get
|
||||
' Return New xpcoll
|
||||
' End Get
|
||||
' End Property
|
||||
' Private Function SendMail(_Host As String, _Port As Long, _FromAddress As String, _Subject As String, _Body As String) As String
|
||||
' Try
|
||||
' Dim smtp As New SmtpClient()
|
||||
' Dim message As New MailMessage()
|
||||
|
||||
' smtp.Host = _Host
|
||||
' smtp.Port = _Port
|
||||
|
||||
' smtp.Credentials = System.Net.CredentialCache.DefaultNetworkCredentials
|
||||
|
||||
' 'smtp.Credentials = new System.Net.NetworkCredential("username", "password");
|
||||
|
||||
' message.Subject = _Subject
|
||||
' message.Body = _Body
|
||||
' message.From = New MailAddress(_FromAddress)
|
||||
' message.DeliveryNotificationOptions = DeliveryNotificationOptions.OnFailure
|
||||
' message.Priority = MailPriority.Normal
|
||||
|
||||
' ' Make the list of recipients.
|
||||
|
||||
' If [To].Count > 0 Then
|
||||
|
||||
' For Each item As Contact In [To]
|
||||
|
||||
|
||||
' message.[To].Add(New MailAddress(item.Email, item.FullName))
|
||||
|
||||
' Next
|
||||
' End If
|
||||
|
||||
' If CC.Count > 0 Then
|
||||
|
||||
' For Each item As Contact In CC
|
||||
|
||||
|
||||
' message.CC.Add(New MailAddress(item.Email, item.FullName))
|
||||
|
||||
' Next
|
||||
' End If
|
||||
|
||||
' If Bcc.Count > 0 Then
|
||||
|
||||
' For Each item As Contact In Bcc
|
||||
|
||||
|
||||
' message.Bcc.Add(New MailAddress(item.Email, item.FullName))
|
||||
|
||||
' Next
|
||||
' End If
|
||||
|
||||
' ' Create the file attachment (from the File property) for this e-mail message.
|
||||
|
||||
' If File IsNot Nothing Then
|
||||
|
||||
' Dim tempFileName As String = Oid.ToString()
|
||||
|
||||
' Using fileStream As New FileStream(tempFileName, FileMode.OpenOrCreate)
|
||||
|
||||
' File.SaveToStream(fileStream)
|
||||
|
||||
' fileStream.Position = 0
|
||||
|
||||
' ' Create attachment by using existing fileStream.
|
||||
|
||||
' Dim data As New Attachment(fileStream, System.Net.Mime.MediaTypeNames.Application.Octet)
|
||||
|
||||
' ' Add time stamp information for the file.
|
||||
|
||||
' Dim disposition As System.Net.Mime.ContentDisposition = data.ContentDisposition
|
||||
|
||||
' disposition.FileName = File.FileName
|
||||
|
||||
' disposition.Size = fileStream.Length
|
||||
|
||||
' disposition.CreationDate = System.IO.File.GetCreationTime(tempFileName)
|
||||
|
||||
' disposition.ModificationDate = System.IO.File.GetLastWriteTime(tempFileName)
|
||||
|
||||
' disposition.ReadDate = System.IO.File.GetLastAccessTime(tempFileName)
|
||||
|
||||
' ' Add the attachment to this message.
|
||||
|
||||
' message.Attachments.Add(data)
|
||||
|
||||
' ' Send the message.
|
||||
|
||||
' smtp.Send(message)
|
||||
|
||||
' data.Dispose()
|
||||
|
||||
' ' Delete temp file.
|
||||
|
||||
' If System.IO.File.Exists(tempFileName) Then
|
||||
|
||||
|
||||
' System.IO.File.Delete(tempFileName)
|
||||
|
||||
' End If
|
||||
|
||||
' End Using
|
||||
|
||||
' End If
|
||||
' Catch E As SmtpException
|
||||
|
||||
|
||||
' Return "Mail send failed with message: " + E.Message
|
||||
' End Try
|
||||
|
||||
' Return "Mail was send successfully"
|
||||
|
||||
' End Function
|
||||
|
||||
'End Class
|
||||
'Dim pop3 As POP3class
|
||||
'pop3 = New POP3class()
|
||||
'pop3.DoConnect("your.mail.server", 110, "username", "password")
|
||||
'pop3.GetStat()
|
||||
'' and if we have mail:
|
||||
'Dim msg As MessageClass
|
||||
'msg = New MessageClass()
|
||||
'Dim sMessageTop As String = msg.GetTop(1)
|
||||
''OK, message is well, lets download it.
|
||||
'Dim sAllMessage As String = msg.Retr(1)
|
||||
'msg.GetBody(sAllMessage)
|
||||
|
||||
|
||||
@@ -0,0 +1,461 @@
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
' POP3 - Copyright 2011 © by David Ross Goben.
|
||||
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
'This VB.NET Code was inspired by C# code originally written Randy Charles Morin,
|
||||
'author of KBCafe.com.
|
||||
'
|
||||
' I have optimized the heck out of the code to speed I/O and program execution,
|
||||
' forcing a complete rewrite, I have added MANY language and POP3 enhancements,
|
||||
' cleaned up a lot of clutter, and added Port and SSL support.
|
||||
' Oh! And I include REAL comments.
|
||||
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
Imports System.Net, System.Text
|
||||
'-------------------------------------------------------------------------------
|
||||
' Class Name : POP3
|
||||
' Purpose : POP3 Interface Class
|
||||
'-------------------------------------------------------------------------------
|
||||
Public Class POP3
|
||||
Inherits Sockets.TcpClient 'this class shall inherit all the functionality of a TC/IP Client
|
||||
|
||||
Dim Stream As Sockets.NetworkStream 'non-SSL stream object
|
||||
Dim UsesSSL As Boolean = False 'True if SLL authentication required
|
||||
Dim SslStream As Security.SslStream 'set to SSL stream supporting SSL authentication if UsesSSL is True
|
||||
Dim SslStreamDisposed As Boolean = False 'true if we disposed of SSL Stream object
|
||||
Public LastLineRead As String = vbNullString 'copy of the last response line read from the TCP server
|
||||
|
||||
'*******************************************************************************
|
||||
' Sub Name : Connect (This is the first the we do with a POP3 object)
|
||||
' Purpose : Connect to the server using the Server, User Name, Password,
|
||||
' : and a flag indicating if SSL authentication is required
|
||||
' :
|
||||
' Returns : Nothing
|
||||
' :
|
||||
' Typical TelNet I/O:
|
||||
'telnet mail.domain.net 110 (submit)
|
||||
'+OK POP3 mail.domain.net v2011.83 server ready
|
||||
'USER myusername (submit)
|
||||
'+OK User name accepted, password please
|
||||
'PASS mysecretpassword (submit)
|
||||
'+OK Mailbox open, 3 messages (the server locks and opens the appropriate maildrop)
|
||||
'*******************************************************************************
|
||||
Public Overloads Sub Connect(ByVal Server As String, _
|
||||
ByVal Username As String, _
|
||||
ByVal Password As String, _
|
||||
Optional ByVal InPort As Integer = 110, _
|
||||
Optional ByVal UseSSL As Boolean = False)
|
||||
|
||||
If Connected Then Disconnect() 'check underlying boolean flag to see if we are presently connected, and if so, disconnect that session
|
||||
UsesSSL = UseSSL 'set flag True or False for SSL authentication
|
||||
MyBase.Connect(Server, InPort) 'now connect to the server via our base class
|
||||
Stream = MyBase.GetStream 'before we can check for a response, we first have to set up a non-SSL stream
|
||||
If UsesSSL Then 'do we also need to use SSL authentication?
|
||||
SslStream = _
|
||||
New Security.SslStream(Stream) 'yes, so build an SSL stream object on top of the Network Stream
|
||||
SslStream.AuthenticateAsClient(Server) 'add authentication as a client to the server
|
||||
End If
|
||||
|
||||
If Not CheckResponse() Then Exit Sub 'exit if an error was encountered
|
||||
|
||||
If CBool(Len(Username)) Then 'if the username is defined (some servers will reject submissions)
|
||||
Me.Submit("USER " & Username & vbCrLf) 'submit user name
|
||||
If Not CheckResponse() Then Exit Sub 'exit if an error was encountered
|
||||
End If
|
||||
|
||||
If CBool(Len(Password)) Then 'if the password is defined (some servers will reject submissions)
|
||||
Me.Submit("PASS " & Password & vbCrLf) 'submit password
|
||||
If Not CheckResponse() Then Exit Sub 'exit if an error was encountered
|
||||
End If
|
||||
End Sub
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : CheckResponse
|
||||
' Purpose : Check the response to a POP3 command
|
||||
' :
|
||||
' Returns : Boolean flag. True = Success, False = Failure
|
||||
' :
|
||||
' NOTE : All status responses from the server begin with:
|
||||
' : +OK (OK; Success, or request granted)
|
||||
' or : -ERR (NAGATIVE; error)
|
||||
'*******************************************************************************
|
||||
Public Function CheckResponse() As Boolean
|
||||
If Not IsConnected() Then Return False 'exit if not in TRANSACTION mode
|
||||
LastLineRead = Me.Response 'check response (and save response line)
|
||||
If (Left(LastLineRead, 3) <> "+OK") Then 'OK?
|
||||
Throw New POP3Exception(LastLineRead) 'no, so throw an exception
|
||||
Return False 'return failure flag
|
||||
End If
|
||||
Return True 'else return success flag
|
||||
End Function
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : IsConnected
|
||||
' Purpose : Return connected to Server state, throw error if not
|
||||
' :
|
||||
' Returns : Boolean Flag. True if connected to server
|
||||
' :
|
||||
'*******************************************************************************
|
||||
Public Function IsConnected() As Boolean
|
||||
If Not Connected Then 'if not connected, throw an exception
|
||||
Throw New POP3Exception("Not Connected to an POP3 Server.")
|
||||
Return False 'return failure flag
|
||||
End If
|
||||
Return True 'Indicate that we are in the TRANSACTION state)
|
||||
End Function
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : Response
|
||||
' Purpose : get response from server (read from the mail stream into a buffer)
|
||||
' :
|
||||
' Returns : string of data from the server
|
||||
' :
|
||||
' NOTE : If a dataSize value > 1 is supplied, then those number of bytes will be streamed in.
|
||||
' : Otherwise, the data will be read in a line at a time, and end with the line end code (Linefeed (vbLf) 10 decimal)
|
||||
'*******************************************************************************
|
||||
Public Function Response(Optional ByVal dataSize As Integer = 1) As String
|
||||
Dim enc As New ASCIIEncoding 'medium for ASCII representation of Unicode characters
|
||||
Dim ServerBufr() As Byte 'establish buffer
|
||||
Dim Index As Integer = 0 'init server buffer index and character counter
|
||||
If dataSize > 1 Then 'did invoker specify a data length to read?
|
||||
'-------------------------------------------------------
|
||||
ReDim ServerBufr(dataSize - 1) 'size to dataSize to read as a single stream block (allow for 0 index)
|
||||
Dim dtsz As Integer = dataSize
|
||||
Dim sz As Integer 'variable to store actual number of bytes read from the stream
|
||||
Do While Index < dataSize 'while we have not read the entire message...
|
||||
If UsesSSL Then 'process through SSL Stream if secure stream
|
||||
sz = SslStream.Read(ServerBufr, Index, dtsz) 'read a server-defined block of data from SSLstream
|
||||
Else 'else process through general TCP Stream
|
||||
sz = Stream.Read(ServerBufr, Index, dtsz) 'read a server-defined block of data from Network Stream
|
||||
End If
|
||||
If sz = 0 Then Return vbNullString 'we lost data, so we could not read the string
|
||||
Index += sz 'bump index for data count actually read
|
||||
dtsz -= sz 'drop amount left in buffer
|
||||
Loop
|
||||
Else '------------------------------------------------------
|
||||
ReDim ServerBufr(255) 'initially dimension buffer to 256 bytes (including 0 offset)
|
||||
Do
|
||||
If UsesSSL Then 'process through SSL Stream if secure stream
|
||||
ServerBufr(Index) = CByte(SslStream.ReadByte) 'read a byte from SSLstream
|
||||
Else 'else process through general TCP Stream
|
||||
ServerBufr(Index) = CByte(Stream.ReadByte) 'read a byte from Network stream
|
||||
End If
|
||||
If ServerBufr(Index) = -1 Then Exit Do 'end of stream if -1 encountered
|
||||
Index += 1 'bump our offset index and counter
|
||||
If ServerBufr(Index - 1) = 10 Then Exit Do 'done with line if Newline code (10; Linefeed) read in
|
||||
If Index > UBound(ServerBufr) Then 'if the index points past end of buffer...
|
||||
ReDim Preserve ServerBufr(Index + 255) 'then bump buffer another 256 bytes (Inc Index), but keep existing data
|
||||
End If
|
||||
Loop 'loop until line read in
|
||||
End If
|
||||
Return enc.GetString(ServerBufr, 0, Index) 'decode from a byte array into a string and return the string
|
||||
End Function
|
||||
|
||||
'*******************************************************************************
|
||||
' Sub Name : Submit
|
||||
' Purpose : Submit a request to the server
|
||||
' :
|
||||
' Returns : Nothing
|
||||
' :
|
||||
' NOTE : Command name must be in UPPERCASE, such as "PASS pw1Smorf".
|
||||
' : "pass pw1Smorf" would not be acceptable, though some servers do allow for this.
|
||||
'*******************************************************************************
|
||||
Public Sub Submit(ByVal message As String)
|
||||
Dim enc As New ASCIIEncoding 'medium for ASCII representation of Unicode characters
|
||||
Dim WriteBuffer() As Byte = enc.GetBytes(message) 'converts the submitted string into to a sequence of bytes
|
||||
If UsesSSL Then 'using SSL authentication?
|
||||
SslStream.Write(WriteBuffer, 0, WriteBuffer.Length) 'yes, so write SSL buffer
|
||||
Else
|
||||
Stream.Write(WriteBuffer, 0, WriteBuffer.Length) 'else write to Network buffer
|
||||
End If
|
||||
End Sub
|
||||
|
||||
'*******************************************************************************
|
||||
' Sub Name : Disconnect (This is the last the we do with a POP3 object)
|
||||
' Purpose : Disconnect from the server and have it enter the UPDATE mode
|
||||
' :
|
||||
' Returns : Nothing
|
||||
' :
|
||||
' Typical telNet I/O:
|
||||
'QUIT (submit)
|
||||
'+OK Sayonara
|
||||
'
|
||||
' NOTE: When the client issues the QUIT command from the TRANSACTION state,
|
||||
' the POP3 session enters the UPDATE state. (Note that if the client
|
||||
' issues the QUIT command from the AUTHORIZATION state, the POP3
|
||||
' session terminates but does NOT enter the UPDATE state.)
|
||||
'
|
||||
' If a session terminates for some reason other than a client-issued
|
||||
' QUIT command, the POP3 session does NOT enter the UPDATE state and
|
||||
' MUST NOT remove any messages from the maildrop.
|
||||
'
|
||||
' The POP3 server removes all messages marked as deleted from the
|
||||
' maildrop and replies as to the status of this operation. If there
|
||||
' is an error, such as a resource shortage, encountered while removing
|
||||
' messages, the maildrop may result in having some or none of the
|
||||
' messages marked as deleted be removed. In no case may the server
|
||||
' remove any messages not marked as deleted.
|
||||
'
|
||||
' Whether the removal was successful or not, the server the releases
|
||||
' any exclusive-access lock on the maildrop and closes the TCP connection.
|
||||
'*******************************************************************************
|
||||
Public Sub Disconnect()
|
||||
Me.Submit("QUIT" & vbCrLf) 'submit quit request
|
||||
CheckResponse() 'check response
|
||||
If UsesSSL Then 'SSL authentication used?
|
||||
SslStream.Dispose() 'dispose of created SSL stream object if so
|
||||
SslStreamDisposed = True
|
||||
End If
|
||||
End Sub
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : Statistics
|
||||
' Purpose : Get the number of email messages and the total size as any integer array
|
||||
' :
|
||||
' Returns : 2-selement interger array.
|
||||
' : Element(0) is the number of user email messages on the server
|
||||
' : Element(1) is the total bytes of all messages taken up on the server
|
||||
' :
|
||||
' Typical telNet I/O:
|
||||
'STAT (submit)
|
||||
'+OK 3 16487 (3 records (emails/messages) totaling 16487 bytes (octets))
|
||||
'*******************************************************************************
|
||||
Public Function Statistics() As Integer()
|
||||
If Not IsConnected() Then Return Nothing 'exit if not in TRANSACTION mode
|
||||
Me.Submit("STAT" & vbCrLf) 'submit Statistics request
|
||||
LastLineRead = Me.Response 'check response
|
||||
If (Left(LastLineRead, 3) <> "+OK") Then 'OK?
|
||||
Throw New POP3Exception(LastLineRead) 'no, so throw an exception
|
||||
Return Nothing 'return failure flag
|
||||
End If
|
||||
Dim msgInfo() As String = Split(LastLineRead, " "c) 'separate by spaces, which divide its fields
|
||||
Dim Result(1) As Integer
|
||||
Result(0) = Integer.Parse(msgInfo(1)) 'get the number of emails
|
||||
Result(1) = Integer.Parse(msgInfo(2)) 'get the size of the email messages
|
||||
Return Result
|
||||
End Function
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : List
|
||||
' Purpose : Get the drop listing from the maildrop
|
||||
' :
|
||||
' Returns : Any Arraylist of POP3Message objects
|
||||
' :
|
||||
' Typical telNet I/O:
|
||||
'LIST (submit)
|
||||
'+OK Mailbox scan listing follows
|
||||
'1 2532 (record index and size in bytes)
|
||||
'2 1610
|
||||
'3 12345
|
||||
'. (end of records terminator)
|
||||
'*******************************************************************************
|
||||
Public Function List() As ArrayList
|
||||
If Not IsConnected() Then Return Nothing 'exit if not in TRANSACTION mode
|
||||
|
||||
Me.Submit("LIST" & vbCrLf) 'submit List request
|
||||
If Not CheckResponse() Then Return Nothing 'check for a response, but if an error, return nothing
|
||||
'
|
||||
'get a list of emails waiting on the server for the authenticated user
|
||||
'
|
||||
Dim retval As New ArrayList 'set aside message list storage
|
||||
Do
|
||||
Dim response As String = Me.Response 'check response
|
||||
If (response = "." & vbCrLf) Then 'done with list?
|
||||
Exit Do 'yes
|
||||
End If
|
||||
Dim msg As New POP3Message 'establish a new message
|
||||
Dim msgInfo() As String = Split(response, " "c) 'separate by spaces, which divide its fields
|
||||
msg.MailID = Integer.Parse(msgInfo(0)) 'get the list item number
|
||||
msg.ByteCount = Integer.Parse(msgInfo(1)) 'get the size of the email message
|
||||
msg.Retrieved = False 'indicate its message body is not yet retreived
|
||||
retval.Add(msg) 'add a new entry into the retrieval list
|
||||
Loop
|
||||
Return retval 'return the list
|
||||
End Function
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : GetHeader
|
||||
' Purpose : Grab the email header and optionally a number of lines from the body
|
||||
' :
|
||||
' Returns : Gets the Email header of the selected email. If an integer value is
|
||||
' : provided, that number of body lines will be returned. The returned
|
||||
' : object is the submitted POP3Message.
|
||||
' :
|
||||
' Typical telNet I/O:
|
||||
'TOP 1 0 (submit request for record 1's message header only, 0=no lines of body)
|
||||
'+OK Top of message follows
|
||||
' xxxxx (header for current record is transmitted)
|
||||
'. (end of record terminator)
|
||||
'
|
||||
'TOP 1 10 (submit request for record 1's message header plus 10 lines of body data)
|
||||
'+OK Top of message follows
|
||||
' xxxxx (header for current record is transmitted)
|
||||
' xxxxx (first 10 lines of body)
|
||||
'. (end of record terminator)
|
||||
'*******************************************************************************
|
||||
Public Function GetHeader(ByRef msg As POP3Message, Optional ByVal BodyLines As Integer = 0) As POP3Message
|
||||
If Not IsConnected() Then Return Nothing 'exit if not in TRANSACTION mode
|
||||
Me.Submit("TOP " & msg.MailID.ToString & " " & BodyLines.ToString & vbCrLf)
|
||||
If Not CheckResponse() Then Return Nothing 'check for a response, but if an error, return nothing
|
||||
msg.Message = vbNullString 'erasde current contents of the message
|
||||
'
|
||||
'now process message data by binding the lines into a single string
|
||||
'
|
||||
Do
|
||||
Dim response As String = Me.Response 'grab message line
|
||||
If response = "." & vbCrLf Then 'end of data?
|
||||
Exit Do 'yes, done with the loop if so
|
||||
End If
|
||||
msg.Message &= response 'else build message by appending the new line
|
||||
Loop
|
||||
Return msg 'return new filled Message object
|
||||
End Function
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : Retrieve
|
||||
' Purpose : Retrieve email from POP3 server for the provided POP3Message object
|
||||
' :
|
||||
' Returns : The submitted POP3 Message object with its Message property filled,
|
||||
' : and its ByteCount property properly fitted to the message size.
|
||||
' :
|
||||
' NOTE : Some email servers are set up to automatically delete an email once
|
||||
' : it is retrieved from the server. Outlook, Outlook Express, and
|
||||
' : Windows Mail do this. It is an option under Juno and Gmail. So, if we
|
||||
' : do not submit a POP3 QUIT (the Disconnect() method), but just close
|
||||
' : out the POP3 object, the message(s) will not be deleted.
|
||||
' : Even so, most Windows-based server-processors will add an additional
|
||||
' : CR for each LF, but the reported email size does not account for them.
|
||||
' : So we must retreive more data to account for this.
|
||||
'
|
||||
' Typical telNet I/O:
|
||||
'RETR 1 (submit request to retrive record index 1 (cannot be an index marked for deletion))
|
||||
'+OK 2532 octets (an octet is an fancy term for a 8-bit byte)
|
||||
' xxxx (message header and message are retreived)
|
||||
'. (end of record terminator)
|
||||
'*******************************************************************************
|
||||
Public Function Retrieve(ByRef msg As POP3Message) As POP3Message
|
||||
If Not IsConnected() Then Return Nothing 'exit if not in TRANSACTION mode
|
||||
Me.Submit("RETR " & msg.MailID.ToString & vbCrLf) 'issue request for indicated message number
|
||||
If Not CheckResponse() Then Return Nothing 'check for a response, but if an error, return nothing
|
||||
msg.Message = Me.Response(msg.ByteCount) 'grab message line
|
||||
'the stream reader automatically convers the NewLine code, vbLf, to vbCrLf, so the files is not yet
|
||||
'fully read. For example, a files that was 233 lines will therefore have 233 more characters not
|
||||
'yet read from the files when it has reached its reported data size. So we will scan these in.
|
||||
'But even if this was not the case, the trailing "." & vbCrLf is still pending.
|
||||
Do
|
||||
Dim S As String = Response() 'grab more data
|
||||
If S = "." & vbCrLf Then 'end of data?
|
||||
Exit Do 'If so, then exit app
|
||||
End If
|
||||
msg.Message &= S 'else tack data to end of message
|
||||
Loop 'keep trying
|
||||
msg.ByteCount = Len(msg.Message) 'ensure full size updated
|
||||
Return msg 'return new message object
|
||||
End Function
|
||||
|
||||
'*******************************************************************************
|
||||
' Sub Name : Delete
|
||||
' Purpose : Delete an email
|
||||
' :
|
||||
' Returns : Nothing
|
||||
' :
|
||||
' NOTE : Some email servers are set up to automatically delete an email once
|
||||
' : it is retrieved from the server. Outlook, Outlook Express, and
|
||||
' : Windows Mail do this. It is an option under Juno and Gmail.
|
||||
'
|
||||
' Typical telNet I/O:
|
||||
'DELE 1 (submit request to delete record index 1)
|
||||
'+OK Message deleted
|
||||
'*******************************************************************************
|
||||
Public Sub Delete(ByVal msgHdr As POP3Message)
|
||||
If Not IsConnected() Then Exit Sub 'exit if not in TRANSACTION mode
|
||||
Me.Submit("DELE " & msgHdr.MailID.ToString & vbCrLf) 'submit Delete request
|
||||
CheckResponse() 'check response
|
||||
End Sub
|
||||
|
||||
'*******************************************************************************
|
||||
' Sub Name : Reset
|
||||
' Purpose : Reset any deletion (automatic or manual) of all email from
|
||||
' : the current session.
|
||||
' :
|
||||
' Returns : Nothing
|
||||
' :
|
||||
' Typical telNet I/O:
|
||||
'RSET (submit)
|
||||
'+OK Reset state
|
||||
'*******************************************************************************
|
||||
Public Sub Reset()
|
||||
If Not IsConnected() Then Exit Sub 'exit if not in TRANSACTION mode
|
||||
Me.Submit("RSET" & vbCrLf) 'submit Reset request
|
||||
CheckResponse() 'check response
|
||||
End Sub
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : NOOP (No Operation)
|
||||
' Purpose : Does nothing. Juts gets a position response from the server
|
||||
' :
|
||||
' Returns : Boolean flag. False if disconnected, else True if connected.
|
||||
' :
|
||||
' NOTE : This NO OPERATION command is useful when you have a server that
|
||||
' : automatically disconnects after a certain idle period of activity.
|
||||
' : This command can be issued by a timer that also monitors users
|
||||
' : inactivity, and issues a NOOP to reset the server timer.
|
||||
' :
|
||||
' Typical telNet I/O:
|
||||
'NOOP (submit)
|
||||
'+OK
|
||||
'*******************************************************************************
|
||||
Public Function NOOP() As Boolean
|
||||
If Not IsConnected() Then Return False 'exit if not in TRANSACTION mode
|
||||
Me.Submit("NOOP")
|
||||
Return CheckResponse()
|
||||
End Function
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : Finalize
|
||||
' Purpose : remove SSL Stream object if not removed
|
||||
'*******************************************************************************
|
||||
Protected Overrides Sub Finalize()
|
||||
If Not SslStreamDisposed Then 'SSL Stream object Disposed?
|
||||
SslStream.Dispose() 'no, so do it
|
||||
End If
|
||||
MyBase.Finalize() 'then do normal finalization
|
||||
End Sub
|
||||
End Class
|
||||
|
||||
'+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
'+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
'+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
|
||||
'-------------------------------------------------------------------------------
|
||||
' Class Name : POP3Message
|
||||
' Purpose : POP3 message data
|
||||
'-------------------------------------------------------------------------------
|
||||
Public Class POP3Message
|
||||
Public MailID As Integer = 0 'message number
|
||||
Public ByteCount As Integer = 0 'length of message in bytes
|
||||
Public Retrieved As Boolean = False 'flag indicating if the message has be retrieved
|
||||
Public Message As String = vbNullString 'the text of the message
|
||||
|
||||
Public Overrides Function ToString() As String
|
||||
Return Message
|
||||
End Function
|
||||
End Class
|
||||
|
||||
'+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
'+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
'+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
|
||||
'-------------------------------------------------------------------------------
|
||||
' Class Name : POP3Exception
|
||||
' Purpose : process exception
|
||||
' NOTE : This is a normal exception, but we wrap it to give it an identy
|
||||
' : that can be associated with clsPOP3
|
||||
'-------------------------------------------------------------------------------
|
||||
Public Class POP3Exception
|
||||
Inherits ApplicationException
|
||||
|
||||
Public Sub New(ByVal str As String)
|
||||
MyBase.New(str)
|
||||
End Sub
|
||||
End Class
|
||||
@@ -0,0 +1,233 @@
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
' SMTP - Copyright 2011 © by David Ross Goben.
|
||||
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
Imports System.Net, VB = Microsoft.VisualBasic
|
||||
'-------------------------------------------------------------------------------
|
||||
' Class Name : SMTP
|
||||
' Purpose : SMTP Interface Class
|
||||
'-------------------------------------------------------------------------------
|
||||
Public Class SMTP
|
||||
'*******************************************************************************
|
||||
' Function Name : BrainDeadSimpleEmailSend
|
||||
' Purpose : Send super simple email message (works with most SMTP servers)
|
||||
'===============================================================================
|
||||
'NOTES: strFrom : Full email address of who is sending the email. ie, David Dingus <daviddingus@att.net>
|
||||
' strTo : Full email address of who to send the email to. ie, "Bubba Dingus" <bob.dingus@cox.com>
|
||||
' strSubject: Brief text regarding what the email concerns.
|
||||
' strBody : text that comprises the message body of the email.
|
||||
' smtpHost : This is the email host you are using for sending emails, such
|
||||
' : as "smtp.comcast.net", "authsmtp.juno.com", etc.
|
||||
'*******************************************************************************
|
||||
Public Shared Sub BrainDeadSimpleEmailSend(ByVal strFrom As String, _
|
||||
ByVal strTo As String, _
|
||||
ByVal strSubject As String, _
|
||||
ByVal strBody As String, _
|
||||
ByVal smtpHost As String)
|
||||
Dim smtpEmail As New Mail.SmtpClient(smtpHost) 'create new SMTP client using TCP Port 25
|
||||
smtpEmail.Send(strFrom, strTo, strSubject, strBody) 'send email
|
||||
End Sub
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : QuickiEMail
|
||||
' Purpose : Send a simple email message (but packed with a lot of muscle)
|
||||
'===============================================================================
|
||||
'NOTES: strFrom : Full email address of who is sending the email. ie, David Dingus <daviddingus@att.net>
|
||||
' strTo : Full email address of who to send the email to. ie, "Bubba Dingus" <bob.dingus@cox.com>
|
||||
' strSubject: Brief text regarding what the email concerns.
|
||||
' strBody : text that comprises the message body of the email.
|
||||
' smtpHost : This is the email host you are using for sending emails, such
|
||||
' : as "smtp.gmail.com", "smtp.comcast.net", "authsmtp.juno.com", etc.
|
||||
' smtpPort : TCP Communications Port to use. Most servers default to 25.
|
||||
' usesSLL : If this value is TRUE, then use SSL Authentication protocol for secure communications.
|
||||
' SSLUsername: If usesSLL is True, this is the username to use for creating a credential. Leave blank if the same as strFrom.
|
||||
' SSLPassword: If usesSLL is True, this is the password to use for creating a credential. If this field and SSLUsername
|
||||
' : are blank, then default credentials will be used (only works on local, intranet servers).
|
||||
' SSLDomain : If creating a credential when a specific domain is required, set this parameter, otherwise, leave it blank.
|
||||
'*******************************************************************************
|
||||
Public Shared Function QuickiEMail(ByVal strFrom As String, _
|
||||
ByVal strTo As String, _
|
||||
ByVal strSubject As String, _
|
||||
ByVal strBody As String, _
|
||||
ByVal smtpHost As String, _
|
||||
Optional ByVal smtpPort As Integer = 25, _
|
||||
Optional ByVal usesSSL As Boolean = False, _
|
||||
Optional ByVal SSLUsername As String = vbNullString, _
|
||||
Optional ByVal SSLPassword As String = vbNullString, _
|
||||
Optional ByVal SSLDomain As String = vbNullString) As Boolean
|
||||
Try
|
||||
Dim smtpEmail As New Mail.SmtpClient(smtpHost, smtpPort) 'create new SMTP client
|
||||
smtpEmail.EnableSsl = usesSSL 'true if SSL Authentication required
|
||||
If usesSSL Then 'SSL authentication required?
|
||||
If Len(SSLUsername) = 0 AndAlso Len(SSLPassword) = 0 Then 'if both SSLUsername and SSLPassword are blank...
|
||||
smtpEmail.UseDefaultCredentials = True 'use default credentials
|
||||
Else 'otherwise, we must create a new credential
|
||||
If Not CBool(Len(SSLUsername)) Then 'if SSLUsername is blank, use strFrom
|
||||
smtpEmail.Credentials = New NetworkCredential(strFrom, SSLPassword, SSLDomain)
|
||||
Else
|
||||
smtpEmail.Credentials = New NetworkCredential(SSLUsername, SSLPassword, SSLDomain)
|
||||
End If
|
||||
End If
|
||||
End If
|
||||
smtpEmail.Send(strFrom, strTo, strSubject, strBody) 'send email using text/plain content type and QuotedPrintable encoding
|
||||
Catch e As Exception 'if error, report it
|
||||
MsgBox(e.Message, MsgBoxStyle.OkOnly Or MsgBoxStyle.Exclamation, "Mail Send Error")
|
||||
Return False 'return a failure flag
|
||||
End Try
|
||||
Return True 'if no error, then return a success flag
|
||||
End Function
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : SendEMail
|
||||
' Purpose : Send a more complex email message
|
||||
'===============================================================================
|
||||
'NOTES: strFrom : Full email address of who is sending the email. ie, David Dingus <daviddingus@att.net>
|
||||
' strTo : Full email address of who to send the email to. ie, "Bubba Dingus" <bob.dingus@cox.com>
|
||||
' : If multiple recipients, separate each full email address using a semicolon (;)
|
||||
' strSubject: Brief text regarding what the email concerns.
|
||||
' strBody : text that comprises the message body of the email. May be raw text or HTML code.
|
||||
' IsHTML : True if the strBody data is HTML, or the type of data that would be contained within an HTML Body block.
|
||||
' smtpHost : This is the email host you are using for sending emails, such
|
||||
' : as "smtp.gmail.com", "smtp.comcast.net", "authsmtp.juno.com", etc.
|
||||
' AltView : A System.Net.Mail.AlternateView object, such as Rich Text or HTML.
|
||||
' : If need be, set AltView.ContentType.MediaType and AltView.TransferEncoding to properly format the AlternateView.
|
||||
' : For example: AltView.ContentType.MediaType = Mime.MediaTypeNames.Text.Rtf
|
||||
' : AltView.TransferEncoding = Mime.TransferEncoding.SevenBit
|
||||
' StrCC : Send "carbon copies" of email to this or these recipients.
|
||||
' : If multiple recipients, separate each full email address using a semicolon (;)
|
||||
' strBcc : Blind Carbon Copy. Hide this or these recipients from view by others.
|
||||
' : If multiple recipients, separate each full email address using a semicolon (;)
|
||||
' strAttachments: A single filepath, or a list of filepaths to send to the recipient.
|
||||
' : If multiple attachments, separate each filepath using a semicolon (;) (C:\my data\win32.txt; c:\jokes.rtf)
|
||||
' : The contents of the attachments will be encoded and sent.
|
||||
' : If you wish to send the attachment by specifying content type (MediaType) and content transfer encoding
|
||||
' : (Encoding), then follow the attachment name with the MediaType and optional encoding (default is
|
||||
' : application/octet-stream,Base64) by placing them within parentheses, and separated by a comma. For example:
|
||||
' : C:\My Files\API32.txt (text/plain, SevenBit); C:\telnet.exe (application/octet-stream, Base64)
|
||||
' : Where: The MediaType is determined from the System.Net.Mime.MediaTypeNames class, which
|
||||
' : can specify Application, Image, or Text lists. For example, the above content type,
|
||||
' : "text\plain", was defined by acquiring System.Net.Mime.MediaTypeNames.Text.Plain.
|
||||
' : The second parameter, Encoding, is determined by the following the values specified by the
|
||||
' : System.Net.Mime.TrasperEncoding enumeration:
|
||||
' : QuotedPrintable (acquired by System.Net.Mime.TransferEncoding.QuotedPrintable.ToString)
|
||||
' : Base64 (acquired by System.Net.Mime.TransferEncoding.Base64.ToString)
|
||||
' : SevenBit (acquired by System.Net.Mime.TransferEncoding.SevenBit.ToString)
|
||||
' smtpPort : TCP Communications Port to use. Most servers default to 25.
|
||||
' usesSLL : If this value is TRUE, then use SSL Authentication protocol for secure communications.
|
||||
' SSLUsername: If usesSLL is True, this is the username to use for creating a credential. Leave blank if the same as strFrom.
|
||||
' SSLPassword: If usesSLL is True, this is the password to use for creating a credential. If this field and SSLUsername
|
||||
' : are blank, then default credentials will be used (only works on local, intranet servers).
|
||||
' SSLDomain : If creating a credential when a specific domain is required, set this parameter, otherwise, leave it blank.
|
||||
'*******************************************************************************
|
||||
Public Shared Function SendEMail(ByVal strFrom As String, _
|
||||
ByVal strTo As String, _
|
||||
ByVal strSubject As String, _
|
||||
ByVal strBody As String, _
|
||||
ByVal IsHTML As Boolean, _
|
||||
ByVal smtpHost As String, _
|
||||
Optional ByVal AltView As Mail.AlternateView = Nothing, _
|
||||
Optional ByVal strCC As String = vbNullString, _
|
||||
Optional ByVal strBcc As String = vbNullString, _
|
||||
Optional ByVal strAttachments As String = vbNullString, _
|
||||
Optional ByVal smtpPort As Integer = 25, _
|
||||
Optional ByVal usesSSL As Boolean = False, _
|
||||
Optional ByVal SSLUsername As String = vbNullString, _
|
||||
Optional ByVal SSLPassword As String = vbNullString, _
|
||||
Optional ByVal SSLDomain As String = vbNullString) As Boolean
|
||||
|
||||
Dim Email As New Mail.MailMessage 'create a new mail message
|
||||
With Email
|
||||
.From = New Mail.MailAddress(strFrom) 'add FROM to mail message (must be a Mail Address object)
|
||||
'-------------------------------------------
|
||||
Dim Ary() As String = Split(strTo, ";") 'add TO to mail message (possible list of email addresses; separated each with ";")
|
||||
For Idx As Integer = 0 To UBound(Ary)
|
||||
If Len(Trim(Ary(Idx))) <> 0 Then .To.Add(Trim(Ary(Idx))) 'add each TO recipent (primary recipients)
|
||||
Next
|
||||
'-------------------------------------------
|
||||
.Subject = strSubject 'add SUBJECT text line to mail message
|
||||
'-------------------------------------------
|
||||
.Body = strBody 'add BODY text of email to mail message.
|
||||
.IsBodyHtml = IsHTML 'indicate if the message body is actually HTML text.
|
||||
.IsBodyHtml = True
|
||||
'-------------------------------------------
|
||||
If AltView IsNot Nothing Then 'if an alternate view of plaint text message is defined...
|
||||
.AlternateViews.Add(AltView) 'add the alternate view
|
||||
End If
|
||||
'-------------------------------------------
|
||||
If CBool(Len(strCC)) Then 'add CC (Carbon Copy) email addresses to mail message
|
||||
Ary = Split(strCC, ";") '(possible list of email addresses, separated each with ";")
|
||||
For Idx As Integer = 0 To UBound(Ary)
|
||||
If Len(Trim(Ary(Idx))) <> 0 Then .CC.Add(Trim(Ary(Idx))) 'add each recipent
|
||||
Next
|
||||
End If
|
||||
'-------------------------------------------
|
||||
If CBool(Len(strBcc)) Then 'add Bcc (Blind Carbon Copy) email addresses to mail message
|
||||
Ary = Split(strBcc, ";") '(possible list of email addresses; separated each with ";")
|
||||
For Idx As Integer = 0 To UBound(Ary)
|
||||
If Len(Trim(Ary(Idx))) <> 0 Then .Bcc.Add(Trim(Ary(Idx))) 'add each recipent (hidden recipents)
|
||||
Next
|
||||
End If
|
||||
'-------------------------------------------
|
||||
If CBool(Len(strAttachments)) Then 'add any attachments to mail message
|
||||
Ary = Split(strAttachments, ";") '(possible list of file paths, separated each with ";")
|
||||
For Idx As Integer = 0 To UBound(Ary) 'process each attachment
|
||||
Dim attach As String = Trim(Ary(Idx)) 'get attachment data
|
||||
If Len(attach) <> 0 Then 'if an attachment present...
|
||||
Dim I As Integer = InStr(attach, "(") 'check for formatting instructions
|
||||
If CBool(I) Then 'formatting present?
|
||||
Dim Fmt As String 'yes, so set up format cache
|
||||
Fmt = Mid(attach, I + 1, Len(attach) - I - 1) 'get format data
|
||||
attach = Trim(VB.Left(attach, I - 1)) 'strip format data from the attachment path
|
||||
Dim Atch As New Mail.Attachment(attach) 'create a new attachment
|
||||
Dim fmts() As String = Split(Fmt, ",") 'break formatting up
|
||||
For I = 0 To UBound(fmts) 'process each format specification
|
||||
Fmt = Trim(fmts(I)) 'grab a format instruction
|
||||
If CBool(Len(Fmt)) Then 'data defined?
|
||||
Select Case I 'yes, so determine which type of instruction to process
|
||||
Case 0 'index 0 specified MediaType
|
||||
Atch.ContentType.MediaType = Fmt 'set media type to attachment
|
||||
Case 1 'index 1 specifes Encoding
|
||||
Select Case LCase(Fmt) 'check the encoding types and process accordingly
|
||||
Case "quotedprintable", "quoted-printable"
|
||||
Atch.TransferEncoding = Mime.TransferEncoding.QuotedPrintable
|
||||
Case "sevenbit", "7bit"
|
||||
Atch.TransferEncoding = Mime.TransferEncoding.SevenBit
|
||||
Case Else
|
||||
Atch.TransferEncoding = Mime.TransferEncoding.Base64
|
||||
End Select
|
||||
End Select
|
||||
End If
|
||||
Next
|
||||
.Attachments.Add(Atch) 'add attachment to email
|
||||
Else
|
||||
.Attachments.Add(New Mail.Attachment(attach)) 'add filepath (if no format specified, encoded in effiecient Base64)
|
||||
End If
|
||||
End If
|
||||
Next
|
||||
End If
|
||||
End With
|
||||
'-----------------------------------------------------------------------
|
||||
'now open the email server...
|
||||
Try
|
||||
Dim SmtpEmail As New Mail.SmtpClient(smtpHost, smtpPort) 'create new SMTP client on the SMTP server
|
||||
SmtpEmail.EnableSsl = usesSSL 'true if SSL Authentication required
|
||||
If usesSSL Then 'SSL authentication required?
|
||||
If Len(SSLUsername) = 0 AndAlso Len(SSLPassword) = 0 Then 'if both SSLUsername and SSLPassword are blank...
|
||||
SmtpEmail.UseDefaultCredentials = True 'use default credentials
|
||||
Else 'otherwise, we must create a new credential
|
||||
If Not CBool(Len(SSLUsername)) Then 'if SSLUsername is blank, use strFrom
|
||||
SmtpEmail.Credentials = New NetworkCredential(strFrom, SSLPassword, SSLDomain)
|
||||
Else
|
||||
SmtpEmail.Credentials = New NetworkCredential(SSLUsername, SSLPassword, SSLDomain)
|
||||
End If
|
||||
End If
|
||||
End If
|
||||
SmtpEmail.Send(Email) 'finally, send the email...
|
||||
Catch e As Exception 'if error, report it
|
||||
MsgBox(e.Message, MsgBoxStyle.OkOnly Or MsgBoxStyle.Exclamation, "Mail Error")
|
||||
Return False 'return failure flag
|
||||
End Try
|
||||
Return True 'return success flag
|
||||
End Function
|
||||
End Class
|
||||
@@ -0,0 +1,643 @@
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
' Utilities - Copyright 2011 © by David Ross Goben.
|
||||
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
Imports System.Text, VB = Microsoft.VisualBasic
|
||||
|
||||
Public Class Utilities
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : DecodeBase64ToStr
|
||||
' Purpose : Decode a provided raw email message string that is encoded to Base64.
|
||||
' :
|
||||
' Returns : Decoded String
|
||||
' :
|
||||
' NOTES : note that the lone vbCrLf at the end of lines is filtered out.
|
||||
'*******************************************************************************
|
||||
Public Shared Function DecodeBase64ToStr(ByVal strData As String) As String
|
||||
Return Encoding.UTF8.GetChars(DecodeBase64ToBytes(strData))
|
||||
End Function
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : DecodeBase64ToBytes
|
||||
' Purpose : Decode a provided raw email message string that is encoded to Base64.
|
||||
' :
|
||||
' Returns : Decoded binary Byte Array
|
||||
' :
|
||||
' NOTES : note that the lone vbCrLf at the end of lines is filtered out.
|
||||
'*******************************************************************************
|
||||
'this modification returns a Byte Array of the Base64 encoded source data
|
||||
Public Shared Function DecodeBase64ToBytes(ByVal strData As String) As Byte()
|
||||
Return System.Convert.FromBase64String(strData.Replace(vbCrLf, vbNullString))
|
||||
End Function
|
||||
|
||||
'==========================================================================
|
||||
'==========================================================================
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : DecodeQuotedPrintable
|
||||
' Purpose : Method to clean typical control translations, or all of them.
|
||||
' : This should be invoked for all data coded Quoted-Printable.
|
||||
' :
|
||||
' Returns : Provided a raw message string block, it returns a decoded string.
|
||||
' :
|
||||
' NOTES : Typical cleaning involves changing "=0D" to vbCr, "=0A" to vbLf,
|
||||
' : "=20" to a space, and "=3D" to "=", plus any line wrap
|
||||
' : terminators at the end of lines to vbNullstring.
|
||||
' :
|
||||
' : A StringBuilder object will be used, which will very quickly
|
||||
' : do a replacement of all control code translations using fewer
|
||||
' : resources, and what resources that are used will be instantly
|
||||
' : flushed when the method exits.
|
||||
'*******************************************************************************
|
||||
Public Shared Function DecodeQuotedPrintable(ByVal Message As String, Optional ByVal QuickClean As Boolean = False) As String
|
||||
'set up StringBuilder object with data stripped of any line continuation tags
|
||||
Dim Msg As New StringBuilder(Message.Replace("=" & vbCrLf, vbNullString))
|
||||
|
||||
If QuickClean Then 'perform a quick clean (clean up common basics)
|
||||
Return Msg.Replace("=" & vbCrLf, vbNullString).Replace("=0D", vbCr).Replace("=0A", _
|
||||
vbLf).Replace("=20", " ").Replace("=3D", "=").ToString
|
||||
Else 'perform total cleaning
|
||||
'store 2-character hex values that require a leading "0"
|
||||
Dim HxData As String = "X0102030405060708090A0B0C0D0E0F"
|
||||
For Idx As Integer = 1 To &HF 'initially process codes 1-15, which require a leading zero
|
||||
Msg.Replace("=" & Mid(HxData, Idx << 1, 2), Chr(Idx)) 'replace hex data with single character code (SHIFT is faster)
|
||||
Next
|
||||
For idx As Integer = &H10 To &HFF 'process the whole 8-bit extended ASCII gambit
|
||||
Msg.Replace("=" & Hex(idx), Chr(idx)) 'replace hex data with single character code
|
||||
Next
|
||||
Return Msg.ToString 'return result string
|
||||
End If
|
||||
End Function
|
||||
|
||||
'==========================================================================
|
||||
'==========================================================================
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : DecodeBinHex
|
||||
' Purpose : Decode a provided raw email message string that is encoded to BinHex.
|
||||
' :
|
||||
' Returns : Decoded String
|
||||
' :
|
||||
' NOTES : note that the lone vbCrLf at the end of lines is filtered out.
|
||||
'*******************************************************************************
|
||||
Public Shared Function DecodeBinHex(ByVal StrData As String) As Byte()
|
||||
Dim Src() As Byte = Encoding.UTF8.GetBytes(StrData.Replace(vbCrLf, vbNullString).ToUpper)
|
||||
Dim Result() As Byte 'init output buffer
|
||||
ReDim Result(UBound(Src) \ 2) 'set initial dimension to 1024 bytes (includes offset 0)
|
||||
Dim Index As Integer = 0 'init index for Result() array
|
||||
|
||||
For Idx As Integer = 0 To UBound(Src) Step 2 'scan the string, 2 hex characters at a time
|
||||
Dim CL As Integer = Src(Idx) - 48 'Convert "0" - "F" to 0-F
|
||||
If CL > 10 Then CL -= 7
|
||||
Dim CR As Integer = Src(Idx + 1) - 48 'do the same for the right hex digit
|
||||
If CR > 10 Then CR -= 7
|
||||
If Index > UBound(Result) Then
|
||||
ReDim Preserve Result(Index + 255) 'bump by 256 (allow for Index offset)
|
||||
End If
|
||||
Result(Index) = CByte(CL * 16 + CR) 'stuff byte value
|
||||
Index += 1 'bump index
|
||||
Next
|
||||
ReDim Preserve Result(Index - 1) 'set array to final size
|
||||
Return Result 'return the final result
|
||||
End Function
|
||||
|
||||
'==========================================================================
|
||||
'==========================================================================
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : TextNeedsEncoding
|
||||
' Purpose : Determine if HTML text, Rich Text, or Plain Text requires
|
||||
' : 8-bit code translation to 7-bit Quoted-Printable tags.
|
||||
' :
|
||||
' Returns : Provided a source string, it returns a boolena flag.
|
||||
' : If the returned value is true, the source contains 8-bit data
|
||||
' : and will be encoded by server.
|
||||
' :
|
||||
' NOTES : If text data contains 8-bit values, the default .NET
|
||||
' : SMTP processor will force this code to be encoded to Base64,
|
||||
' : even if only a single byte is 8-bit.
|
||||
' :
|
||||
' : To avoid this, the Force7BitHtml() method can be invoked on
|
||||
' : HTML text to ensure that it is 7-bit encoded so that it can
|
||||
' : be processed as Quoted-Printable or as 7Bit. The ForceQuotedPrintable()
|
||||
' : method performs essential conversions for non-HTML text, but this
|
||||
' : would be best served in Attachments and Alternate Views.
|
||||
'*******************************************************************************
|
||||
Public Shared Function TextNeedsEncoding(ByVal Message As String) As Boolean
|
||||
Dim Byt() As Byte = Encoding.UTF8.GetBytes(Message) 'convert message to byte array
|
||||
For Each B As Byte In Byt
|
||||
If CBool(B And &H80) Then Return True
|
||||
Next
|
||||
Return False
|
||||
End Function
|
||||
|
||||
'==========================================================================
|
||||
'==========================================================================
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : Force7BitHtml
|
||||
' Purpose : Method to convert 8-bit code in an HTML message to 7-bit.
|
||||
' :
|
||||
' Returns : Provided a string containing HTML code, it will return a string
|
||||
' : containing HTML code that does not have any 8-bit data embedded.
|
||||
' :
|
||||
' NOTES : If any characters in an HTML text string are 8-bit (values
|
||||
' : greater than 127), then they are converted into a special
|
||||
' : 7-bit HTML Entity Number, For Example, code 149 (•) is an 8-bit
|
||||
' : value that can be changed to HTML "•", which will ensure
|
||||
' : that it will still be displayed on the HTML page, but the HTML
|
||||
' : souce code will no longer carry an actual 8-bit value. If such
|
||||
' : code had not been corrected, the encoding of the data would be
|
||||
' : forced to change from quoted-printable to Base64, because that
|
||||
' : would be the only way the email processor could guarantee that
|
||||
' : the email text was fully intact.
|
||||
'*******************************************************************************
|
||||
Public Shared Function Force7BitHtml(ByVal HtmlSource As String) As String
|
||||
Dim Sb As New StringBuilder 'set up string builder for appending data
|
||||
For Idx As Integer = 1 To Len(HtmlSource)
|
||||
Dim C As Integer = AscW(Mid(HtmlSource, Idx, 1)) 'get a single character from the source
|
||||
Select Case C 'check each character
|
||||
Case Is > &H7F, Is < 0 'if 8-bit or unicode code
|
||||
Sb.Append("&#" & C.ToString & ";") 'convert to 7-bit HTML ecoder
|
||||
Case Else
|
||||
Sb.Append(ChrW(C)) 'else save text regardless
|
||||
End Select
|
||||
Next
|
||||
Return Sb.ToString
|
||||
End Function
|
||||
|
||||
'==========================================================================
|
||||
'==========================================================================
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : ForceQuotedPrintable
|
||||
' Purpose : Force 8-bit code in a text message to 7-bit, without data loss.
|
||||
' :
|
||||
' Returns : Provided a source string that contains 8-bit data, the 8-bit
|
||||
' : data is converted to Hex-Tags, and the returned string is 7-bit.
|
||||
' :
|
||||
' NOTES : if any characters in a text string are 8-bit (values greater
|
||||
' : than 127), then they are converted into special 7-bit tags.
|
||||
' : For Example, code 149 (•) is an 8-bit value that can be changed
|
||||
' : to hex "=95", which will ensure that it will still be displayed
|
||||
' : in the text, but the text data will no longer carry an actual
|
||||
' : of the data would be forced to change from quoted-printable or 7bit
|
||||
' : to Base64, because that would be the only way the email processor
|
||||
' : Base64, because that would be the only way the email processor
|
||||
' : could guarantee that the email text was fully intact. However,
|
||||
' : you will have to use the DecodeQuotedPrintable() method to convert
|
||||
' : it back to its original text form.
|
||||
' :
|
||||
' : The Encoded text will begin with "=00". Because unencoded null codes
|
||||
' : are not permitted in email data, you can use this to instantly
|
||||
' : determine on the receiving end that this code will need to be
|
||||
' : processed by DecodeQuotedPrintable() a second time (if initially
|
||||
' : encoded as Quoted-Printable). A second pass would be required,
|
||||
' : because if this translated code was afterward encoded as Quoted-
|
||||
' : Printable, and all the "=xx" byte-translations, would be
|
||||
' : reinterpreted as "=3Dxx", which DecodeQuotedPrintable() would
|
||||
' : convert back to "=xx", so passing through a second time would
|
||||
' : properly convert the additional encoding. Further, by checking the
|
||||
' : text startiing with "=00", you would know that you would need to
|
||||
' : double-decode the text. Also, you would want to initially skip this
|
||||
' : initial tag when passing it the second time to DecodeQuotedPrintable():
|
||||
' :
|
||||
' : Dim Result As String = DecodeQuotedPrintable(Message) 'initially decode Quoted-Printable text
|
||||
' : If VB.Left(Result, 3) = "=00" Then 'tagged as pre-encoded?
|
||||
' : Return DecodeQuotedPrintable(Mid(Result, 4)) 'yes, so decode again and return, less initial null byte
|
||||
' : Else
|
||||
' : Return Result 'otherwise, return result of decoding
|
||||
' : End If
|
||||
'*******************************************************************************
|
||||
Public Shared Function ForceQuotedPrintable(ByVal Message As String) As String
|
||||
Dim Byt() As Byte = Encoding.UTF8.GetBytes(Message) 'convert message to byte array
|
||||
Dim Sb As New StringBuilder("=00") 'set up string builder for appending data
|
||||
For Each B As Byte In Byt
|
||||
Select Case B 'check each byte
|
||||
Case Is > &H7F 'if 8-bit code
|
||||
Sb.Append("=" & Hex(B)) 'convert to 7-bit tag
|
||||
Case Else
|
||||
Sb.Append(Chr(B)) 'else save text regardless
|
||||
End Select
|
||||
Next
|
||||
Return Sb.ToString
|
||||
End Function
|
||||
|
||||
'==========================================================================
|
||||
'==========================================================================
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : QConvertHTML2Text
|
||||
' Purpose : Short-Form Convert HTML formatted text to plain text
|
||||
' :
|
||||
' Returns : Provided a simple HTML source string, it will return a Plain Text
|
||||
' : string with HTML code removed.
|
||||
'*******************************************************************************
|
||||
Public Shared Function QConvertHTML2Text(ByVal HTMLText As String) As String
|
||||
Return RegularExpressions.Regex.Replace(HTMLText.Replace(" ", " ").Replace(""", """").Replace("'", _
|
||||
"'"), "<[^>]*>", "").Replace("<", "<").Replace(">", ">").Replace("&", "&").Replace(";;", ";")
|
||||
End Function
|
||||
|
||||
'==========================================================================
|
||||
'==========================================================================
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : ConvertHTML2Text
|
||||
' Purpose : Convert HTML formatted text to plain text
|
||||
' :
|
||||
' Returns : Provided a complex HTML string, it will return a Plain Text string
|
||||
' : with all HTML codes and formatting removed from it.
|
||||
' :
|
||||
' NOTE : Numerous of these conversions will convert the text to 8-bit,
|
||||
' : though most of these sysmbols will not be encountered in most
|
||||
' : HTML documents we produce. But regardless of that, if you wish
|
||||
' : to make this conversion the main body message of an email, you
|
||||
' : may have to further convert this using ForceQuotedPrintable()
|
||||
' : to maintain Quoted-Printable encoding and avoid Base64, even
|
||||
' : though this is typically not an issue. However, some few really
|
||||
' : primitive email readers, typically those that simply allow you
|
||||
' : to preview email messages, without fully loading them, will not
|
||||
' ' know how to support Base64, or will not bother with it, but simply
|
||||
' : display the raw data. RFC 2045 requires email handlers to support it.
|
||||
'*******************************************************************************
|
||||
Public Shared Function ConvertHTML2Text(ByVal HTMLText As String) As String
|
||||
'instantiate an initially blank StringBuilder object
|
||||
Dim Sb As New StringBuilder()
|
||||
|
||||
'first remove leading whitespace of each line and append the result to the StringBuilder
|
||||
Dim ary() As String = Split(HTMLText, vbCrLf)
|
||||
For Each S As String In ary
|
||||
Sb.Append(S.TrimStart(Chr(9), " "c))
|
||||
Next
|
||||
|
||||
'replace reserved entities (except <, >, and &)
|
||||
Sb.Replace(""", """").Replace("'", "'").Replace(" ", " ")
|
||||
|
||||
'replace HTML paragraph, line breaks, and table entry terminators with vbCrLf
|
||||
Sb.Replace("<p>", vbCrLf).Replace("<P>", vbCrLf).Replace("</p>", vbCrLf).Replace("</P>", vbCrLf).Replace("<br>", _
|
||||
vbCrLf).Replace("<BR>", vbCrLf).Replace("</td>", vbCrLf).Replace("</TD>", vbCrLf)
|
||||
|
||||
'replace ISO 8859-1 Symbols (160-255). Note that any matches will make the text 8-bit
|
||||
Sb.Replace("¡", "¡").Replace("¢", "¢").Replace("£", "£").Replace("¤", _
|
||||
"¤").Replace("¥", "¥").Replace("¦", "¦").Replace("§", "§").Replace("¨", _
|
||||
"¨").Replace("©", "©").Replace("ª", "ª").Replace("«", "«").Replace("¬", _
|
||||
"¬").Replace("­", "-").Replace("®", "®").Replace("¯", "¯").Replace("°", _
|
||||
"°").Replace("±", "±").Replace("²", "²").Replace("³", "³").Replace("´", _
|
||||
"´").Replace("µ", "µ").Replace("¶", "¶").Replace("·", "•").Replace("¸", _
|
||||
"¸").Replace("¹", "¹").Replace("º", "º").Replace("»", "»").Replace("¼", _
|
||||
"¼").Replace("½", "½").Replace("¾", "¾").Replace("¿", "¿").Replace("×", _
|
||||
"×").Replace("÷", "÷")
|
||||
|
||||
'replace ISO 8859-1 characters. Note that any matches will make the text 8-bit
|
||||
Sb.Replace("À", "À").Replace("Á", "Á").Replace("Â", "Â").Replace("Ã", "Ã").Replace("Ä", _
|
||||
"Ä").Replace("Å", "Å").Replace("Æ", "Æ").Replace("Ç", "Ç").Replace("È", _
|
||||
"È").Replace("É", "É").Replace("Ê", "Ê").Replace("Ë", "Ë").Replace("Ì", _
|
||||
"Ì").Replace("Í", "Í").Replace("Î", "Î").Replace("Ï", "Ï").Replace("Ð", _
|
||||
"Ð").Replace("Ñ", "Ñ").Replace("Ò", "Ò").Replace("Ó", "Ó").Replace("Ô", _
|
||||
"Ô").Replace("Õ", "Õ").Replace("Ö", "Ö").Replace("Ø", "Ø").Replace("Ù", _
|
||||
"Ù").Replace("Ú", "Ú").Replace("Û", "Û").Replace("Ü", "Ü").Replace("Ý", _
|
||||
"Ý").Replace("Þ", "Þ").Replace("ß", "ß").Replace("à", "à").Replace("á", _
|
||||
"á").Replace("â", "â").Replace("ã", "ã").Replace("ä", "ä").Replace("å", _
|
||||
"å").Replace("æ", "æ").Replace("ç", "ç").Replace("è", "è").Replace("é", _
|
||||
"é").Replace("ê", "ê").Replace("ë", "ë").Replace("ì", "ì").Replace("í", _
|
||||
"í").Replace("î", "î").Replace("ï", "ï").Replace("ð", "ð").Replace("ñ", _
|
||||
"ñ").Replace("ò", "ò").Replace("ó", "ó").Replace("ô", "ô").Replace("õ", _
|
||||
"õ").Replace("ö", "ö").Replace("ø", "ø").Replace("ù", "ù").Replace("ú", _
|
||||
"ú").Replace("û", "û").Replace("ü", "ü").Replace("ý", "ý").Replace("þ", _
|
||||
"þ").Replace("ÿ", "ÿ")
|
||||
|
||||
'replace Math Symbols Supported by HTML. Note that any matches will make the text 8-bit
|
||||
Sb.Replace("∀", "∀").Replace("∂", "∂").Replace("∃", "∃").Replace("∅", "∅").Replace("∇", _
|
||||
"∇").Replace("∈", "∈").Replace("∉", "∉").Replace("∋", "∋").Replace("∏", _
|
||||
"∏").Replace("∑", "∑").Replace("−", "−").Replace("∗", "∗").Replace("√", _
|
||||
"√").Replace("∝", "∝").Replace("∞", "∞").Replace("∠", "∠").Replace("∧", _
|
||||
"∧").Replace("∨", "∨").Replace("∩", "∩").Replace("∪", "∪").Replace("∫", _
|
||||
"∫").Replace("∴", "∴").Replace("∼", "∼").Replace("≅", "≅").Replace("≈", _
|
||||
"≈").Replace("≠", "≠").Replace("≡", "≡").Replace("≤", "≤").Replace("≥", _
|
||||
"≥").Replace("⊂", "⊂").Replace("⊃", "⊃").Replace("⊄", "⊄").Replace("⊆", _
|
||||
"⊆").Replace("⊇", "⊇").Replace("⊕", "⊕").Replace("⊗", "⊗").Replace("⊥", _
|
||||
"⊥").Replace("⋅", "⋅")
|
||||
|
||||
'replace Greek Letters Supported by HTML. Note that any matches will make the text 8-bit
|
||||
Sb.Replace("Α", "Α").Replace("Β", "Β").Replace("Γ", "Γ").Replace("Δ", "Δ").Replace("Ε", _
|
||||
"Ε").Replace("Ζ", "Ζ").Replace("Η", "Η").Replace("Θ", "Θ").Replace("Ι", _
|
||||
"Ι").Replace("Κ", "Κ").Replace("Λ", "Λ").Replace("Μ", "Μ").Replace("Ν", _
|
||||
"Ν").Replace("Ξ", "Ξ").Replace("Ο", "Ο").Replace("Π", "Π").Replace("Ρ", _
|
||||
"Ρ").Replace("Σ", "Σ").Replace("Τ", "Τ").Replace("Υ", "Υ").Replace("Φ", _
|
||||
"Φ").Replace("Χ", "Χ").Replace("Ψ", "Ψ").Replace("Ω", "Ω").Replace("α", _
|
||||
"α").Replace("β", "β").Replace("γ", "γ").Replace("δ", "δ").Replace("ε", _
|
||||
"ε").Replace("ζ", "ζ").Replace("η", "η").Replace("θ", "θ").Replace("ι", _
|
||||
"ι").Replace("κ", "κ").Replace("λ", "λ").Replace("μ", "μ").Replace("ν", _
|
||||
"ν").Replace("ξ", "ξ").Replace("ο", "ο").Replace("π", "π").Replace("ρ", _
|
||||
"ρ").Replace("ς", "ς").Replace("σ", "σ").Replace("τ", "τ").Replace("υ", _
|
||||
"υ").Replace("φ", "φ").Replace("χ", "χ").Replace("ψ", "ψ").Replace("ω", _
|
||||
"ω").Replace("ϑ", "ϑ").Replace("ϒ", "ϒ").Replace("ϖ", "ϖ")
|
||||
|
||||
'replace Other Entities Supported by HTML. Note that any matches will make the text 8-bit
|
||||
Sb.Replace("Œ", "Œ").Replace("œ", "œ").Replace("Š", "Š").Replace("š", "š").Replace("Ÿ", _
|
||||
"Ÿ").Replace("ƒ", "ƒ").Replace("ˆ", "ˆ").Replace("˜", "˜").Replace(" ", _
|
||||
" ").Replace(" ", " ").Replace(" ", " ").Replace("–", "–").Replace("—", _
|
||||
"—").Replace("‘", "‘").Replace("’", "’").Replace("‚", "‚").Replace("“", _
|
||||
" ").Replace("”", " ").Replace("„", "„").Replace("†", "†").Replace("‡", _
|
||||
"‡").Replace("•", "•").Replace("…", "…").Replace("‰", "‰").Replace("′", _
|
||||
"′").Replace("″", "″").Replace("‹", "‹").Replace("›", "›").Replace("‾", _
|
||||
"‾").Replace("€", "€").Replace("™", "™").Replace("←", "←").Replace("↑", _
|
||||
"↑").Replace("→", "→").Replace("↓", "↓").Replace("↔", "↔").Replace("↵", _
|
||||
"↵").Replace("⌈", "⌈").Replace("⌉", "⌉").Replace("⌊", "⌊").Replace("⌋", _
|
||||
"⌋").Replace("◊", "◊").Replace("♠", "♠").Replace("♣", "♣").Replace("♥", _
|
||||
"♥").Replace("♦", "♦")
|
||||
|
||||
'replace special ASCII coding entities that were not captured by the above. Note that values > 127 will make the text 8-bit
|
||||
For Idx As Integer = 1 To 255 'See www.w3schools.com/tags/ref_entities.asp
|
||||
Sb.Replace("&#" & Idx.ToString & ";", Chr(Idx)) 'replace most common numeric entities
|
||||
Next
|
||||
|
||||
'Ensure header definitions are followed by vbCrLf
|
||||
Dim NewText As String = RegularExpressions.Regex.Replace(Sb.ToString(), "</H[^>]*>", vbCrLf)
|
||||
|
||||
'Also seek out other Unicode encoded number entities not covered by the above and individually update them
|
||||
Dim Idy As Integer = InStr(NewText, "&#") 'check for a numeric entity
|
||||
Do While Idy <> 0 'loop as long as we find one
|
||||
Dim Idz As Integer = InStr(Idy, NewText, ";") 'find terminating semicolon
|
||||
Dim S As String = Mid(NewText, Idy, Idz - Idy + 1) 'grab expression
|
||||
RegularExpressions.Regex.Replace(NewText, S, Chr(CInt(Mid(S, 3, Len(S) - 3)))) 'replace expression
|
||||
InStr(Idy + 1, NewText, "&#")
|
||||
Loop
|
||||
|
||||
'strip remaining HTML text tags, replace < and > placeholders, convert ampersand, replace ;; with ;, then return result
|
||||
Return RegularExpressions.Regex.Replace(NewText, "<[^>]*>", "").Replace("<", _
|
||||
"<").Replace(">", ">").Replace("&", "&").Replace(";;", ";")
|
||||
End Function
|
||||
|
||||
'==========================================================================
|
||||
'==========================================================================
|
||||
|
||||
'*******************************************************************************
|
||||
' Enum MediaTypes: Structure used by GetMediaType
|
||||
'*******************************************************************************
|
||||
Public Enum MediaTypes As Integer
|
||||
ApplicationOctet ' 0 = Integer Value
|
||||
ApplicationPdf ' 1
|
||||
ApplicationRtf ' 2
|
||||
ApplicationSoap ' 3
|
||||
ApplicationZip ' 4
|
||||
ImageGif ' 5
|
||||
ImageJpeg ' 6
|
||||
ImageTiff ' 7
|
||||
TextHtml ' 8
|
||||
TextPlain ' 9
|
||||
TextRich '10
|
||||
TextXml '11
|
||||
End Enum
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : GetMediaType
|
||||
' Purpose : Provide easy access to System.Net.Mime.MediaTypes text
|
||||
' :
|
||||
' Returns : provided a MediaTypes enumeration value, a string representing
|
||||
' : the selected type will be returned.
|
||||
'*******************************************************************************
|
||||
Public Shared Function GetMediaType(ByVal MediaType As MediaTypes) As String
|
||||
Select Case MediaType
|
||||
Case MediaTypes.ApplicationPdf
|
||||
Return "application/pdf"
|
||||
Case MediaTypes.ApplicationRtf
|
||||
Return "application/rtf"
|
||||
Case MediaTypes.ApplicationSoap
|
||||
Return "application/soap+xml"
|
||||
Case MediaTypes.ApplicationZip
|
||||
Return "application/zip"
|
||||
Case MediaTypes.ImageGif
|
||||
Return "image/gif"
|
||||
Case MediaTypes.ImageJpeg
|
||||
Return "image/jpeg"
|
||||
Case MediaTypes.ImageTiff
|
||||
Return "image/tiff"
|
||||
Case MediaTypes.TextHtml
|
||||
Return "text/html"
|
||||
Case MediaTypes.TextPlain
|
||||
Return "text/plain"
|
||||
Case MediaTypes.TextRich
|
||||
Return "text/richtext"
|
||||
Case MediaTypes.TextXml
|
||||
Return "text/xml"
|
||||
Case Else
|
||||
Return "application/octet-stream"
|
||||
End Select
|
||||
End Function
|
||||
|
||||
'==========================================================================
|
||||
'==========================================================================
|
||||
|
||||
'*******************************************************************************
|
||||
' Enum TransferEncodings: Structure used by GetTransferEncoding
|
||||
'*******************************************************************************
|
||||
Public Enum TransferEncodings As Integer
|
||||
QuotedPrintable ' 0 = Integer value
|
||||
Base64 ' 1
|
||||
SevenBit ' 2
|
||||
End Enum
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : GetTransferEncoding
|
||||
' Purpose : Provide easy access to System.Net.Mime.TransferEncoding data
|
||||
' :
|
||||
' Returns : Provided a TransferEncodings value, a TransferEncoding value
|
||||
' : is returned.
|
||||
'*******************************************************************************
|
||||
Public Shared Function GetTransferEncoding(ByVal TransferEncoding As TransferEncodings) As System.Net.Mime.TransferEncoding
|
||||
Return DirectCast(TransferEncoding, System.Net.Mime.TransferEncoding)
|
||||
End Function
|
||||
|
||||
'==========================================================================
|
||||
'==========================================================================
|
||||
|
||||
'*******************************************************************************
|
||||
' Function Name : GetEmailInfo
|
||||
' Purpose : Break email down into its component parts.
|
||||
' :
|
||||
' Returns : EmailInfo object with component parts of email broken down.
|
||||
' :
|
||||
' NOTES : This method uses classes EmailItems and EmailInfo.
|
||||
' : The Message Body, and each AlternnateView or Attachment are
|
||||
' : contained within EmailItem objects within the EmailIngo object.
|
||||
' :
|
||||
' : An EmailItem contains fields for FROM, TO, SUBJECT, Content-Type,
|
||||
' : a flag indicating if the ContentTypeData is a filename or if it is
|
||||
' : text formatting, content-transfer-encoding data, and the raw encoded,
|
||||
' : data, whether it is a message or binary information. If the content-
|
||||
' : transfer encoding is set to "base64", the data should be decoded
|
||||
' : using the DecodeBase64() method. If it is "quoted-printable", the
|
||||
' : data should be decoded using DecodeQuotedPrintable(). If it is
|
||||
' : "7bit", it is 7-bit data and does not need to be decoded.
|
||||
'*******************************************************************************
|
||||
Public Shared Function GetEmailInfo(ByVal MailMessage As String) As EmailInfo
|
||||
Dim Info As New EmailInfo 'structure to hold breakdown of email
|
||||
Dim Ary() As String = Split(MailMessage, vbCrLf) 'break full email into lines
|
||||
Dim Idx As Integer = 0 'index into Ary()
|
||||
Dim MX As Integer = UBound(Ary) + 1 'find end if list+1
|
||||
Dim Boundaries As New Collections.Generic.List(Of String) 'boundary definitions
|
||||
|
||||
Dim IsMultiPart As Boolean = False 'true if we have multiple parts
|
||||
Dim SeekingEncoding As Boolean = False 'true if we are looking for encoding
|
||||
Dim BuildingDataBlock As Boolean = False 'true if we are building a data block
|
||||
Dim HaveMessageBody As Boolean = False 'true if we have the message body defined
|
||||
|
||||
Dim ContentType As String = vbNullString 'hold last-defined Content Type
|
||||
Dim ContentTypeIsName As Boolean = False 'true of Content Type specified a file
|
||||
Dim ContentTypeData As String = vbNullString 'if block isan attachment
|
||||
Dim ContentEncoding As String = vbNullString 'hold last-defined Content Transfer Encoding
|
||||
Dim ContentBody As String = vbNullString 'block data accumulator
|
||||
'-----------------------------------------------------------
|
||||
Dim Inheader As Integer = 4 'flag for gathering To, From, Date, Subject
|
||||
Do
|
||||
Dim S As String = Ary(Idx) 'grab a line of data from the email
|
||||
'
|
||||
' check for important header items
|
||||
'
|
||||
If CBool(Len(S)) AndAlso CBool(Inheader) Then 'if we are currently in the header...
|
||||
Dim I As Integer = InStr(S, ":") 'find field delimiter
|
||||
If CBool(I) Then 'found one?
|
||||
If VB.Right(S, 1) = ";" Then 'line continues?
|
||||
Idx += 1 'yes, so bump index
|
||||
S &= Ary(Idx).Trim(Chr(9), " "c) 'append next line next line
|
||||
End If
|
||||
Select Case LCase(VB.Left(S, I)) 'yes, check for one of 4 fields
|
||||
Case "from:" 'Found FROM field
|
||||
Info.FromData = Trim(Mid(S, I + 1)) 'stuff to structure
|
||||
Inheader -= 1 'drop 1 from flag
|
||||
Case "to:" 'Found TO field
|
||||
Info.ToData = Trim(Mid(S, I + 1)) 'stuff to structure
|
||||
Inheader -= 1 'drop 1 from flag
|
||||
Case "date:" 'Found DATE field
|
||||
Info.DateData = Trim(Mid(S, I + 1)) 'stuff to structure
|
||||
Inheader -= 1 'drop 1 from flag
|
||||
Case "subject:" 'Found SUBJECT field
|
||||
Info.SubjectData = Trim(Mid(S, I + 1)) 'stuff to structure
|
||||
Inheader -= 1 'drop 1 from flag
|
||||
End Select
|
||||
End If
|
||||
If Not CBool(Inheader) Then 'if InHeader flag is zero
|
||||
SeekingEncoding = True 'start looking for a Content-Transfer-Encoding field
|
||||
S = vbNullString 'purge current data
|
||||
End If
|
||||
End If
|
||||
'-------------------------------------------------------
|
||||
' check for boundaries
|
||||
'-------------------------------------------------------
|
||||
If CBool(Len(S)) AndAlso CBool(Boundaries.Count) Then 'check any defined boundaries
|
||||
For Idy As Integer = 0 To Boundaries.Count - 1
|
||||
If CBool(InStr(S, Boundaries.Item(Idy), CompareMethod.Text)) Then
|
||||
If BuildingDataBlock Then
|
||||
Dim Itm As New EmailItem 'create a new item
|
||||
Itm.ContentType = ContentType 'store content type
|
||||
Itm.ContentTypeData = ContentTypeData 'save filename or character set
|
||||
Itm.ContentTypeDataIsFilename = ContentTypeIsName 'save flag indicating if Attachment
|
||||
Itm.ContentEncoding = ContentEncoding 'store encoding
|
||||
Itm.ContentBody = ContentBody 'store data
|
||||
ContentBody = vbNullString 'reset accumulator
|
||||
If HaveMessageBody Then 'already have a message body?
|
||||
If ContentTypeIsName Then 'if an attachment
|
||||
Info.Attachments.Add(Itm) 'add an attachment
|
||||
Else 'otherwise an alternate view
|
||||
Info.AlternateViews.Add(Itm)
|
||||
End If
|
||||
Else
|
||||
Info.MessageBody = Itm 'else stuff new item to message body
|
||||
HaveMessageBody = True 'indicate we now have a message body
|
||||
End If
|
||||
ContentTypeData = vbNullString 'reset filename/charset
|
||||
BuildingDataBlock = False 'turn off building flag
|
||||
End If
|
||||
SeekingEncoding = True 'turn block seeing on again
|
||||
S = vbNullString 'purge current data
|
||||
Exit For
|
||||
End If
|
||||
Next
|
||||
End If
|
||||
'-------------------------------------------------------
|
||||
' build data block
|
||||
'-------------------------------------------------------
|
||||
If BuildingDataBlock Then
|
||||
ContentBody &= S & vbCrLf 'add a line to content data
|
||||
End If
|
||||
'-------------------------------------------------------
|
||||
' if seeking encoding
|
||||
'-------------------------------------------------------
|
||||
If CBool(Len(S)) AndAlso SeekingEncoding Then 'are we seeking TCE?
|
||||
Dim I As Integer = InStr(S, ":") 'yes, check for field delimiter
|
||||
If CBool(I) Then 'did we find one?
|
||||
Select Case LCase(VB.Left(S, I)) 'yes, check for types
|
||||
'=======================================================
|
||||
Case "content-type:" 'Content type?
|
||||
ContentType = Mid(S, I + 1).Trim(Chr(9), " "c) 'yes, so grab data
|
||||
If VB.Right(S, 1) = ";" Then 'more to add?
|
||||
Idx += 1 'yes, so bump index
|
||||
ContentType &= Ary(Idx).Trim(Chr(9), " "c) 'grab next line
|
||||
End If
|
||||
ContentTypeIsName = False 'init flag specifying a file as false
|
||||
Dim sbAry() As String = Split(ContentType, ";") 'now check the content type data
|
||||
ContentType = sbAry(0) 'keep first part for ContentType
|
||||
If StrComp(VB.Left(sbAry(0), 10), "multipart/", CompareMethod.Text) = 0 Then
|
||||
'multipart, so grab second parameter (boundary definition), and strip any quotes
|
||||
Dim Bnd As String = Trim(Mid(sbAry(1), InStr(sbAry(1), "=") + 1)).Replace("""", vbNullString)
|
||||
Boundaries.Add(Bnd) 'and add a boundary
|
||||
ElseIf StrComp(VB.Left(sbAry(1), 5), "name=", CompareMethod.Text) = 0 Then
|
||||
ContentTypeIsName = True 'attachment if a filename specified (otherwise a view)
|
||||
sbAry = Split(sbAry(1), "=") 'multipart, so grab second parameter
|
||||
'get second part of second parameter (filename definition)
|
||||
ContentTypeData = sbAry(1).Trim().Replace("""", vbNullString) 'strip any quotes
|
||||
Else
|
||||
ContentTypeData = sbAry(1) 'AlternateView, so stuff display character set
|
||||
End If
|
||||
'===================================================
|
||||
Case "content-transfer-encoding:"
|
||||
ContentEncoding = Mid(S, I + 1).Trim(Chr(9), " "c) 'yes, so grab data
|
||||
SeekingEncoding = False 'turn off seeking flag
|
||||
BuildingDataBlock = True 'turn on building data block flag
|
||||
Idx += 1 'bump to skip required following blank line
|
||||
End Select
|
||||
End If
|
||||
End If
|
||||
Idx += 1 'bump array index
|
||||
Loop While Idx < MX
|
||||
'-----------------------------------------------------------
|
||||
Return Info 'return with filled data block
|
||||
End Function
|
||||
End Class
|
||||
|
||||
'+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
'+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
'+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
|
||||
'*******************************************************************************
|
||||
' Class Name : EmailItem (used by EmailInfo class)
|
||||
' Purpose : Stores structure of an email block
|
||||
'*******************************************************************************
|
||||
Public Class EmailItem
|
||||
Public ContentType As String = vbNullString 'CONTENT-TYPE data
|
||||
Public ContentTypeData As String = vbNullString 'filename or text encoding
|
||||
Public ContentTypeDataIsFilename As Boolean = False 'True if ContentTypeData specifies a filename
|
||||
Public ContentEncoding As String = vbNullString 'CONTENT-TRANSFER-ENCODING data
|
||||
Public ContentBody As String = vbNullString 'raw data of block
|
||||
End Class
|
||||
|
||||
'+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
'+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
'+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
|
||||
'*******************************************************************************
|
||||
' Class Name : EmailInfo (used by GetEmailInfo method)
|
||||
' Purpose : Store component parts of an Email
|
||||
'*******************************************************************************
|
||||
Public Class EmailInfo
|
||||
Public FromData As String = vbNullString 'FROM:
|
||||
Public ToData As String = vbNullString 'TO:
|
||||
Public DateData As String = vbNullString 'DATE:
|
||||
Public SubjectData As String = vbNullString 'SUBJECT:
|
||||
Public MessageBody As EmailItem 'contents of message body
|
||||
Public AlternateViews As New Collections.Generic.List(Of EmailItem) 'list of alternate views
|
||||
Public Attachments As New Collections.Generic.List(Of EmailItem) 'list of attachments
|
||||
End Class
|
||||
Binary file not shown.
@@ -0,0 +1,29 @@
|
||||
/* To prevent any potential data loss issues, you should review this script in detail before running it outside the context of the database designer.*/
|
||||
BEGIN TRANSACTION
|
||||
SET QUOTED_IDENTIFIER ON
|
||||
SET ARITHABORT ON
|
||||
SET NUMERIC_ROUNDABORT OFF
|
||||
SET CONCAT_NULL_YIELDS_NULL ON
|
||||
SET ANSI_NULLS ON
|
||||
SET ANSI_PADDING ON
|
||||
SET ANSI_WARNINGS ON
|
||||
COMMIT
|
||||
BEGIN TRANSACTION
|
||||
GO
|
||||
ALTER TABLE dbo.RegistryRowsFinancialControlling
|
||||
DROP CONSTRAINT FK_RegistryRowsFinancialControlling_ReInvoiceReason
|
||||
GO
|
||||
ALTER TABLE dbo.ReInvoiceReason SET (LOCK_ESCALATION = TABLE)
|
||||
GO
|
||||
COMMIT
|
||||
BEGIN TRANSACTION
|
||||
GO
|
||||
DROP INDEX iReInvoiceReason_RegistryRowsFinancialControlling ON dbo.RegistryRowsFinancialControlling
|
||||
GO
|
||||
ALTER TABLE dbo.RegistryRowsFinancialControlling
|
||||
DROP COLUMN ReInvoiceReason
|
||||
GO
|
||||
ALTER TABLE dbo.RegistryRowsFinancialControlling SET (LOCK_ESCALATION = TABLE)
|
||||
GO
|
||||
COMMIT
|
||||
|
||||
@@ -0,0 +1,117 @@
|
||||
Imports System
|
||||
Imports System.ComponentModel
|
||||
|
||||
Imports DevExpress.Xpo
|
||||
Imports DevExpress.Data.Filtering
|
||||
|
||||
Imports DevExpress.ExpressApp
|
||||
Imports DevExpress.Persistent.Base
|
||||
Imports DevExpress.Persistent.BaseImpl
|
||||
Imports DevExpress.Persistent.Validation
|
||||
Imports Newtonsoft.Json
|
||||
Public Enum eChatDirection
|
||||
eIn = 0
|
||||
eOut = 1
|
||||
End Enum
|
||||
<DefaultClassOptions(), NavigationItem(False), CreatableItem(False), NonPersistent()> _
|
||||
Public Class SISChat
|
||||
Inherits BaseObject
|
||||
|
||||
Private _User As User
|
||||
Private _HTMLBody As String
|
||||
Private _HTMLEvents As String
|
||||
Public Sub New(ByVal session As Session)
|
||||
MyBase.New(session)
|
||||
' This constructor is used when an object is loaded from a persistent storage.
|
||||
' Do not place any code here or place it only when the IsLoading property is false:
|
||||
' if (!IsLoading){
|
||||
' It is now OK to place your initialization code here.
|
||||
' }
|
||||
' or as an alternative, move your initialization code into the AfterConstruction method.
|
||||
End Sub
|
||||
Public Overrides Sub AfterConstruction()
|
||||
MyBase.AfterConstruction()
|
||||
' Place here your initialization code.
|
||||
End Sub
|
||||
|
||||
Property User As User
|
||||
Get
|
||||
Return _User
|
||||
End Get
|
||||
Set(value As User)
|
||||
SetPropertyValue("User", _User, value)
|
||||
End Set
|
||||
End Property
|
||||
<Size(-1), ImmediatePostData()> _
|
||||
Property HTMLBody As String
|
||||
Get
|
||||
Return _HTMLBody
|
||||
End Get
|
||||
Set(value As String)
|
||||
SetPropertyValue("HTMLBody", _HTMLBody, value)
|
||||
End Set
|
||||
End Property
|
||||
<Size(-1)> _
|
||||
Property HTMLEvents As String
|
||||
Get
|
||||
Return _HTMLEvents
|
||||
End Get
|
||||
Set(value As String)
|
||||
SetPropertyValue("HTMLEvents", _HTMLEvents, value)
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Public Function CreateCompressedChat(_InputString As String) As String
|
||||
Dim mem As New IO.MemoryStream
|
||||
Dim gz As New System.IO.Compression.GZipStream(mem, IO.Compression.CompressionMode.Compress)
|
||||
Dim sw As New IO.StreamWriter(gz)
|
||||
Dim _OutputString As String = ""
|
||||
sw.Write(_InputString)
|
||||
sw.Flush()
|
||||
mem.Seek(0, IO.SeekOrigin.Begin)
|
||||
Dim sr As New IO.BinaryReader(mem)
|
||||
|
||||
Dim _Bytes As Byte()
|
||||
Dim _Byte As Byte
|
||||
_Bytes = sr.ReadBytes(CInt(mem.Length))
|
||||
|
||||
For Each _Byte In _Bytes
|
||||
_OutputString += Chr(_Byte)
|
||||
Next
|
||||
|
||||
sw.Close()
|
||||
Return _OutputString
|
||||
End Function
|
||||
Function CreateJSONSerialize(_InputString As String, _ChatDirection As eChatDirection) As String
|
||||
Dim _JSON As String = ""
|
||||
Dim _JSNOChat As New JSONChat
|
||||
|
||||
_JSNOChat.ChatDirection = _ChatDirection
|
||||
_JSNOChat.EMail = _User.Email
|
||||
_JSNOChat.HTMLBody = _InputString
|
||||
_JSNOChat.IsReaded = False
|
||||
_JSON = JsonConvert.SerializeObject(_JSNOChat)
|
||||
|
||||
Return _JSON
|
||||
End Function
|
||||
Function GetLastChat() As String
|
||||
Dim _JSON As String = ""
|
||||
Dim _JSNOChat As New JSONChat
|
||||
|
||||
_JSNOChat.ChatDirection = eChatDirection.eOut
|
||||
_JSNOChat.EMail = _User.Email
|
||||
_JSNOChat.HTMLBody = "*"
|
||||
_JSON = JsonConvert.SerializeObject(_JSNOChat)
|
||||
|
||||
Return _JSON
|
||||
End Function
|
||||
Function CreateHTMLEvents(_JSON As String) As String
|
||||
Return "Ready"
|
||||
End Function
|
||||
End Class
|
||||
Public Class JSONChat
|
||||
Property ChatDirection As eChatDirection
|
||||
Property EMail As String
|
||||
Property HTMLBody As String
|
||||
Property IsReaded As Boolean
|
||||
End Class
|
||||
@@ -0,0 +1,69 @@
|
||||
Partial Class SISChatVC
|
||||
|
||||
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||
Public Sub New(ByVal Container As System.ComponentModel.IContainer)
|
||||
MyClass.New()
|
||||
|
||||
'Required for Windows.Forms Class Composition Designer support
|
||||
Container.Add(Me)
|
||||
|
||||
End Sub
|
||||
|
||||
'Component overrides dispose to clean up the component list.
|
||||
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||
If disposing AndAlso components IsNot Nothing Then
|
||||
components.Dispose()
|
||||
End If
|
||||
MyBase.Dispose(disposing)
|
||||
End Sub
|
||||
|
||||
'Required by the Component Designer
|
||||
Private components As System.ComponentModel.IContainer
|
||||
|
||||
'NOTE: The following procedure is required by the Component Designer
|
||||
'It can be modified using the Component Designer.
|
||||
'Do not modify it using the code editor.
|
||||
<System.Diagnostics.DebuggerStepThrough()> _
|
||||
Private Sub InitializeComponent()
|
||||
Me.components = New System.ComponentModel.Container()
|
||||
Me.aSISChatSubmit = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.aSISChat = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
'
|
||||
'aSISChatSubmit
|
||||
'
|
||||
Me.aSISChatSubmit.ActionMeaning = DevExpress.ExpressApp.Actions.ActionMeaning.Accept
|
||||
Me.aSISChatSubmit.Caption = "aSISChat Submit"
|
||||
Me.aSISChatSubmit.Category = "aSISChatSubmit"
|
||||
Me.aSISChatSubmit.ConfirmationMessage = Nothing
|
||||
Me.aSISChatSubmit.Id = "aSISChatSubmit"
|
||||
Me.aSISChatSubmit.ImageName = Nothing
|
||||
Me.aSISChatSubmit.Shortcut = Nothing
|
||||
Me.aSISChatSubmit.Tag = Nothing
|
||||
Me.aSISChatSubmit.TargetObjectsCriteria = Nothing
|
||||
Me.aSISChatSubmit.TargetObjectType = GetType(Nuvolar.[Module].SISChat)
|
||||
Me.aSISChatSubmit.TargetViewId = Nothing
|
||||
Me.aSISChatSubmit.TargetViewType = DevExpress.ExpressApp.ViewType.DetailView
|
||||
Me.aSISChatSubmit.ToolTip = Nothing
|
||||
Me.aSISChatSubmit.TypeOfView = GetType(DevExpress.ExpressApp.DetailView)
|
||||
'
|
||||
'aSISChat
|
||||
'
|
||||
Me.aSISChat.Caption = "aSISChat"
|
||||
Me.aSISChat.Category = "Menu"
|
||||
Me.aSISChat.ConfirmationMessage = Nothing
|
||||
Me.aSISChat.Id = "aSISChat"
|
||||
Me.aSISChat.ImageName = Nothing
|
||||
Me.aSISChat.Shortcut = Nothing
|
||||
Me.aSISChat.Tag = Nothing
|
||||
Me.aSISChat.TargetObjectsCriteria = Nothing
|
||||
Me.aSISChat.TargetViewId = Nothing
|
||||
Me.aSISChat.TargetViewType = DevExpress.ExpressApp.ViewType.ListView
|
||||
Me.aSISChat.ToolTip = Nothing
|
||||
Me.aSISChat.TypeOfView = GetType(DevExpress.ExpressApp.ListView)
|
||||
|
||||
End Sub
|
||||
Protected WithEvents aSISChatSubmit As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents aSISChat As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
|
||||
End Class
|
||||
@@ -0,0 +1,129 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="aSISChatSubmit.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>116, 17</value>
|
||||
</metadata>
|
||||
<metadata name="aSISChat.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>254, 17</value>
|
||||
</metadata>
|
||||
<metadata name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
</root>
|
||||
@@ -0,0 +1,110 @@
|
||||
Imports System
|
||||
Imports System.ComponentModel
|
||||
Imports System.Collections.Generic
|
||||
Imports System.Diagnostics
|
||||
Imports System.Text
|
||||
|
||||
Imports DevExpress.ExpressApp
|
||||
Imports DevExpress.ExpressApp.Actions
|
||||
Imports DevExpress.Persistent.Base
|
||||
|
||||
Imports DevExpress.ExpressApp.SystemModule
|
||||
Imports DevExpress.Persistent.BaseImpl
|
||||
Imports DevExpress.Data.Filtering
|
||||
|
||||
Imports System.Net
|
||||
Imports System.IO
|
||||
|
||||
Public Class SISChatVC
|
||||
Inherits DevExpress.ExpressApp.ViewController
|
||||
#If DEBUG Then
|
||||
Private _SISChatURL As String = "http://192.168.1.102/SISChat/SISChat.ashx?id="
|
||||
#Else
|
||||
Private _SISChatURL As String = "http://sis-r.hu/SISChat/SISChat.ashx?id="
|
||||
#End If
|
||||
|
||||
Public Event MyAutoscroll(sender As Object, e As EventArgs)
|
||||
|
||||
Public Sub New()
|
||||
MyBase.New()
|
||||
|
||||
'This call is required by the Component Designer.
|
||||
InitializeComponent()
|
||||
RegisterActions(components)
|
||||
|
||||
End Sub
|
||||
Protected Overrides Sub OnActivated()
|
||||
MyBase.OnActivated()
|
||||
|
||||
If View.Id = "SISChat_DetailView" Then
|
||||
'Frame.GetController(Of DialogController).AcceptAction.Active.SetItemValue("", False)
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Protected Overrides Sub OnDeactivated()
|
||||
MyBase.OnDeactivated()
|
||||
If View.Id = "SISChat_DetailView" Then
|
||||
'Frame.GetController(Of DialogController).AcceptAction.Active.SetItemValue("", False)
|
||||
End If
|
||||
End Sub
|
||||
Private Sub aSISChatSubmit_Execute(sender As System.Object, e As DevExpress.ExpressApp.Actions.SimpleActionExecuteEventArgs) Handles aSISChatSubmit.Execute
|
||||
Dim _ocur As Xpo.XPObjectSpace = TryCast(View.ObjectSpace, Xpo.XPObjectSpace)
|
||||
Dim _SISChat As SISChat = TryCast(View.SelectedObjects(0), SISChat)
|
||||
Dim _JSON As String
|
||||
|
||||
|
||||
_JSON = _SISChat.CreateJSONSerialize(_SISChat.HTMLBody, eChatDirection.eIn)
|
||||
_SISChat.HTMLBody = ""
|
||||
View.Refresh()
|
||||
|
||||
Try
|
||||
Dim URL As String = _SISChatURL & _JSON
|
||||
Dim request As HttpWebRequest = TryCast(WebRequest.Create(URL), HttpWebRequest)
|
||||
|
||||
Dim response As HttpWebResponse = TryCast(request.GetResponse, HttpWebResponse)
|
||||
|
||||
Dim reader As StreamReader = New StreamReader(response.GetResponseStream())
|
||||
Dim str As String = reader.ReadToEnd
|
||||
|
||||
_SISChat.HTMLEvents = str
|
||||
RaiseEvent MyAutoscroll(sender, TryCast(e, System.EventArgs))
|
||||
Catch exp As Exception
|
||||
_SISChat.HTMLEvents = exp.Message
|
||||
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
Private Sub aSISChat_Execute(sender As System.Object, e As DevExpress.ExpressApp.Actions.SimpleActionExecuteEventArgs) Handles aSISChat.Execute
|
||||
Dim _onew As Xpo.XPObjectSpace = Application.CreateObjectSpace
|
||||
Dim _SISChat As SISChat
|
||||
Dim _JSON As String
|
||||
|
||||
_SISChat = _onew.CreateObject(Of SISChat)()
|
||||
_SISChat.User = _onew.FindObject(Of User)(CriteriaOperator.Parse("Oid=?", SecuritySystem.CurrentUser.oid))
|
||||
|
||||
_JSON = _SISChat.GetLastChat
|
||||
Try
|
||||
Dim URL As String = _SISChatURL & _JSON
|
||||
Dim request As HttpWebRequest = TryCast(WebRequest.Create(URL), HttpWebRequest)
|
||||
|
||||
Dim response As HttpWebResponse = TryCast(request.GetResponse, HttpWebResponse)
|
||||
|
||||
Dim reader As StreamReader = New StreamReader(response.GetResponseStream())
|
||||
Dim str As String = reader.ReadToEnd
|
||||
|
||||
_SISChat.HTMLEvents = str
|
||||
Catch exp As Exception
|
||||
_SISChat.HTMLEvents = exp.Message
|
||||
|
||||
End Try
|
||||
|
||||
|
||||
Dim _ShowViewParameters As New ShowViewParameters
|
||||
Dim _ShowViewSource As New ShowViewSource(Frame, Nothing)
|
||||
|
||||
_ShowViewParameters.CreatedView = Application.CreateDetailView(_onew, "SISChat_DetailView", False, _SISChat)
|
||||
_ShowViewParameters.NewWindowTarget = NewWindowTarget.Separate
|
||||
_ShowViewParameters.TargetWindow = TargetWindow.NewWindow
|
||||
Application.ShowViewStrategy.ShowView(_ShowViewParameters, _ShowViewSource)
|
||||
End Sub
|
||||
End Class
|
||||
@@ -0,0 +1,210 @@
|
||||
|
||||
/****** Object: View [dbo].[vv_GLAccountRowsforBookEntry] Script Date: 05/18/2012 09:18:32 ******/
|
||||
SET ANSI_NULLS ON
|
||||
GO
|
||||
|
||||
SET QUOTED_IDENTIFIER ON
|
||||
GO
|
||||
|
||||
|
||||
|
||||
|
||||
CREATE VIEW [dbo].[vv_GLAccountRowsforBookEntry]
|
||||
AS
|
||||
SELECT 1 PartnerType,
|
||||
0 GLRowsTypeVAT,
|
||||
t1.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t2.Customers Customers,
|
||||
t2.F_DateExecution DateExecution,
|
||||
t2.DocumentNumber DocumentNumber,
|
||||
t2.RegistryNumber RegistryNumber,
|
||||
CASE WHEN isnull(t1.IsReinvoice,0)=0 THEN t8.ChartOfAccounts
|
||||
ELSE t8.ChartOfAccounts2
|
||||
END DebitChartOfAccounts,
|
||||
t9.ChartOfAccountsIn CreditChartOfAccounts,
|
||||
t1.Controlling Controlling,
|
||||
t1.JobNumberObjects JobNumberObjects,
|
||||
t7.UniqueObjects UniqueObjects,
|
||||
t1.CostPlace CostPlace,
|
||||
t1.CostHolder CostHolder,
|
||||
t2.F_CurrencyRate CurrencyRate,
|
||||
t1.Amount AmountHUF,
|
||||
CASE WHEN t2.F_CurrencyRate<>0 and t6.ShortName<>'HUF' THEN ROUND(t1.Amount/t2.F_CurrencyRate,2) ELSE 0 END AmountDEV,
|
||||
t2.ShortName Note1,
|
||||
'' Note2,
|
||||
NULL VAT,
|
||||
t1.ChartofAccounts ChartOfAccounts2,
|
||||
isnull(t1.IsReinvoice,0) IsReinvoice,
|
||||
t1.ContractRows ContractRows,
|
||||
isnull(t1.F_ReadyforBookEntryRows,0) ReadyforBookEntryRows,
|
||||
t2.Oid RegistryHeader,
|
||||
Null InvoiceHeader,
|
||||
t2.CurrentWorkflowSystemSteps WorkflowSystemSteps,
|
||||
t1.WorkflowMessage WorkflowMessage
|
||||
from RegistryRowsFinancialControlling t1 join RegistryHeader t2 on
|
||||
t1.RegistryHeader=t2.Oid LEFT JOIN Controlling t3 ON
|
||||
t1.Controlling=t3.Oid LEFT JOIN Customers t4 ON
|
||||
t2.Customers=t4.Oid LEFT JOIN CustomersGLParameters t5 ON
|
||||
t4.CustomersGLParameters=t5.Oid LEFT JOIN CurrencyName t6 ON
|
||||
t2.F_CurrencyName=t6.Oid LEFT JOIN ContractRows t7 ON
|
||||
t1.ContractRows=t7.Oid left join ControllingYear t8 on
|
||||
t3.Oid=t8.Controlling and Year(t2.F_DateExecution)=t8.AccountYear left join CustomersGLParametersYear t9 on
|
||||
t5.Oid=t9.CustomersGLParameters and Year(t2.F_DateExecution)=t9.AccountYear
|
||||
WHERE t1.GCRecord IS NULL AND
|
||||
isnull(t2.IsEditable,0)=0 AND
|
||||
t2.F_GLAccounts IS NULL AND
|
||||
isnull(t1.F_ReadyforBookEntryRows,0)=0
|
||||
|
||||
UNION ALL
|
||||
|
||||
SELECT 1 PartnerType,
|
||||
1 GLRowsTypeVAT,
|
||||
t1.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t2.Customers Customers,
|
||||
isnull(isnull(t1.DateVAT,t2.F_DateVAT),t2.F_DateExecution) DateExecution,
|
||||
t2.DocumentNumber DocumentNumber,
|
||||
t2.RegistryNumber RegistryNumber,
|
||||
t7.ChartOfAccountsIn DebitChartOfAccounts,
|
||||
case when ISNULL(t3.InversState,0)=1 then t7.ChartOfAccountsOut
|
||||
else t9.ChartOfAccountsIn end CreditChartOfAccounts,
|
||||
NULL Controlling,
|
||||
NULL JobNumberObjects,
|
||||
NULL UniqueObjects,
|
||||
NULL CostPlace,
|
||||
NULL CostHolder,
|
||||
1 CurrencyRate,
|
||||
CASE WHEN t1.VAT IS NULL THEN 0
|
||||
WHEN t1.VAT IS NOT NULL THEN
|
||||
case when t3.InversState=0 then ROUND(t1.BruttoAmount/(1+t3.KeyValue)*t3.KeyValue,0)
|
||||
else ROUND(t1.BruttoAmount/(1+t3.InversKeyValue)*t3.InversKeyValue,0) end
|
||||
END AmountHUF,
|
||||
0 AmountDEV,
|
||||
t2.ShortName Note1,
|
||||
'' Note2,
|
||||
t1.VAT VAT,
|
||||
NULL ChartOfAccounts2,
|
||||
0 IsReinvoice,
|
||||
NULL ContractRows,
|
||||
isnull(t1.F_ReadyforBookEntryRows,0) ReadyforBookEntryRows,
|
||||
t2.Oid RegistryHeader,
|
||||
NULL InvoiceHeader,
|
||||
t2.CurrentWorkflowSystemSteps WorkflowSystemSteps,
|
||||
'' WorkflowMessage
|
||||
from RegistryRowsFinancial t1 join RegistryHeader t2 on
|
||||
t1.RegistryHeader=t2.Oid LEFT JOIN VAT t3 ON
|
||||
t1.VAT=t3.oid LEFT JOIN Customers t4 ON
|
||||
t2.Customers=t4.Oid LEFT JOIN CustomersGLParameters t5 ON
|
||||
t4.CustomersGLParameters=t5.Oid LEFT JOIN CurrencyName t6 ON
|
||||
t2.F_CurrencyName=t6.Oid left join VATYear t7 on
|
||||
t3.Oid=t7.VAT and Year(t2.F_DateExecution)=t7.AccountYear left join CustomersGLParametersYear t9 on
|
||||
t5.Oid=t9.CustomersGLParameters and Year(t2.F_DateExecution)=t9.AccountYear
|
||||
WHERE t1.GCRecord IS NULL AND
|
||||
isnull(t2.IsEditable,0)=0 AND
|
||||
t2.F_GLAccounts IS NULL AND
|
||||
isnull(t1.F_ReadyforBookEntryRows,0)=0
|
||||
|
||||
UNION ALL
|
||||
|
||||
SELECT 0 PartnerType,
|
||||
0 GLRowsTypeVAT,
|
||||
t1.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t2.Customers Customers,
|
||||
t2.DateExecution DateExecution,
|
||||
t2.DocumentNumber DocumentNumber,
|
||||
'' RegistryNumber,
|
||||
t11.ChartOfAccountsOut DebitChartOfAccounts,
|
||||
isnull(t12.ChartOfAccounts,t10.ChartOfAccounts) CreditChartOfAccounts,
|
||||
isnull(t8.Controlling,t1.Controlling) Controlling,
|
||||
isnull(t8.JobNumberObjects,t1.JobNumberObjects) JobNumberObjects,
|
||||
isnull(t8.UniqueObjects,t1.UniqueObjects) UniqueObjects,
|
||||
isnull(t8.CostPlace,t1.CostPlace) CostPlace,
|
||||
isnull(t8.CostHolder,t1.CostHolder) CostHolder,
|
||||
t2.CurrencyRate CurrencyRate,
|
||||
(t1.ListPriceHUF-t1.DiscountPriceHUF)*t1.QTT AmountHUF,
|
||||
(t1.ListPriceDEV-t1.DiscountPriceDEV)*t1.QTT AmountDEV,
|
||||
t2.Description Note1,
|
||||
'' Note2,
|
||||
NULL VAT,
|
||||
t1.ChartofAccounts ChartOfAccounts2,
|
||||
0 IsReinvoice,
|
||||
t1.ContractRows ContractRows,
|
||||
isnull(t1.ReadyforBookEntryRows,0) ReadyforBookEntryRows,
|
||||
NULL RegistryHeader,
|
||||
t2.Oid InvoiceHeader,
|
||||
t1.WorkflowSystemSteps WorkflowSystemSteps,
|
||||
'' WorkflowMessage
|
||||
FROM InvoiceRows t1 JOIN InvoiceHeader t2 ON
|
||||
t1.InvoiceHeader=t2.Oid LEFT JOIN Controlling t3 ON
|
||||
t1.Controlling=t3.Oid LEFT JOIN Customers t4 ON
|
||||
t2.Customers=t4.Oid LEFT JOIN CustomersGLParameters t5 ON
|
||||
t4.CustomersGLParameters=t5.Oid LEFT JOIN CurrencyName t6 ON
|
||||
t2.CurrencyName=t6.Oid LEFT JOIN InvoiceType t7 ON
|
||||
t2.InvoiceType=t7.Oid LEFT JOIN ContractRows t8 ON
|
||||
t1.ContractRows=t8.Oid LEFT JOIN Controlling t9 ON
|
||||
t8.Controlling=t9.Oid left join ControllingYear t10 on
|
||||
t3.Oid=t10.Controlling and Year(t2.DateExecution)=t10.AccountYear left join CustomersGLParametersYear t11 on
|
||||
t5.Oid=t11.CustomersGLParameters and Year(t2.DateExecution)=t11.AccountYear left join ControllingYear t12 on
|
||||
t9.Oid=t12.Controlling and Year(t2.DateExecution)=t12.AccountYear
|
||||
WHERE t1.GCRecord IS NULL AND
|
||||
isnull(t2.IsEditable,0)=0 AND
|
||||
t2.GLAccounts IS NULL AND
|
||||
isnull(t1.ReadyforBookEntryRows,0)=0 AND
|
||||
t7.InvoiceTypeBase in (1,2,3) and
|
||||
isnull(t2.IsProforma,0)=0
|
||||
|
||||
UNION ALL
|
||||
|
||||
SELECT 0 PartnerType,
|
||||
1 GLRowsTypeVAT,
|
||||
t1.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t2.Customers Customers,
|
||||
t2.DateExecution DateExecution,
|
||||
t2.DocumentNumber DocumentNumber,
|
||||
'' RegistryNumber,
|
||||
t9.ChartOfAccountsOut DebitChartOfAccounts,
|
||||
t7.ChartOfAccountsOut CreditChartOfAccounts,
|
||||
NULL Controlling,
|
||||
NULL JobNumberObjects,
|
||||
NULL UniqueObjects,
|
||||
NULL CostPlace,
|
||||
NULL CostHolder,
|
||||
1 CurrencyRate,
|
||||
t1.AmountVATHUF AmountHUF,
|
||||
t1.AmountVATDEV AmountDEV,
|
||||
t2.Description Note1,
|
||||
'' Note2,
|
||||
t1.VAT VAT,
|
||||
NULL ChartOfAccounts2,
|
||||
0 IsReinvoice,
|
||||
NULL ContractRows,
|
||||
isnull(t1.ReadyforBookEntryRows,0) ReadyforBookEntryRows,
|
||||
NULL RegistryHeader,
|
||||
t2.Oid InvoiceHeader,
|
||||
Null WorkflowSystemSteps,
|
||||
'' WorkflowMessage
|
||||
from InvoiceVATRows t1 join InvoiceHeader t2 on
|
||||
t1.InvoiceHeader=t2.Oid LEFT JOIN VAT t3 ON
|
||||
t1.VAT=t3.oid LEFT JOIN Customers t4 ON
|
||||
t2.Customers=t4.Oid LEFT JOIN CustomersGLParameters t5 ON
|
||||
t4.CustomersGLParameters=t5.Oid LEFT JOIN CurrencyName t6 ON
|
||||
t2.CurrencyName=t6.Oid LEFT JOIN InvoiceType t10 ON
|
||||
t2.InvoiceType=t10.Oid left join VATYear t7 on
|
||||
t3.Oid=t7.VAT and Year(t2.DateExecution)=t7.AccountYear left join CustomersGLParametersYear t9 on
|
||||
t5.Oid=t9.CustomersGLParameters and Year(t2.DateExecution)=t9.AccountYear
|
||||
WHERE t1.GCRecord IS NULL AND
|
||||
isnull(t2.IsEditable,0)=0 AND
|
||||
t2.GLAccounts IS NULL AND
|
||||
isnull(t1.ReadyforBookEntryRows,0)=0 AND
|
||||
isnull(t2.IsProforma,0)=0 AND
|
||||
t10.InvoiceTypeBase in (1,2,3) --and
|
||||
--t2.GLAccounts is null
|
||||
|
||||
|
||||
|
||||
|
||||
GO
|
||||
|
||||
+101
@@ -0,0 +1,101 @@
|
||||
|
||||
/****** Object: View [dbo].[vv_PartnerConnectionInfoAccount] Script Date: 05/18/2012 09:18:46 ******/
|
||||
SET ANSI_NULLS ON
|
||||
GO
|
||||
|
||||
SET QUOTED_IDENTIFIER ON
|
||||
GO
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
CREATE view [dbo].[vv_PartnerConnectionInfoAccount]
|
||||
as
|
||||
select '01-Account' MainType,
|
||||
t2.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t1.Customer Customers,
|
||||
t1.PartnerType PartnerType,
|
||||
t4.ConnectInfo ConnectInfo,
|
||||
t2.CurrencyName CurrencyName,
|
||||
sum(t1.AmountHUF) BallanceHUF,
|
||||
sum(t1.AmountDEV) BallanceDEV,
|
||||
t3.ShortName Currency,
|
||||
t2.DatePayment DatePayment,
|
||||
t2.DateCreated DateCreated,
|
||||
t2.DateExecution DateExecution,
|
||||
t2.CurrencyRate CurrencyRate,
|
||||
t2.DocumentNumber DocumentNumber,
|
||||
max(t2.RegistryNumber) RegistryNumber
|
||||
from GLRows t1 join GLHeader t2 on
|
||||
t1.GLHeader=t2.Oid left join CurrencyName t3 on
|
||||
t2.CurrencyName=t3.Oid left join GlAccounts t4 on
|
||||
t1.GLHeader=t4.Oid
|
||||
where t2.GCRecord is null and
|
||||
t2.GLDocumentType=1 and
|
||||
isnull(t2.IsEditable,0)=0 and
|
||||
t1.PartnerType in (0,1) and
|
||||
t1.GCRecord is null
|
||||
group by t2.Oid,t2.CustomersFrom,t1.Customer,t1.PartnerType,
|
||||
t4.ConnectInfo,t2.DocumentNumber,t2.CurrencyName,t3.ShortName,t2.DateExecution,t2.DatePayment,
|
||||
t2.DateCreated,t2.DateExecution,t2.CurrencyRate
|
||||
|
||||
union all
|
||||
|
||||
select '01-Account' MainType,
|
||||
t1.Oid Oid,
|
||||
t1.CustomersFrom CustomersFrom,
|
||||
t1.Customers Customers,
|
||||
0 PartnerType,
|
||||
t1.ConnectInfo ConnectInfo,
|
||||
t1.CurrencyName CurrencyName,
|
||||
t1.TotalBruttoHUF BallanceHUF,
|
||||
t1.TotalBruttoDEV BallanceDEV,
|
||||
t3.ShortName Currency,
|
||||
t1.DatePayment DatePayment,
|
||||
t1.DateCreated DateCreated,
|
||||
t1.DateExecution DateExecution,
|
||||
t1.CurrencyRate CurrencyRate,
|
||||
t1.DocumentNumber DocumentNumber,
|
||||
t1.DocumentNumber RegistryNumber
|
||||
from InvoiceHeader t1 left join CurrencyName t3 on
|
||||
t1.CurrencyName=t3.Oid
|
||||
where t1.GLAccounts is null and
|
||||
t1.IsEditable=0 and
|
||||
t1.GCRecord is null
|
||||
|
||||
union all
|
||||
|
||||
select '01-Account' MainType,
|
||||
t1.Oid Oid,
|
||||
t1.CustomersFrom CustomersFrom,
|
||||
t1.Customers Customers,
|
||||
1 PartnerType,
|
||||
t1.F_ConnectInfo ConnectInfo,
|
||||
t1.F_CurrencyName CurrencyName,
|
||||
t1.F_AmountBruttoHUF BallanceHUF,
|
||||
t1.F_AmountBruttoDEV BallanceDEV,
|
||||
t3.ShortName Currency,
|
||||
t1.F_DatePayment DatePayment,
|
||||
t1.F_DateCreated DateCreated,
|
||||
t1.F_DateExecution DateExecution,
|
||||
t1.F_CurrencyRate CurrencyRate,
|
||||
t1.DocumentNumber DocumentNumber,
|
||||
t1.RegistryNumber RegistryNumber
|
||||
from RegistryHeader t1 left join RegistryType t2 on
|
||||
t1.RegistryType=t2.Oid left join CurrencyName t3 on
|
||||
t1.F_CurrencyName=t3.Oid
|
||||
where t1.GCRecord is null and
|
||||
t1.F_GLAccounts is null and
|
||||
t1.IsEditable=0 and
|
||||
t1.IsStorno=0 and
|
||||
t2.RegistryMainType=0 and
|
||||
t1.RegistryAcceptState=0
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
GO
|
||||
|
||||
@@ -0,0 +1,45 @@
|
||||
USE [SISTEST]
|
||||
GO
|
||||
|
||||
/****** Object: View [dbo].[vv_PartnerConnectionInfoAged] Script Date: 05/18/2012 09:19:05 ******/
|
||||
SET ANSI_NULLS ON
|
||||
GO
|
||||
|
||||
SET QUOTED_IDENTIFIER ON
|
||||
GO
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
CREATE view [dbo].[vv_PartnerConnectionInfoAged]
|
||||
as
|
||||
select t1.Oid Oid,
|
||||
t1.CustomersFrom CustomersFrom,
|
||||
t1.Customers Customers,
|
||||
t1.PartnerType PartnerType,
|
||||
t1.ConnectInfo ConnectInfo,
|
||||
t2.DocumentNumber DocumentNumber,
|
||||
t2.RegistryNumber RegistryNumber,
|
||||
t1.DateExecution DateExecution,
|
||||
t1.DatePayment_Account DatePayment,
|
||||
t1.CurrencyName_Account CurrencyName_Account,
|
||||
t1.AmountHUF_Account AmountHUF,
|
||||
t1.AmountDEV_Account AmountDEV,
|
||||
t1.BallanceHUF BallanceHUF,
|
||||
t1.BallanceDEV BallanceDEV,
|
||||
t1.InvoiceHeader InvoiceHeader
|
||||
from PCIDetail t1 join
|
||||
vv_PartnerConnectionInfoAccount t2 on
|
||||
t1.CustomersFrom=t2.CustomersFrom and
|
||||
t1.Customers=t2.Customers and
|
||||
t1.PartnerType=t2.PartnerType and
|
||||
t1.ConnectInfo=t2.ConnectInfo
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
GO
|
||||
|
||||
+53
@@ -0,0 +1,53 @@
|
||||
USE [SISTEST]
|
||||
GO
|
||||
|
||||
/****** Object: View [dbo].[vv_PartnerConnectionInfoConnect] Script Date: 05/18/2012 09:19:21 ******/
|
||||
SET ANSI_NULLS ON
|
||||
GO
|
||||
|
||||
SET QUOTED_IDENTIFIER ON
|
||||
GO
|
||||
|
||||
|
||||
|
||||
|
||||
CREATE view [dbo].[vv_PartnerConnectionInfoConnect]
|
||||
as
|
||||
select
|
||||
t1.MainType MainType,
|
||||
t1.Oid Oid,
|
||||
t1.CustomersFrom CustomersFrom,
|
||||
t1.Customers Customers,
|
||||
t1.PartnerType PartnerType,
|
||||
t1.ConnectInfo ConnectInfo,
|
||||
t1.CurrencyName CurrencyName,
|
||||
t1.DebitTotalHUF DebitTotalHUF,
|
||||
t1.CreditTotalHUF CreditTotalHUF,
|
||||
t1.DebitTotalDEV DebitTotalDEV,
|
||||
t1.CreditTotalDEV CreditTotalDEV,
|
||||
t1.BallanceHUF BallanceHUF,
|
||||
t1.BallanceDEV BallanceDEV,
|
||||
t1.ShortName ShortName,
|
||||
t1.Description Description,
|
||||
t1.DateExecution DateExecution,
|
||||
t1.DateCreated DateCreated,
|
||||
t1.DatePayment DatePayment,
|
||||
t1.DelayedDay DelayedDay,
|
||||
t1.DelayedRange DelayedRange,
|
||||
t1.CurrencyName_Account CurrencyName_Account,
|
||||
t1.AmountHUF_Account AmountHUF_Account,
|
||||
t1.AmountDEV_Account AmountDEV_Account,
|
||||
t1.DateExecution_Account DateExecution_Account,
|
||||
t2.BallanceState BallanceState,
|
||||
t2.BallanceRateDiff BallanceRateDiff
|
||||
from vv_PartnerConnectionInfoDetail t1
|
||||
join vv_PartnerConnectionInfoDetailGroup t2 on
|
||||
t1.CustomersFrom=t2.CustomersFrom and
|
||||
t1.Customers=t2.Customers and
|
||||
t1.PartnerType=t2.PartnerType and
|
||||
t1.ConnectInfo=t2.ConnectInfo
|
||||
|
||||
|
||||
|
||||
GO
|
||||
|
||||
+432
@@ -0,0 +1,432 @@
|
||||
USE [SISTEST]
|
||||
GO
|
||||
|
||||
/****** Object: View [dbo].[vv_PartnerConnectionInfoDetail] Script Date: 05/18/2012 09:19:35 ******/
|
||||
SET ANSI_NULLS ON
|
||||
GO
|
||||
|
||||
SET QUOTED_IDENTIFIER ON
|
||||
GO
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
CREATE view [dbo].[vv_PartnerConnectionInfoDetail]
|
||||
as
|
||||
select '01-Account' MainType,
|
||||
t2.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t1.Customer Customers,
|
||||
t1.PartnerType PartnerType,
|
||||
t1.ConnectInfo ConnectInfo,
|
||||
t2.CurrencyName CurrencyName,
|
||||
max(t3.AmountHUFBrutto) DebitTotalHUF,
|
||||
0 CreditTotalHUF,
|
||||
max(t3.AmountDEVBrutto) DebitTotalDEV,
|
||||
0 CreditTotalDEV,
|
||||
max(t3.AmountHUFBrutto) BallanceHUF,
|
||||
max(t3.AmountDEVBrutto) BallanceDEV,
|
||||
'' ShortName,
|
||||
'' Description,
|
||||
t2.DateExecution DateExecution,
|
||||
t2.DateCreated DateCreated,
|
||||
t2.DatePayment DatePayment,
|
||||
DATEDIFF(d,t2.DatePayment,getdate()) DelayedDay,
|
||||
case when DATEDIFF(d,t2.DatePayment,getdate())<=0 then 0
|
||||
when DATEDIFF(d,t2.DatePayment,getdate())>0 and DATEDIFF(d,t2.DatePayment,getdate())<=15 then 1
|
||||
when DATEDIFF(d,t2.DatePayment,getdate())>15 and DATEDIFF(d,t2.DatePayment,getdate())<=30 then 2
|
||||
when DATEDIFF(d,t2.DatePayment,getdate())>30 and DATEDIFF(d,t2.DatePayment,getdate())<=60 then 3
|
||||
when DATEDIFF(d,t2.DatePayment,getdate())>60 and DATEDIFF(d,t2.DatePayment,getdate())<=90 then 4
|
||||
when DATEDIFF(d,t2.DatePayment,getdate())>90 and DATEDIFF(d,t2.DatePayment,getdate())<=180 then 5
|
||||
when DATEDIFF(d,t2.DatePayment,getdate())>180 and DATEDIFF(d,t2.DatePayment,getdate())<=360 then 6
|
||||
when DATEDIFF(d,t2.DatePayment,getdate())>360 then 7
|
||||
end DelayedRange,
|
||||
t2.CurrencyName CurrencyName_Account,
|
||||
sum(t1.AmountHUF) AmountHUF_Account,
|
||||
sum(t1.AmountDEV) AmountDEV_Account,
|
||||
t2.DateExecution DateExecution_Account
|
||||
from GLRows t1 join GLHeader t2 on
|
||||
t1.GLHeader=t2.Oid join GLAccounts t3 on
|
||||
t1.GLHeader=t3.Oid
|
||||
where t2.GCRecord is null and
|
||||
t2.GLDocumentType=1 and
|
||||
t2.IsEditable=0 and
|
||||
t1.PartnerType in (0,1) and
|
||||
t1.GCRecord is null
|
||||
group by t2.Oid,t2.CustomersFrom,t1.Customer,t1.PartnerType,
|
||||
t1.ConnectInfo,t2.CurrencyName,t2.DateExecution,t2.DateCreated,t2.DatePayment
|
||||
|
||||
union all
|
||||
|
||||
select '02-Bank' MainType,
|
||||
t1.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t1.Customer Customers,
|
||||
t1.PartnerType PartnerType,
|
||||
t1.ConnectInfo ConnectInfo,
|
||||
t3.CurrencyName CurrencyName,
|
||||
0 DebitTotalHUF,
|
||||
case when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)*-1
|
||||
end CreditTotalHUF,
|
||||
0 DebitTotalDEV,
|
||||
case when t1.PartnerType=0 and sum(t1.InAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)*-1
|
||||
when t1.PartnerType=0 and sum(t1.InAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)*-1
|
||||
end CreditTotalDEV,
|
||||
(case when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 then sum(t1.AmountHUF)*-1
|
||||
end)*-1 BallanceHUF,
|
||||
(case when t1.PartnerType=0 and sum(t1.InAmountDEV)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.InAmountDEV)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.OutAmountDEV)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.OutAmountDEV)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.InAmountDEV)*-1
|
||||
when t1.PartnerType=0 and sum(t1.InAmountDEV2)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF' then sum(t1.InAmountDEV2)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV2)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF' then sum(t1.OutAmountDEV2)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV2)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF' then sum(t1.OutAmountDEV2)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV2)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF'then sum(t1.InAmountDEV2)*-1
|
||||
else 0
|
||||
end)*-1 BallanceDEV,
|
||||
max(t3.ShortName+', '+isnull(t2.DocumentNumber,'')) ShortName,
|
||||
'' Description,
|
||||
t2.DateExecution DateExecution,
|
||||
t2.DateExecution DateCreated,
|
||||
t4.DatePayment DatePayment,
|
||||
0 DelayedDay,
|
||||
'' DelayedRange,
|
||||
t4.CurrencyName CurrencyName_Account,
|
||||
0 AmountHUF_Account,
|
||||
0 AmountDEV_Account,
|
||||
max(t4.DateExecution) DateExecution_Account
|
||||
from GLRows t1
|
||||
join GLHeader t2 on t1.GLHeader=t2.Oid
|
||||
left join GLBank t5 on t2.Oid=t5.Oid
|
||||
left join LiquidAssets t3 on t5.LiquidAssets_Main=t3.Oid
|
||||
left join vv_PartnerConnectionInfoAccount t4 on t2.CustomersFrom=t4.CustomersFrom
|
||||
and t1.Customer=t4.Customers and t1.PartnerType=t4.PartnerType and t1.ConnectInfo=t4.ConnectInfo
|
||||
where t2.GCRecord is null and
|
||||
t2.GLDocumentType=2 and
|
||||
t1.PartnerType in (0,1) and
|
||||
t1.GCRecord is null
|
||||
group by t1.Oid,t2.CustomersFrom,t1.Customer,t1.PartnerType,
|
||||
t1.ConnectInfo,t3.CurrencyName,t4.Currency,t2.DateExecution,t4.DatePayment,t4.CurrencyName
|
||||
|
||||
union all
|
||||
|
||||
select '03-Cassa' MainType,
|
||||
t1.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t1.Customer Customers,
|
||||
t1.PartnerType PartnerType,
|
||||
t1.ConnectInfo ConnectInfo,
|
||||
t3.CurrencyName CurrencyName,
|
||||
0 DebitTotalHUF,
|
||||
case when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)*-1
|
||||
end CreditTotalHUF,
|
||||
0 DebitTotalDEV,
|
||||
case when t1.PartnerType=0 and sum(t1.InAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)*-1
|
||||
when t1.PartnerType=0 and sum(t1.InAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)*-1
|
||||
end CreditTotalDEV,
|
||||
(case when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 then sum(t1.AmountHUF)*-1
|
||||
end)*-1 BallanceHUF,
|
||||
(case when t1.PartnerType=0 and sum(t1.InAmountDEV)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)*-1
|
||||
when t1.PartnerType=0 and sum(t1.InAmountDEV2)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF' then sum(t1.InAmountDEV2)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV2)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF' then sum(t1.OutAmountDEV2)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV2)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF' then sum(t1.OutAmountDEV2)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV2)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF'then sum(t1.InAmountDEV2)*-1
|
||||
end)*-1 BallanceDEV,
|
||||
max(t3.ShortName+', '+isnull(t2.DocumentNumber,'')) ShortName,
|
||||
'' Description,
|
||||
t2.DateExecution DateExecution,
|
||||
t2.DateExecution DateCreated,
|
||||
t4.DatePayment DatePayment,
|
||||
0 DelayedDay,
|
||||
'' DelayedRange,
|
||||
t4.CurrencyName CurrencyName_Account,
|
||||
0 AmountHUF_Account,
|
||||
0 AmountDEV_Account,
|
||||
max(t4.DateExecution) DateExecution_Account
|
||||
from GLRows t1
|
||||
join GLHeader t2 on t1.GLHeader=t2.Oid
|
||||
left join GLCassa t5 on t2.Oid=t5.Oid
|
||||
left join LiquidAssets t3 on t5.LiquidAssets_Cassa=t3.Oid
|
||||
left join vv_PartnerConnectionInfoAccount t4 on t2.CustomersFrom=t4.CustomersFrom and
|
||||
t1.Customer=t4.Customers and t1.PartnerType=t4.PartnerType and t1.ConnectInfo=t4.ConnectInfo
|
||||
where t2.GCRecord is null and
|
||||
t2.GLDocumentType=3 and
|
||||
t1.PartnerType in (0,1) and
|
||||
t1.GCRecord is null
|
||||
group by t1.Oid,t2.CustomersFrom,t1.Customer,t1.PartnerType,
|
||||
t1.ConnectInfo,t3.CurrencyName,t4.Currency,t2.DateExecution,t4.DatePayment,t4.CurrencyName
|
||||
|
||||
union all
|
||||
|
||||
select '05-Ratediff' MainType,
|
||||
t1.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t1.Customer Customers,
|
||||
t1.PartnerType PartnerType,
|
||||
t1.ConnectInfo ConnectInfo,
|
||||
t2.CurrencyName CurrencyName,
|
||||
0 DebitTotalHUF,
|
||||
case when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 then sum(t1.AmountHUF)*-1
|
||||
end CreditTotalHUF,
|
||||
0 DebitTotalDEV,
|
||||
0 CreditTotalDEV,
|
||||
(case when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 then sum(t1.AmountHUF)*-1
|
||||
end)*-1 BallanceHUF,
|
||||
0 BallanceDEV,
|
||||
max(isnull(t7.ShortName,'')+', '++isnull(t8.DocumentNumber,'')+', '+isnull(t2.DocumentNumber,'')) ShortName,
|
||||
'' Description,
|
||||
t2.DateExecution DateExecution,
|
||||
t2.DateExecution DateCreated,
|
||||
Null DatePayment,
|
||||
0 DelayedDay,
|
||||
'' DelayedRange,
|
||||
t4.CurrencyName CurrencyName_Account,
|
||||
0 AmountHUF_Account,
|
||||
0 AmountDEV_Account,
|
||||
max(t4.DateExecution) DateExecution_Account
|
||||
from GLRows t1
|
||||
join GLHeader t2 on t1.GLHeader=t2.Oid
|
||||
left join LiquidAssets t3 on t1.LiquidAssets=t3.Oid
|
||||
left join vv_PartnerConnectionInfoAccount t4 on t2.CustomersFrom=t4.CustomersFrom and
|
||||
t1.Customer=t4.Customers and t1.PartnerType=t4.PartnerType and t1.ConnectInfo=t4.ConnectInfo
|
||||
left join GLRows t6 on
|
||||
t1.GLRowsRateDiff=t6.Oid left join LiquidAssets t7 on
|
||||
t6.LiquidAssets=t7.oid left join GLHeader t8 on
|
||||
t6.GLHeader=t8.oid
|
||||
where t2.GCRecord is null and
|
||||
t2.GLDocumentType=5 and
|
||||
t1.PartnerType in (0,1) and
|
||||
t1.GCRecord is null
|
||||
group by t1.Oid,t2.CustomersFrom,t1.Customer,t1.PartnerType,
|
||||
t1.ConnectInfo,t2.CurrencyName,t2.DateExecution,t2.DatePayment,t4.CurrencyName
|
||||
|
||||
union all
|
||||
|
||||
select case when max(t2.GLDocumentType)=4 then '04-Compensation'
|
||||
when max(t2.GLDocumentType)=0 then '06-Mixed'
|
||||
end MainType,
|
||||
t1.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t1.Customer Customers,
|
||||
t1.PartnerType PartnerType,
|
||||
t1.ConnectInfo ConnectInfo,
|
||||
t3.CurrencyName CurrencyName,
|
||||
0 DebitTotalHUF,
|
||||
case when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)*-1
|
||||
end CreditTotalHUF,
|
||||
0 DebitTotalDEV,
|
||||
case when t1.PartnerType=0 and sum(t1.InAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)*-1
|
||||
when t1.PartnerType=0 and sum(t1.InAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV)<>0 and isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)*-1
|
||||
end CreditTotalDEV,
|
||||
(case when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 then sum(t1.AmountHUF)*-1
|
||||
end)*-1 BallanceHUF,
|
||||
(case when t1.PartnerType=0 and sum(t1.InAmountDEV)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)*-1
|
||||
when t1.PartnerType=0 and sum(t1.InAmountDEV2)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF' then sum(t1.InAmountDEV2)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV2)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF' then sum(t1.OutAmountDEV2)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV2)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF' then sum(t1.OutAmountDEV2)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV2)<>0 and
|
||||
isnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF'then sum(t1.InAmountDEV2)*-1
|
||||
else 0
|
||||
end)*-1 BallanceDEV,
|
||||
max(t3.ShortName+', '+t2.DocumentNumber) ShortName,
|
||||
'' Description,
|
||||
t2.DateExecution DateExecution,
|
||||
t2.DateExecution DateCreated,
|
||||
t2.DateExecution DatePayment,
|
||||
0 DelayedDay,
|
||||
'' DelayedRange,
|
||||
t4.CurrencyName CurrencyName_Account,
|
||||
0 AmountHUF_Account,
|
||||
0 AmountDEV_Account,
|
||||
max(t4.DateExecution) DateExecution_Account
|
||||
from GLRows t1
|
||||
join GLHeader t2 on t1.GLHeader=t2.Oid
|
||||
left join GLCompensation t5 on t2.Oid=t5.Oid left
|
||||
join LiquidAssets t3 on t5.LiquidAssets_Main=t3.Oid
|
||||
left join vv_PartnerConnectionInfoAccount t4 on t2.CustomersFrom=t4.CustomersFrom and
|
||||
t1.Customer=t4.Customers and t1.PartnerType=t4.PartnerType and t1.ConnectInfo=t4.ConnectInfo
|
||||
where t2.GCRecord is null and
|
||||
t2.GLDocumentType in (4,0) and
|
||||
t1.PartnerType in (0,1) and
|
||||
t1.GCRecord is null
|
||||
group by t1.Oid,t2.CustomersFrom,t1.Customer,t1.PartnerType,
|
||||
t1.ConnectInfo,t3.CurrencyName,t4.Currency,t2.DateExecution,t4.DatePayment,t4.CurrencyName
|
||||
|
||||
union all
|
||||
|
||||
select '01-Account' MainType,
|
||||
t1.Oid Oid,
|
||||
t1.CustomersFrom CustomersFrom,
|
||||
t1.Customers Customers,
|
||||
0 PartnerType,
|
||||
t1.ConnectInfo ConnectInfo,
|
||||
t1.CurrencyName CurrencyName,
|
||||
t1.TotalBruttoHUF DebitTotalHUF,
|
||||
0 CreditTotalHUF,
|
||||
t1.TotalBruttoDEV DebitTotalDEV,
|
||||
0 CreditTotalDEV,
|
||||
t1.TotalBruttoHUF BallanceHUF,
|
||||
t1.TotalBruttoDEV BallanceDEV,
|
||||
'' ShortName,
|
||||
t1.Description Description,
|
||||
t1.DateExecution DateExecution,
|
||||
t1.DateCreated DateCreated,
|
||||
t1.DatePayment DatePayment,
|
||||
DATEDIFF(d,t1.DatePayment,getdate()) DelayedDay,
|
||||
case when DATEDIFF(d,t1.DatePayment,getdate())<=0 then 0
|
||||
when DATEDIFF(d,t1.DatePayment,getdate())>0 and DATEDIFF(d,t1.DatePayment,getdate())<=15 then 1
|
||||
when DATEDIFF(d,t1.DatePayment,getdate())>15 and DATEDIFF(d,t1.DatePayment,getdate())<=30 then 2
|
||||
when DATEDIFF(d,t1.DatePayment,getdate())>30 and DATEDIFF(d,t1.DatePayment,getdate())<=60 then 3
|
||||
when DATEDIFF(d,t1.DatePayment,getdate())>60 and DATEDIFF(d,t1.DatePayment,getdate())<=90 then 4
|
||||
when DATEDIFF(d,t1.DatePayment,getdate())>90 and DATEDIFF(d,t1.DatePayment,getdate())<=180 then 5
|
||||
when DATEDIFF(d,t1.DatePayment,getdate())>180 and DATEDIFF(d,t1.DatePayment,getdate())<=360 then 6
|
||||
when DATEDIFF(d,t1.DatePayment,getdate())>360 then 7
|
||||
end DelayedRange,
|
||||
t1.CurrencyName CurrencyName_Account,
|
||||
t1.TotalBruttoHUF AmountHUF_Account,
|
||||
t1.TotalBruttoDEV AmountDEV_Account,
|
||||
t1.DateExecution DateExecution_Account
|
||||
from InvoiceHeader t1
|
||||
where t1.GLAccounts is null and
|
||||
t1.IsEditable=0 and
|
||||
t1.GCRecord is null
|
||||
|
||||
union all
|
||||
|
||||
select '01-Account' MainType,
|
||||
t1.Oid Oid,
|
||||
t1.CustomersFrom CustomersFrom,
|
||||
t1.Customers Customers,
|
||||
1 PartnerType,
|
||||
t1.DocumentNumber ConnectInfo,
|
||||
t1.F_CurrencyName CurrencyName,
|
||||
t1.F_AmountBruttoHUF DebitTotalHUF,
|
||||
0 CreditTotalHUF,
|
||||
t1.F_AmountBruttoDEV DebitTotalDEV,
|
||||
0 CreditTotalDEV,
|
||||
t1.F_AmountBruttoHUF BallanceHUF,
|
||||
t1.F_AmountBruttoDEV BallanceDEV,
|
||||
'' ShortName,
|
||||
'' Description,
|
||||
t1.F_DateExecution DateExecution,
|
||||
t1.F_DateCreated DateCreated,
|
||||
t1.F_DatePayment DatePayment,
|
||||
DATEDIFF(d,t1.F_DatePayment,getdate()) DelayedDay,
|
||||
case when DATEDIFF(d,t1.F_DatePayment,getdate())<=0 then 0
|
||||
when DATEDIFF(d,t1.F_DatePayment,getdate())>0 and DATEDIFF(d,t1.F_DatePayment,getdate())<=15 then 1
|
||||
when DATEDIFF(d,t1.F_DatePayment,getdate())>15 and DATEDIFF(d,t1.F_DatePayment,getdate())<=30 then 2
|
||||
when DATEDIFF(d,t1.F_DatePayment,getdate())>30 and DATEDIFF(d,t1.F_DatePayment,getdate())<=60 then 3
|
||||
when DATEDIFF(d,t1.F_DatePayment,getdate())>60 and DATEDIFF(d,t1.F_DatePayment,getdate())<=90 then 4
|
||||
when DATEDIFF(d,t1.F_DatePayment,getdate())>90 and DATEDIFF(d,t1.F_DatePayment,getdate())<=180 then 5
|
||||
when DATEDIFF(d,t1.F_DatePayment,getdate())>180 and DATEDIFF(d,t1.F_DatePayment,getdate())<=360 then 6
|
||||
when DATEDIFF(d,t1.F_DatePayment,getdate())>360 then 7
|
||||
end DelayedRange,
|
||||
t1.F_CurrencyName CurrencyName_Account,
|
||||
t1.F_AmountBruttoHUF AmountHUF_Account,
|
||||
t1.F_AmountBruttoDEV AmountDEV_Account,
|
||||
t1.F_DateExecution DateExecution_Account
|
||||
from RegistryHeader t1
|
||||
left join RegistryType t2 on t1.RegistryType=t2.Oid
|
||||
where t1.GCRecord is null and
|
||||
t1.F_GLAccounts is null and
|
||||
t1.IsEditable=0 and
|
||||
t1.IsStorno=0 and
|
||||
t2.RegistryMainType=0 and
|
||||
t1.RegistryAcceptState=0
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
GO
|
||||
|
||||
+70
@@ -0,0 +1,70 @@
|
||||
USE [SISTEST]
|
||||
GO
|
||||
|
||||
/****** Object: View [dbo].[vv_PartnerConnectionInfoDetailGroup] Script Date: 05/18/2012 09:19:51 ******/
|
||||
SET ANSI_NULLS ON
|
||||
GO
|
||||
|
||||
SET QUOTED_IDENTIFIER ON
|
||||
GO
|
||||
|
||||
|
||||
|
||||
CREATE view [dbo].[vv_PartnerConnectionInfoDetailGroup]
|
||||
as
|
||||
select MAX(convert(varchar(100),t1.Oid)) Oid,
|
||||
t1.CustomersFrom CustomersFrom,
|
||||
t1.Customers Customers,
|
||||
t1.PartnerType PartnerType,
|
||||
t1.ConnectInfo ConnectInfo,
|
||||
max(t2.ShortName) Currency,
|
||||
sum(t1.DebitTotalHUF) DebitTotalHUF,
|
||||
SUM(t1.CreditTotalHUF) CreditTotalHUF,
|
||||
sum(t1.DebitTotalDEV) DebitTotalDEV,
|
||||
SUM(t1.CreditTotalDEV) CreditTotalDEV,
|
||||
SUM(t1.BallanceHUF) BallanceHUF,
|
||||
SUM(t1.BallanceDEV) BallanceDEV,
|
||||
case when t1.PartnerType=1 then SUM(t1.BallanceHUF)*-1 else 0 end BallanceHUF_P,
|
||||
case when t1.PartnerType=1 then SUM(t1.BallanceDEV)*-1 else 0 end BallanceDEV_P,
|
||||
case when t1.PartnerType=0 then SUM(t1.BallanceHUF) else 0 end BallanceHUF_R,
|
||||
case when t1.PartnerType=0 then SUM(t1.BallanceDEV) else 0 end BallanceDEV_R,
|
||||
(case when t1.PartnerType=0 then SUM(t1.BallanceHUF) else 0 end) -
|
||||
(case when t1.PartnerType=1 then SUM(t1.BallanceHUF)*-1 else 0 end) BallanceHUF_B,
|
||||
(case when t1.PartnerType=0 then SUM(t1.BallanceDEV) else 0 end) -
|
||||
(case when t1.PartnerType=1 then SUM(t1.BallanceDEV)*-1 else 0 end) BallanceDEV_B,
|
||||
max(t3.ShortName) Currency_Account,
|
||||
sum(t1.AmountHUF_Account) AmountHUF_Account,
|
||||
sum(t1.AmountDEV_Account) AmountDEV_Account,
|
||||
case when max(t3.ShortName)='HUF' then
|
||||
case when round(SUM(t1.BallanceHUF),0)=0 then 1
|
||||
else 0
|
||||
end
|
||||
else
|
||||
case when round(SUM(t1.BallanceDEV),2)=0 then 1
|
||||
else 0
|
||||
end
|
||||
end BallanceState,
|
||||
case when max(t3.ShortName)='HUF' then -1
|
||||
when t1.CurrencyName_Account IS null then -1
|
||||
else
|
||||
case when round(SUM(t1.BallanceDEV),2)=0 and round(SUM(t1.BallanceHUF),0)<>0 then 1
|
||||
else 0
|
||||
end
|
||||
end BallanceRateDiff,
|
||||
max(t4.DateExecution) DateExecution_Account,
|
||||
MAX(t4.DateCreated) DateCreated_Account
|
||||
from vv_PartnerConnectionInfoDetail t1
|
||||
left join CurrencyName t2 on t1.CurrencyName=t2.Oid
|
||||
left join CurrencyName t3 on t1.CurrencyName_Account=t3.Oid
|
||||
left join vv_PartnerConnectionInfoAccount t4 on
|
||||
t1.CustomersFrom=t4.CustomersFrom and
|
||||
t1.Customers=t4.Customers and
|
||||
t1.PartnerType=t4.PartnerType and
|
||||
t1.ConnectInfo=t4.ConnectInfo and
|
||||
t4.MainType='01-Account'
|
||||
|
||||
group by t1.CustomersFrom,t1.Customers,t1.PartnerType,t1.ConnectInfo,t1.CurrencyName_Account
|
||||
|
||||
|
||||
GO
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
USE [SISTEST]
|
||||
GO
|
||||
|
||||
/****** Object: View [dbo].[vv_ProductSelect] Script Date: 05/18/2012 09:20:03 ******/
|
||||
SET ANSI_NULLS ON
|
||||
GO
|
||||
|
||||
SET QUOTED_IDENTIFIER ON
|
||||
GO
|
||||
|
||||
|
||||
|
||||
CREATE view [dbo].[vv_ProductSelect]
|
||||
as
|
||||
select Oid=case when t2.Oid IS null then t1.Oid else t2.Oid end,
|
||||
Products=t1.Oid,
|
||||
StorageComputed=t2.oid
|
||||
from Products t1 left join StorageComputed t2 on
|
||||
t1.Oid=t2.Products
|
||||
where t1.GCRecord is null and t2.GCRecord is null
|
||||
|
||||
|
||||
GO
|
||||
|
||||
@@ -0,0 +1,44 @@
|
||||
USE [SISTEST]
|
||||
GO
|
||||
|
||||
/****** Object: View [dbo].[vv_RegistryBankTransfer] Script Date: 05/18/2012 09:20:16 ******/
|
||||
SET ANSI_NULLS ON
|
||||
GO
|
||||
|
||||
SET QUOTED_IDENTIFIER ON
|
||||
GO
|
||||
|
||||
|
||||
|
||||
CREATE view [dbo].[vv_RegistryBankTransfer]
|
||||
as
|
||||
select t1.Oid Oid,
|
||||
t1.RegistryHeader RegistryHeader,
|
||||
t1.AmountHUF AmountHUF,
|
||||
t1.AmountDEV AmountDEV,
|
||||
t1.DatePayment DatePayment,
|
||||
t1.IsBlocked IsBlocked,
|
||||
t1.Note Note,
|
||||
t1.BankSavedFileName BankSavedFileName,
|
||||
isnull(t3.BallanceHUF,t2.F_AmountBruttoHUF) BallanceHUF,
|
||||
isnull(t3.BallanceDEV,t2.F_AmountBruttoDEV) BallanceDEV,
|
||||
t1.AmountHUF-isnull(t3.BallanceHUF,t2.F_AmountBruttoHUF) DifferenceHUF,
|
||||
t1.AmountDEV-isnull(t3.BallanceDEV,t2.F_AmountBruttoDEV) DifferenceDEV,
|
||||
case when round(isnull(t3.BallanceHUF,t2.F_AmountBruttoHUF),2)=0 then 0
|
||||
when isnull(t3.BallanceHUF,t2.F_AmountBruttoHUF)>=t1.AmountHUF then t1.AmountHUF
|
||||
when isnull(t3.BallanceHUF,t2.F_AmountBruttoHUF)<=t1.AmountHUF then isnull(t3.BallanceHUF,t2.F_AmountBruttoHUF)
|
||||
end OfferedHUF,
|
||||
case when round(isnull(t3.BallanceDEV,t2.F_AmountBruttoDEV),2)=0 then 0
|
||||
when isnull(t3.BallanceDEV,t2.F_AmountBruttoDEV)>=t1.AmountDEV then t1.AmountDEV
|
||||
when isnull(t3.BallanceDEV,t2.F_AmountBruttoDEV)<=t1.AmountDEV then isnull(t3.BallanceDEV,t2.F_AmountBruttoDEV)
|
||||
end OfferedDEV,
|
||||
t1.BankPrepareName BankPrepareName
|
||||
from RegistryBankTransfer t1
|
||||
join RegistryHeader t2 on t1.RegistryHeader=t2.Oid
|
||||
left join PCIGroup t3 on t2.CustomersFrom=t3.CustomersFrom
|
||||
and t2.Customers=t3.Customers and t3.PartnerType=1 and t2.DocumentNumber=t3.ConnectInfo
|
||||
where t1.GCRecord is null and t2.RegistryAcceptState=0
|
||||
|
||||
|
||||
GO
|
||||
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
USE [SISTEST]
|
||||
GO
|
||||
|
||||
/****** Object: View [dbo].[vv_RegistryBankTransferPrepareName] Script Date: 05/18/2012 09:20:31 ******/
|
||||
SET ANSI_NULLS ON
|
||||
GO
|
||||
|
||||
SET QUOTED_IDENTIFIER ON
|
||||
GO
|
||||
|
||||
CREATE view [dbo].[vv_RegistryBankTransferPrepareName]
|
||||
as
|
||||
select max(convert(varchar(100),Oid)) Oid,
|
||||
BankPrepareName
|
||||
from RegistryBankTransfer
|
||||
where Isnull(BankPrepareName,'')<>''
|
||||
group by BankPrepareName
|
||||
|
||||
GO
|
||||
|
||||
@@ -0,0 +1,92 @@
|
||||
USE [SISTEST]
|
||||
GO
|
||||
|
||||
/****** Object: View [dbo].[vv_WaitforRateDiff] Script Date: 05/18/2012 09:20:45 ******/
|
||||
SET ANSI_NULLS ON
|
||||
GO
|
||||
|
||||
SET QUOTED_IDENTIFIER ON
|
||||
GO
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
CREATE view [dbo].[vv_WaitforRateDiff]
|
||||
as
|
||||
select t1.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t1.PartnerType PartnerType,
|
||||
t1.Customer Customers,
|
||||
t1.ConnectInfo ConnectInfo,
|
||||
t3.DateExecution DateExecution_Account,
|
||||
t3.CurrencyName CurrencyName_Account,
|
||||
round(t4.AmountDEV_Account,2) AmountDEV_Account,
|
||||
round(t4.AmountHUF_Account,2) AmountHUF_Account,
|
||||
round(t4.BallanceDEV,2) BallanceDEV_Account,
|
||||
case when round(t4.AmountDEV_Account,2)<>0 then round(round(t4.AmountHUF_Account,2)/round(t4.AmountDEV_Account,2),2) else 0 end CurrencyRate_Account,
|
||||
t1.LiquidAssets LiquidAssets,
|
||||
t2.DateExecution DateExecution,
|
||||
round(t1.InAmountDEV,2) InAmountDEV,
|
||||
round(t1.OutAmountDEV,2) OutAmountDEV,
|
||||
round(t1.InAmountDEV2,2) InAmountDEV2,
|
||||
round(t1.OutAmountDEV2,2) OutAmountDEV2,
|
||||
case when InAmountHUF>0 then
|
||||
case when t1.InAmountDEV <>0 then round(t1.InAmountHUF,2)/round(t1.InAmountDEV,2)
|
||||
else 0
|
||||
end
|
||||
else
|
||||
case when t1.OutAmountDEV <>0 then round(t1.OutAmountHUF,2)/round(t1.OutAmountDEV,2)
|
||||
else 0
|
||||
end
|
||||
end CurrencyRate,
|
||||
round(t1.InAmountHUF,2) InAmountHUF,
|
||||
round(t1.OutAmountHUF,2) OutAmountHUF,
|
||||
case when t3.CurrencyName=t5.CurrencyName then round(t1.InAmountDEV,2)* round(t3.CurrencyRate,2)
|
||||
else round(t1.InAmountDEV2,2)* round(t3.CurrencyRate,2)
|
||||
end InAmountHUF_Account,
|
||||
case when t3.CurrencyName=t5.CurrencyName then round(t1.OutAmountDEV,2)*round(t3.CurrencyRate,2)
|
||||
else round(t1.OutAmountDEV2,2)*round(t3.CurrencyRate,2)
|
||||
end OutAmountHUF_Account,
|
||||
case when t3.CurrencyName=t5.CurrencyName then round(t1.InAmountDEV,2)* round(t3.CurrencyRate,2)
|
||||
else round(t1.InAmountDEV2,2)* round(t3.CurrencyRate,2)
|
||||
end - round(t1.InAmountHUF,2) InAmountHUF_Diff,
|
||||
case when t3.CurrencyName=t5.CurrencyName then round(t1.OutAmountDEV,2)*round(t3.CurrencyRate,2)
|
||||
else round(t1.OutAmountDEV2,2)*round(t3.CurrencyRate,2)
|
||||
end - round(t1.OutAmountHUF,2) OutAmountHUF_Diff,
|
||||
t1.GLRowsRatediff GLRowsRatediff,
|
||||
case when t1.PartnerType = 0 Then
|
||||
case when case when t3.CurrencyName=t5.CurrencyName then round(t1.InAmountDEV,2)* round(t3.CurrencyRate,2)
|
||||
else round(t1.InAmountDEV2,2)* round(t3.CurrencyRate,2)
|
||||
end - round(t1.InAmountHUF,2) > 0 Then -1
|
||||
else 1
|
||||
end
|
||||
when t1.PartnerType = 1 Then
|
||||
case when case when t3.CurrencyName=t5.CurrencyName then round(t1.OutAmountDEV,2)*round(t3.CurrencyRate,2)
|
||||
else round(t1.OutAmountDEV2,2)*round(t3.CurrencyRate,2)
|
||||
end - round(t1.OutAmountHUF,2) > 0 Then 1
|
||||
else -1
|
||||
end
|
||||
else 0
|
||||
end RateDiffState
|
||||
from GLRows t1
|
||||
left join GLHeader t2 on t1.GLHeader=t2.Oid
|
||||
join vv_PartnerConnectionInfoAccount t3 on t2.CustomersFrom=t3.CustomersFrom
|
||||
and t1.PartnerType=t3.PartnerType and t1.Customer=t3.Customers and t1.ConnectInfo=t3.ConnectInfo
|
||||
left join PCIGroup t4 on t2.CustomersFrom=t4.CustomersFrom
|
||||
and t1.PartnerType=t4.PartnerType and t1.Customer=t4.Customers and t1.ConnectInfo=t4.ConnectInfo
|
||||
left join LiquidAssets t5 on t1.LiquidAssets=t5.Oid
|
||||
left join CurrencyName t6 on t5.CurrencyName=t6.Oid
|
||||
left join CurrencyName t7 on t3.CurrencyName=t7.Oid
|
||||
where t2.GCRecord is null and
|
||||
t2.GLDocumentType in (2,3,4) and
|
||||
t6.ShortName <> 'HUF' and isnull(t7.ShortName,'HUF')<>'HUF' and
|
||||
((t1.PartnerType=0 and t1.InAmountHUF>0) or (t1.PartnerType=1 and t1.OutAmountHUF>0))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
GO
|
||||
|
||||
@@ -0,0 +1,185 @@
|
||||
DROP TABLE IF EXISTS vv_GLAccountRowsforBookEntry;
|
||||
DROP VIEW IF EXISTS vv_GLAccountRowsforBookEntry;
|
||||
CREATE VIEW vv_GLAccountRowsforBookEntry
|
||||
AS
|
||||
SELECT 1 PartnerType,
|
||||
0 GLRowsTypeVAT,
|
||||
t1.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t2.Customers Customers,
|
||||
t2.F_DateExecution DateExecution,
|
||||
t2.DocumentNumber DocumentNumber,
|
||||
t2.RegistryNumber RegistryNumber,
|
||||
CASE WHEN ifnull(t1.IsReinvoice,0)=0 THEN t3.ChartOfAccounts
|
||||
ELSE t3.ChartOfAccounts2
|
||||
END DebitChartOfAccounts,
|
||||
t5.ChartOfAccountsIn CreditChartOfAccounts,
|
||||
t1.Controlling Controlling,
|
||||
t1.JobNumberObjects JobNumberObjects,
|
||||
t7.UniqueObjects UniqueObjects,
|
||||
t1.CostPlace CostPlace,
|
||||
t1.CostHolder CostHolder,
|
||||
t2.F_CurrencyRate CurrencyRate,
|
||||
t1.Amount AmountHUF,
|
||||
CASE WHEN t2.F_CurrencyRate<>0 and t6.ShortName<>'HUF' THEN ROUND(t1.Amount/t2.F_CurrencyRate,2) ELSE 0 END AmountDEV,
|
||||
t2.ShortName Note1,
|
||||
'' Note2,
|
||||
NULL VAT,
|
||||
t1.ChartOfAccounts ChartOfAccounts2,
|
||||
ifnull(t1.IsReinvoice,0) IsReinvoice,
|
||||
t1.ContractRows ContractRows,
|
||||
ifnull(t1.F_ReadyforBookEntryRows,0) ReadyforBookEntryRows,
|
||||
t2.Oid RegistryHeader,
|
||||
Null InvoiceHeader,
|
||||
t2.CurrentWorkflowSystemSteps WorkflowSystemSteps,
|
||||
t1.WorkflowMessage WorkflowMessage
|
||||
from RegistryRowsFinancialControlling t1 join RegistryHeader t2 on
|
||||
t1.RegistryHeader=t2.Oid LEFT JOIN Controlling t3 ON
|
||||
t1.Controlling=t3.Oid LEFT JOIN Customers t4 ON
|
||||
t2.Customers=t4.Oid LEFT JOIN CustomersGLParameters t5 ON
|
||||
t4.CustomersGLParameters=t5.Oid LEFT JOIN CurrencyName t6 ON
|
||||
t2.F_CurrencyName=t6.Oid LEFT JOIN ContractRows t7 ON
|
||||
t1.ContractRows=t7.Oid
|
||||
WHERE t1.GCRecord IS NULL AND
|
||||
ifnull(t2.IsEditable,0)=0 AND
|
||||
t2.F_GLAccounts IS NULL AND
|
||||
ifnull(t1.F_ReadyforBookEntryRows,0)=0
|
||||
|
||||
UNION ALL
|
||||
|
||||
SELECT 1 PartnerType,
|
||||
1 GLRowsTypeVAT,
|
||||
t1.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t2.Customers Customers,
|
||||
ifnull(ifnull(t1.DateVAT,t2.F_DateVAT),t2.F_DateExecution) DateExecution,
|
||||
t2.DocumentNumber DocumentNumber,
|
||||
t2.RegistryNumber RegistryNumber,
|
||||
t3.ChartOfAccountsIn DebitChartOfAccounts,
|
||||
case when ifnull(t3.InversState,0)=1 then t3.ChartOfAccountsOut
|
||||
else t5.ChartOfAccountsIn end CreditChartOfAccounts,
|
||||
NULL Controlling,
|
||||
NULL JobNumberObjects,
|
||||
NULL UniqueObjects,
|
||||
NULL CostPlace,
|
||||
NULL CostHolder,
|
||||
1 CurrencyRate,
|
||||
CASE WHEN t1.VAT IS NULL THEN 0
|
||||
WHEN t1.VAT IS NOT NULL THEN
|
||||
case when t3.InversState=0 then ROUND(t1.BruttoAmount/(1+t3.KeyValue)*t3.KeyValue,0)
|
||||
else ROUND(t1.BruttoAmount*t3.InversKeyValue,0) end
|
||||
END AmountHUF,
|
||||
0 AmountDEV,
|
||||
t2.ShortName Note1,
|
||||
'' Note2,
|
||||
t1.VAT VAT,
|
||||
NULL ChartOfAccounts2,
|
||||
0 IsReinvoice,
|
||||
NULL ContractRows,
|
||||
ifnull(t1.F_ReadyforBookEntryRows,0) ReadyforBookEntryRows,
|
||||
t2.Oid RegistryHeader,
|
||||
NULL InvoiceHeader,
|
||||
t2.CurrentWorkflowSystemSteps WorkflowSystemSteps,
|
||||
'' WorkflowMessage
|
||||
from RegistryRowsFinancial t1 join RegistryHeader t2 on
|
||||
t1.RegistryHeader=t2.Oid LEFT JOIN VAT t3 ON
|
||||
t1.VAT=t3.oid LEFT JOIN Customers t4 ON
|
||||
t2.Customers=t4.Oid LEFT JOIN CustomersGLParameters t5 ON
|
||||
t4.CustomersGLParameters=t5.Oid LEFT JOIN CurrencyName t6 ON
|
||||
t2.F_CurrencyName=t6.Oid
|
||||
WHERE t1.GCRecord IS NULL AND
|
||||
ifnull(t2.IsEditable,0)=0 AND
|
||||
t2.F_GLAccounts IS NULL AND
|
||||
ifnull(t1.F_ReadyforBookEntryRows,0)=0
|
||||
|
||||
UNION ALL
|
||||
|
||||
SELECT 0 PartnerType,
|
||||
0 GLRowsTypeVAT,
|
||||
t1.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t2.Customers Customers,
|
||||
t2.DateExecution DateExecution,
|
||||
t2.DocumentNumber DocumentNumber,
|
||||
'' RegistryNumber,
|
||||
t5.ChartOfAccountsOut DebitChartOfAccounts,
|
||||
ifnull(t9.ChartOfAccounts,t3.ChartOfAccounts) CreditChartOfAccounts,
|
||||
ifnull(t8.Controlling,t1.Controlling) Controlling,
|
||||
ifnull(t8.JobNumberObjects,t1.JobNumberObjects) JobNumberObjects,
|
||||
ifnull(t8.UniqueObjects,t1.UniqueObjects) UniqueObjects,
|
||||
ifnull(t8.CostPlace,t1.CostPlace) CostPlace,
|
||||
ifnull(t8.CostHolder,t1.CostHolder) CostHolder,
|
||||
t2.CurrencyRate CurrencyRate,
|
||||
(t1.ListPriceHUF-t1.DiscountPriceHUF)*t1.QTT AmountHUF,
|
||||
(t1.ListPriceDEV-t1.DiscountPriceDEV)*t1.QTT AmountDEV,
|
||||
t2.Description Note1,
|
||||
'' Note2,
|
||||
NULL VAT,
|
||||
t1.ChartOfAccounts ChartOfAccounts2,
|
||||
0 IsReinvoice,
|
||||
t1.ContractRows ContractRows,
|
||||
ifnull(t1.ReadyforBookEntryRows,0) ReadyforBookEntryRows,
|
||||
NULL RegistryHeader,
|
||||
t2.Oid InvoiceHeader,
|
||||
t1.WorkflowSystemSteps WorkflowSystemSteps,
|
||||
'' WorkflowMessage
|
||||
FROM InvoiceRows t1 JOIN InvoiceHeader t2 ON
|
||||
t1.InvoiceHeader=t2.Oid LEFT JOIN Controlling t3 ON
|
||||
t1.Controlling=t3.Oid LEFT JOIN Customers t4 ON
|
||||
t2.Customers=t4.Oid LEFT JOIN CustomersGLParameters t5 ON
|
||||
t4.CustomersGLParameters=t5.Oid LEFT JOIN CurrencyName t6 ON
|
||||
t2.CurrencyName=t6.Oid LEFT JOIN InvoiceType t7 ON
|
||||
t2.InvoiceType=t7.Oid LEFT JOIN ContractRows t8 ON
|
||||
t1.ContractRows=t8.Oid LEFT JOIN Controlling t9 ON
|
||||
t8.Controlling=t9.Oid
|
||||
WHERE t1.GCRecord IS NULL AND
|
||||
ifnull(t2.IsEditable,0)=0 AND
|
||||
t2.GLAccounts IS NULL AND
|
||||
ifnull(t1.ReadyforBookEntryRows,0)=0 AND
|
||||
t7.InvoiceTypeBase in (1,2,3) and
|
||||
ifnull(t2.IsProforma,0)=0
|
||||
|
||||
UNION ALL
|
||||
|
||||
SELECT 0 PartnerType,
|
||||
1 GLRowsTypeVAT,
|
||||
t1.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t2.Customers Customers,
|
||||
t2.DateExecution DateExecution,
|
||||
t2.DocumentNumber DocumentNumber,
|
||||
'' RegistryNumber,
|
||||
t5.ChartOfAccountsOut DebitChartOfAccounts,
|
||||
t3.ChartOfAccountsOut CreditChartOfAccounts,
|
||||
NULL Controlling,
|
||||
NULL JobNumberObjects,
|
||||
NULL UniqueObjects,
|
||||
NULL CostPlace,
|
||||
NULL CostHolder,
|
||||
1 CurrencyRate,
|
||||
t1.AmountVATHUF AmountHUF,
|
||||
t1.AmountVATDEV AmountDEV,
|
||||
t2.Description Note1,
|
||||
'' Note2,
|
||||
t1.VAT VAT,
|
||||
NULL ChartOfAccounts2,
|
||||
0 IsReinvoice,
|
||||
NULL ContractRows,
|
||||
ifnull(t1.ReadyforBookEntryRows,0) ReadyforBookEntryRows,
|
||||
NULL RegistryHeader,
|
||||
t2.Oid InvoiceHeader,
|
||||
Null WorkflowSystemSteps,
|
||||
'' WorkflowMessage
|
||||
from InvoiceVATRows t1 join InvoiceHeader t2 on
|
||||
t1.InvoiceHeader=t2.Oid LEFT JOIN VAT t3 ON
|
||||
t1.VAT=t3.oid LEFT JOIN Customers t4 ON
|
||||
t2.Customers=t4.Oid LEFT JOIN CustomersGLParameters t5 ON
|
||||
t4.CustomersGLParameters=t5.Oid LEFT JOIN CurrencyName t6 ON
|
||||
t2.CurrencyName=t6.Oid LEFT JOIN InvoiceType t7 ON
|
||||
t2.InvoiceType=t7.Oid
|
||||
WHERE t1.GCRecord IS NULL AND
|
||||
ifnull(t2.IsEditable,0)=0 AND
|
||||
t2.GLAccounts IS NULL AND
|
||||
ifnull(t1.ReadyforBookEntryRows,0)=0 AND
|
||||
ifnull(t2.IsProforma,0)=0 AND
|
||||
t7.InvoiceTypeBase in (1,2,3)
|
||||
+83
@@ -0,0 +1,83 @@
|
||||
DROP TABLE IF EXISTS vv_PartnerConnectionInfoAccount;
|
||||
DROP VIEW IF EXISTS vv_PartnerConnectionInfoAccount;
|
||||
CREATE view vv_PartnerConnectionInfoAccount
|
||||
as
|
||||
select '01-Account' MainType,
|
||||
t2.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t1.Customer Customers,
|
||||
t1.PartnerType PartnerType,
|
||||
t2.DocumentNumber ConnectInfo,
|
||||
t2.CurrencyName CurrencyName,
|
||||
sum(t1.AmountHUF) BallanceHUF,
|
||||
sum(t1.AmountDEV) BallanceDEV,
|
||||
t3.ShortName Currency,
|
||||
t2.DatePayment DatePayment,
|
||||
t2.DateCreated DateCreated,
|
||||
t2.DateExecution DateExecution,
|
||||
t2.CurrencyRate CurrencyRate,
|
||||
t2.DocumentNumber DocumentNumber,
|
||||
max(t2.RegistryNumber) RegistryNumber
|
||||
from GLRows t1 join GLHeader t2 on
|
||||
t1.GLHeader=t2.Oid left join CurrencyName t3 on
|
||||
t2.CurrencyName=t3.Oid
|
||||
where t2.GCRecord is null and
|
||||
t2.GLDocumentType=1 and
|
||||
ifnull(t2.IsEditable,0)=0 and
|
||||
t1.PartnerType in (0,1) and
|
||||
t1.GCRecord is null
|
||||
group by t2.Oid,t2.CustomersFrom,t1.Customer,t1.PartnerType,
|
||||
t2.DocumentNumber,t2.CurrencyName,t3.ShortName,t2.DateExecution,t2.DatePayment,
|
||||
t2.DateCreated,t2.DateExecution,t2.CurrencyRate
|
||||
|
||||
union all
|
||||
|
||||
select '01-Account' MainType,
|
||||
t1.Oid Oid,
|
||||
t1.CustomersFrom CustomersFrom,
|
||||
t1.Customers Customers,
|
||||
0 PartnerType,
|
||||
t1.DocumentNumber ConnectInfo,
|
||||
t1.CurrencyName CurrencyName,
|
||||
t1.TotalBruttoHUF BallanceHUF,
|
||||
t1.TotalBruttoDEV BallanceDEV,
|
||||
t3.ShortName Currency,
|
||||
t1.DatePayment DatePayment,
|
||||
t1.DateCreated DateCreated,
|
||||
t1.DateExecution DateExecution,
|
||||
t1.CurrencyRate CurrencyRate,
|
||||
t1.DocumentNumber DocumentNumber,
|
||||
t1.DocumentNumber RegistryNumber
|
||||
from InvoiceHeader t1 left join CurrencyName t3 on
|
||||
t1.CurrencyName=t3.Oid
|
||||
where t1.GLAccounts is null and
|
||||
t1.IsEditable=0 and
|
||||
t1.GCRecord is null
|
||||
|
||||
union all
|
||||
|
||||
select '01-Account' MainType,
|
||||
t1.Oid Oid,
|
||||
t1.CustomersFrom CustomersFrom,
|
||||
t1.Customers Customers,
|
||||
1 PartnerType,
|
||||
t1.DocumentNumber ConnectInfo,
|
||||
t1.F_CurrencyName CurrencyName,
|
||||
t1.F_AmountBruttoHUF BallanceHUF,
|
||||
t1.F_AmountBruttoDEV BallanceDEV,
|
||||
t3.ShortName Currency,
|
||||
t1.F_DatePayment DatePayment,
|
||||
t1.F_DateCreated DateCreated,
|
||||
t1.F_DateExecution DateExecution,
|
||||
t1.F_CurrencyRate CurrencyRate,
|
||||
t1.DocumentNumber DocumentNumber,
|
||||
t1.RegistryNumber RegistryNumber
|
||||
from RegistryHeader t1 left join RegistryType t2 on
|
||||
t1.RegistryType=t2.Oid left join CurrencyName t3 on
|
||||
t1.F_CurrencyName=t3.Oid
|
||||
where t1.GCRecord is null and
|
||||
t1.F_GLAccounts is null and
|
||||
t1.IsEditable=0 and
|
||||
t1.IsStorno=0 and
|
||||
t2.RegistryMainType=0 and
|
||||
t1.RegistryAcceptState=0
|
||||
@@ -0,0 +1,24 @@
|
||||
DROP TABLE IF EXISTS vv_PartnerConnectionInfoAged;
|
||||
DROP VIEW IF EXISTS vv_PartnerConnectionInfoAged;
|
||||
CREATE view vv_PartnerConnectionInfoAged
|
||||
as
|
||||
select t1.Oid Oid,
|
||||
t1.CustomersFrom CustomersFrom,
|
||||
t1.Customers Customers,
|
||||
t1.PartnerType PartnerType,
|
||||
t1.ConnectInfo ConnectInfo,
|
||||
t2.DocumentNumber DocumentNumber,
|
||||
t2.RegistryNumber RegistryNumber,
|
||||
t1.DateExecution_Account DateExecution,
|
||||
t1.DatePayment_Account DatePayment,
|
||||
t1.CurrencyName_Account CurrencyName_Account,
|
||||
t1.AmountHUF_Account AmountHUF,
|
||||
t1.AmountDEV_Account AmountDEV,
|
||||
t1.BallanceHUF BallanceHUF,
|
||||
t1.BallanceDEV BallanceDEV
|
||||
from PCIDetail t1 join
|
||||
vv_PartnerConnectionInfoAccount t2 on
|
||||
t1.CustomersFrom=t2.CustomersFrom and
|
||||
t1.Customers=t2.Customers and
|
||||
t1.PartnerType=t2.PartnerType and
|
||||
t1.ConnectInfo=t2.ConnectInfo
|
||||
+38
@@ -0,0 +1,38 @@
|
||||
DROP TABLE IF EXISTS vv_PartnerConnectionInfoConnect;
|
||||
DROP VIEW IF EXISTS vv_PartnerConnectionInfoConnect;
|
||||
CREATE view vv_PartnerConnectionInfoConnect
|
||||
as
|
||||
select
|
||||
t1.MainType MainType,
|
||||
t1.Oid Oid,
|
||||
t1.CustomersFrom CustomersFrom,
|
||||
t1.Customers Customers,
|
||||
t1.PartnerType PartnerType,
|
||||
t1.ConnectInfo ConnectInfo,
|
||||
t1.CurrencyName CurrencyName,
|
||||
t1.DebitTotalHUF DebitTotalHUF,
|
||||
t1.CreditTotalHUF CreditTotalHUF,
|
||||
t1.DebitTotalDEV DebitTotalDEV,
|
||||
t1.CreditTotalDEV CreditTotalDEV,
|
||||
t1.BallanceHUF BallanceHUF,
|
||||
t1.BallanceDEV BallanceDEV,
|
||||
t1.ShortName ShortName,
|
||||
t1.Description Description,
|
||||
t1.DateExecution DateExecution,
|
||||
t1.DateCreated DateCreated,
|
||||
t1.DatePayment DatePayment,
|
||||
t1.DelayedDay DelayedDay,
|
||||
t1.DelayedRange DelayedRange,
|
||||
t1.CurrencyName_Account CurrencyName_Account,
|
||||
t1.AmountHUF_Account AmountHUF_Account,
|
||||
t1.AmountDEV_Account AmountDEV_Account,
|
||||
t1.DateExecution_Account DateExecution_Account,
|
||||
t2.BallanceState BallanceState,
|
||||
t2.BallanceRateDiff BallanceRateDiff
|
||||
from vv_PartnerConnectionInfoDetail t1
|
||||
join vv_PartnerConnectionInfoDetailGroup t2 on
|
||||
t1.CustomersFrom=t2.CustomersFrom and
|
||||
t1.Customers=t2.Customers and
|
||||
t1.PartnerType=t2.PartnerType and
|
||||
t1.ConnectInfo=t2.ConnectInfo
|
||||
|
||||
+407
@@ -0,0 +1,407 @@
|
||||
DROP TABLE IF EXISTS vv_PartnerConnectionInfoDetail;
|
||||
DROP VIEW IF EXISTS vv_PartnerConnectionInfoDetail;
|
||||
CREATE view vv_PartnerConnectionInfoDetail
|
||||
as
|
||||
select '01-Account' MainType,
|
||||
t2.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t1.Customer Customers,
|
||||
t1.PartnerType PartnerType,
|
||||
t1.ConnectInfo ConnectInfo,
|
||||
t2.CurrencyName CurrencyName,
|
||||
max(t3.AmountHUFBrutto) DebitTotalHUF,
|
||||
0 CreditTotalHUF,
|
||||
max(t3.AmountDEVBrutto) DebitTotalDEV,
|
||||
0 CreditTotalDEV,
|
||||
max(t3.AmountHUFBrutto) BallanceHUF,
|
||||
max(t3.AmountDEVBrutto) BallanceDEV,
|
||||
'' ShortName,
|
||||
'' Description,
|
||||
t2.DateExecution DateExecution,
|
||||
t2.DateCreated DateCreated,
|
||||
t2.DatePayment DatePayment,
|
||||
DATEDIFF(t2.DatePayment,curdate()) DelayedDay,
|
||||
case when DATEDIFF(t2.DatePayment,curdate())<=0 then 0
|
||||
when DATEDIFF(t2.DatePayment,curdate())>0 and DATEDIFF(t2.DatePayment,curdate())<=15 then 1
|
||||
when DATEDIFF(t2.DatePayment,curdate())>15 and DATEDIFF(t2.DatePayment,curdate())<=30 then 2
|
||||
when DATEDIFF(t2.DatePayment,curdate())>30 and DATEDIFF(t2.DatePayment,curdate())<=60 then 3
|
||||
when DATEDIFF(t2.DatePayment,curdate())>60 and DATEDIFF(t2.DatePayment,curdate())<=90 then 4
|
||||
when DATEDIFF(t2.DatePayment,curdate())>90 and DATEDIFF(t2.DatePayment,curdate())<=180 then 5
|
||||
when DATEDIFF(t2.DatePayment,curdate())>180 and DATEDIFF(t2.DatePayment,curdate())<=360 then 6
|
||||
when DATEDIFF(t2.DatePayment,curdate())>360 then 7
|
||||
end DelayedRange,
|
||||
t2.CurrencyName CurrencyName_Account,
|
||||
sum(t1.AmountHUF) AmountHUF_Account,
|
||||
sum(t1.AmountDEV) AmountDEV_Account,
|
||||
t2.DateExecution DateExecution_Account
|
||||
from GLRows t1 join GLHeader t2 on
|
||||
t1.GLHeader=t2.Oid join GLAccounts t3 on
|
||||
t1.GLHeader=t3.Oid
|
||||
where t2.GCRecord is null and
|
||||
t2.GLDocumentType=1 and
|
||||
t2.IsEditable=0 and
|
||||
t1.PartnerType in (0,1) and
|
||||
t1.GCRecord is null
|
||||
group by t2.Oid,t2.CustomersFrom,t1.Customer,t1.PartnerType,
|
||||
t1.ConnectInfo,t2.CurrencyName,t2.DateExecution,t2.DateCreated,t2.DatePayment
|
||||
|
||||
union all
|
||||
|
||||
select '02-Bank' MainType,
|
||||
t1.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t1.Customer Customers,
|
||||
t1.PartnerType PartnerType,
|
||||
t1.ConnectInfo ConnectInfo,
|
||||
t3.CurrencyName CurrencyName,
|
||||
0 DebitTotalHUF,
|
||||
case when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)*-1
|
||||
end CreditTotalHUF,
|
||||
0 DebitTotalDEV,
|
||||
case when t1.PartnerType=0 and sum(t1.InAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)*-1
|
||||
when t1.PartnerType=0 and sum(t1.InAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)*-1
|
||||
end CreditTotalDEV,
|
||||
(case when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 then sum(t1.AmountHUF)*-1
|
||||
end)*-1 BallanceHUF,
|
||||
(case when t1.PartnerType=0 and sum(t1.InAmountDEV)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.InAmountDEV)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.OutAmountDEV)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.OutAmountDEV)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.InAmountDEV)*-1
|
||||
when t1.PartnerType=0 and sum(t1.InAmountDEV2)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF' then sum(t1.InAmountDEV2)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV2)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF' then sum(t1.OutAmountDEV2)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV2)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF' then sum(t1.OutAmountDEV2)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV2)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF'then sum(t1.InAmountDEV2)*-1
|
||||
else 0
|
||||
end)*-1 BallanceDEV,
|
||||
max(t3.ShortName+', '+ifnull(t2.DocumentNumber,'')) ShortName,
|
||||
'' Description,
|
||||
t2.DateExecution DateExecution,
|
||||
t2.DateExecution DateCreated,
|
||||
t4.DatePayment DatePayment,
|
||||
0 DelayedDay,
|
||||
'' DelayedRange,
|
||||
t4.CurrencyName CurrencyName_Account,
|
||||
0 AmountHUF_Account,
|
||||
0 AmountDEV_Account,
|
||||
max(t4.DateExecution) DateExecution_Account
|
||||
from GLRows t1
|
||||
join GLHeader t2 on t1.GLHeader=t2.Oid
|
||||
left join GLBank t5 on t2.Oid=t5.Oid
|
||||
left join LiquidAssets t3 on t5.LiquidAssets_Main=t3.Oid
|
||||
left join vv_PartnerConnectionInfoAccount t4 on t2.CustomersFrom=t4.CustomersFrom
|
||||
and t1.Customer=t4.Customers and t1.PartnerType=t4.PartnerType and t1.ConnectInfo=t4.ConnectInfo
|
||||
where t2.GCRecord is null and
|
||||
t2.GLDocumentType=2 and
|
||||
t1.PartnerType in (0,1) and
|
||||
t1.GCRecord is null
|
||||
group by t1.Oid,t2.CustomersFrom,t1.Customer,t1.PartnerType,
|
||||
t1.ConnectInfo,t3.CurrencyName,t4.Currency,t2.DateExecution,t4.DatePayment,t4.CurrencyName
|
||||
|
||||
union all
|
||||
|
||||
select '03-Cassa' MainType,
|
||||
t1.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t1.Customer Customers,
|
||||
t1.PartnerType PartnerType,
|
||||
t1.ConnectInfo ConnectInfo,
|
||||
t3.CurrencyName CurrencyName,
|
||||
0 DebitTotalHUF,
|
||||
case when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)*-1
|
||||
end CreditTotalHUF,
|
||||
0 DebitTotalDEV,
|
||||
case when t1.PartnerType=0 and sum(t1.InAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)*-1
|
||||
when t1.PartnerType=0 and sum(t1.InAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)*-1
|
||||
end CreditTotalDEV,
|
||||
(case when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 then sum(t1.AmountHUF)*-1
|
||||
end)*-1 BallanceHUF,
|
||||
(case when t1.PartnerType=0 and sum(t1.InAmountDEV)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)*-1
|
||||
when t1.PartnerType=0 and sum(t1.InAmountDEV2)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF' then sum(t1.InAmountDEV2)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV2)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF' then sum(t1.OutAmountDEV2)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV2)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF' then sum(t1.OutAmountDEV2)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV2)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF'then sum(t1.InAmountDEV2)*-1
|
||||
end)*-1 BallanceDEV,
|
||||
max(t3.ShortName+', '+ifnull(t2.DocumentNumber,'')) ShortName,
|
||||
'' Description,
|
||||
t2.DateExecution DateExecution,
|
||||
t2.DateExecution DateCreated,
|
||||
t4.DatePayment DatePayment,
|
||||
0 DelayedDay,
|
||||
'' DelayedRange,
|
||||
t4.CurrencyName CurrencyName_Account,
|
||||
0 AmountHUF_Account,
|
||||
0 AmountDEV_Account,
|
||||
max(t4.DateExecution) DateExecution_Account
|
||||
from GLRows t1
|
||||
join GLHeader t2 on t1.GLHeader=t2.Oid
|
||||
left join GLCassa t5 on t2.Oid=t5.Oid
|
||||
left join LiquidAssets t3 on t5.LiquidAssets_Cassa=t3.Oid
|
||||
left join vv_PartnerConnectionInfoAccount t4 on t2.CustomersFrom=t4.CustomersFrom and
|
||||
t1.Customer=t4.Customers and t1.PartnerType=t4.PartnerType and t1.ConnectInfo=t4.ConnectInfo
|
||||
where t2.GCRecord is null and
|
||||
t2.GLDocumentType=3 and
|
||||
t1.PartnerType in (0,1) and
|
||||
t1.GCRecord is null
|
||||
group by t1.Oid,t2.CustomersFrom,t1.Customer,t1.PartnerType,
|
||||
t1.ConnectInfo,t3.CurrencyName,t4.Currency,t2.DateExecution,t4.DatePayment,t4.CurrencyName
|
||||
|
||||
union all
|
||||
|
||||
select '05-Ratediff' MainType,
|
||||
t1.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t1.Customer Customers,
|
||||
t1.PartnerType PartnerType,
|
||||
t1.ConnectInfo ConnectInfo,
|
||||
t2.CurrencyName CurrencyName,
|
||||
0 DebitTotalHUF,
|
||||
case when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 then sum(t1.AmountHUF)*-1
|
||||
end CreditTotalHUF,
|
||||
0 DebitTotalDEV,
|
||||
0 CreditTotalDEV,
|
||||
(case when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 then sum(t1.AmountHUF)*-1
|
||||
end)*-1 BallanceHUF,
|
||||
0 BallanceDEV,
|
||||
max(ifnull(t7.ShortName,'')+', '++ifnull(t8.DocumentNumber,'')+', '+ifnull(t2.DocumentNumber,'')) ShortName,
|
||||
'' Description,
|
||||
t2.DateExecution DateExecution,
|
||||
t2.DateExecution DateCreated,
|
||||
Null DatePayment,
|
||||
0 DelayedDay,
|
||||
'' DelayedRange,
|
||||
t4.CurrencyName CurrencyName_Account,
|
||||
0 AmountHUF_Account,
|
||||
0 AmountDEV_Account,
|
||||
max(t4.DateExecution) DateExecution_Account
|
||||
from GLRows t1
|
||||
join GLHeader t2 on t1.GLHeader=t2.Oid
|
||||
left join LiquidAssets t3 on t1.LiquidAssets=t3.Oid
|
||||
left join vv_PartnerConnectionInfoAccount t4 on t2.CustomersFrom=t4.CustomersFrom and
|
||||
t1.Customer=t4.Customers and t1.PartnerType=t4.PartnerType and t1.ConnectInfo=t4.ConnectInfo
|
||||
left join GLRows t6 on
|
||||
t1.GLRowsRateDiff=t6.Oid left join LiquidAssets t7 on
|
||||
t6.LiquidAssets=t7.oid left join GLHeader t8 on
|
||||
t6.GLHeader=t8.oid
|
||||
where t2.GCRecord is null and
|
||||
t2.GLDocumentType=5 and
|
||||
t1.PartnerType in (0,1) and
|
||||
t1.GCRecord is null
|
||||
group by t1.Oid,t2.CustomersFrom,t1.Customer,t1.PartnerType,
|
||||
t1.ConnectInfo,t2.CurrencyName,t2.DateExecution,t2.DatePayment,t4.CurrencyName
|
||||
|
||||
union all
|
||||
|
||||
select case when max(t2.GLDocumentType)=4 then '04-Compensation'
|
||||
when max(t2.GLDocumentType)=0 then '06-Mixed'
|
||||
end MainType,
|
||||
t1.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t1.Customer Customers,
|
||||
t1.PartnerType PartnerType,
|
||||
t1.ConnectInfo ConnectInfo,
|
||||
t3.CurrencyName CurrencyName,
|
||||
0 DebitTotalHUF,
|
||||
case when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)*-1
|
||||
end CreditTotalHUF,
|
||||
0 DebitTotalDEV,
|
||||
case when t1.PartnerType=0 and sum(t1.InAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)*-1
|
||||
when t1.PartnerType=0 and sum(t1.InAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.OutAmountDEV2)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV)<>0 and ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName then sum(t1.InAmountDEV2)*-1
|
||||
end CreditTotalDEV,
|
||||
(case when t1.PartnerType=0 and sum(t1.InAmountHUF)<>0 then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountHUF)<>0 then sum(t1.AmountHUF)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountHUF)<>0 then sum(t1.AmountHUF)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountHUF)<>0 then sum(t1.AmountHUF)*-1
|
||||
end)*-1 BallanceHUF,
|
||||
(case when t1.PartnerType=0 and sum(t1.InAmountDEV)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)=t3.CurrencyName then sum(t1.AmountDEV)*-1
|
||||
when t1.PartnerType=0 and sum(t1.InAmountDEV2)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF' then sum(t1.InAmountDEV2)
|
||||
when t1.PartnerType=0 and sum(t1.OutAmountDEV2)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF' then sum(t1.OutAmountDEV2)*-1
|
||||
when t1.PartnerType=1 and sum(t1.OutAmountDEV2)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF' then sum(t1.OutAmountDEV2)
|
||||
when t1.PartnerType=1 and sum(t1.InAmountDEV2)<>0 and
|
||||
ifnull(t4.CurrencyName,t3.CurrencyName)<>t3.CurrencyName and t4.Currency<>'HUF'then sum(t1.InAmountDEV2)*-1
|
||||
else 0
|
||||
end)*-1 BallanceDEV,
|
||||
max(t3.ShortName+', '+t2.DocumentNumber) ShortName,
|
||||
'' Description,
|
||||
t2.DateExecution DateExecution,
|
||||
t2.DateExecution DateCreated,
|
||||
t2.DateExecution DatePayment,
|
||||
0 DelayedDay,
|
||||
'' DelayedRange,
|
||||
t4.CurrencyName CurrencyName_Account,
|
||||
0 AmountHUF_Account,
|
||||
0 AmountDEV_Account,
|
||||
max(t4.DateExecution) DateExecution_Account
|
||||
from GLRows t1
|
||||
join GLHeader t2 on t1.GLHeader=t2.Oid
|
||||
left join GLCompensation t5 on t2.Oid=t5.Oid left
|
||||
join LiquidAssets t3 on t5.LiquidAssets_Main=t3.Oid
|
||||
left join vv_PartnerConnectionInfoAccount t4 on t2.CustomersFrom=t4.CustomersFrom and
|
||||
t1.Customer=t4.Customers and t1.PartnerType=t4.PartnerType and t1.ConnectInfo=t4.ConnectInfo
|
||||
where t2.GCRecord is null and
|
||||
t2.GLDocumentType in (4,0) and
|
||||
t1.PartnerType in (0,1) and
|
||||
t1.GCRecord is null
|
||||
group by t1.Oid,t2.CustomersFrom,t1.Customer,t1.PartnerType,
|
||||
t1.ConnectInfo,t3.CurrencyName,t4.Currency,t2.DateExecution,t4.DatePayment,t4.CurrencyName
|
||||
|
||||
union all
|
||||
|
||||
select '01-Account' MainType,
|
||||
t1.Oid Oid,
|
||||
t1.CustomersFrom CustomersFrom,
|
||||
t1.Customers Customers,
|
||||
0 PartnerType,
|
||||
t1.ConnectInfo ConnectInfo,
|
||||
t1.CurrencyName CurrencyName,
|
||||
t1.TotalBruttoHUF DebitTotalHUF,
|
||||
0 CreditTotalHUF,
|
||||
t1.TotalBruttoDEV DebitTotalDEV,
|
||||
0 CreditTotalDEV,
|
||||
t1.TotalBruttoHUF BallanceHUF,
|
||||
t1.TotalBruttoDEV BallanceDEV,
|
||||
'' ShortName,
|
||||
t1.Description Description,
|
||||
t1.DateExecution DateExecution,
|
||||
t1.DateCreated DateCreated,
|
||||
t1.DatePayment DatePayment,
|
||||
DATEDIFF(t1.DatePayment,curdate()) DelayedDay,
|
||||
case when DATEDIFF(t1.DatePayment,curdate())<=0 then 0
|
||||
when DATEDIFF(t1.DatePayment,curdate())>0 and DATEDIFF(t1.DatePayment,curdate())<=15 then 1
|
||||
when DATEDIFF(t1.DatePayment,curdate())>15 and DATEDIFF(t1.DatePayment,curdate())<=30 then 2
|
||||
when DATEDIFF(t1.DatePayment,curdate())>30 and DATEDIFF(t1.DatePayment,curdate())<=60 then 3
|
||||
when DATEDIFF(t1.DatePayment,curdate())>60 and DATEDIFF(t1.DatePayment,curdate())<=90 then 4
|
||||
when DATEDIFF(t1.DatePayment,curdate())>90 and DATEDIFF(t1.DatePayment,curdate())<=180 then 5
|
||||
when DATEDIFF(t1.DatePayment,curdate())>180 and DATEDIFF(t1.DatePayment,curdate())<=360 then 6
|
||||
when DATEDIFF(t1.DatePayment,curdate())>360 then 7
|
||||
end DelayedRange,
|
||||
t1.CurrencyName CurrencyName_Account,
|
||||
t1.TotalBruttoHUF AmountHUF_Account,
|
||||
t1.TotalBruttoDEV AmountDEV_Account,
|
||||
t1.DateExecution DateExecution_Account
|
||||
from InvoiceHeader t1
|
||||
where t1.GLAccounts is null and
|
||||
t1.IsEditable=0 and
|
||||
t1.GCRecord is null
|
||||
|
||||
union all
|
||||
|
||||
select '01-Account' MainType,
|
||||
t1.Oid Oid,
|
||||
t1.CustomersFrom CustomersFrom,
|
||||
t1.Customers Customers,
|
||||
1 PartnerType,
|
||||
t1.DocumentNumber ConnectInfo,
|
||||
t1.F_CurrencyName CurrencyName,
|
||||
t1.F_AmountBruttoHUF DebitTotalHUF,
|
||||
0 CreditTotalHUF,
|
||||
t1.F_AmountBruttoDEV DebitTotalDEV,
|
||||
0 CreditTotalDEV,
|
||||
t1.F_AmountBruttoHUF BallanceHUF,
|
||||
t1.F_AmountBruttoDEV BallanceDEV,
|
||||
'' ShortName,
|
||||
'' Description,
|
||||
t1.F_DateExecution DateExecution,
|
||||
t1.F_DateCreated DateCreated,
|
||||
t1.F_DatePayment DatePayment,
|
||||
DATEDIFF(t1.F_DatePayment,curdate()) DelayedDay,
|
||||
case when DATEDIFF(t1.F_DatePayment,curdate())<=0 then 0
|
||||
when DATEDIFF(t1.F_DatePayment,curdate())>0 and DATEDIFF(t1.F_DatePayment,curdate())<=15 then 1
|
||||
when DATEDIFF(t1.F_DatePayment,curdate())>15 and DATEDIFF(t1.F_DatePayment,curdate())<=30 then 2
|
||||
when DATEDIFF(t1.F_DatePayment,curdate())>30 and DATEDIFF(t1.F_DatePayment,curdate())<=60 then 3
|
||||
when DATEDIFF(t1.F_DatePayment,curdate())>60 and DATEDIFF(t1.F_DatePayment,curdate())<=90 then 4
|
||||
when DATEDIFF(t1.F_DatePayment,curdate())>90 and DATEDIFF(t1.F_DatePayment,curdate())<=180 then 5
|
||||
when DATEDIFF(t1.F_DatePayment,curdate())>180 and DATEDIFF(t1.F_DatePayment,curdate())<=360 then 6
|
||||
when DATEDIFF(t1.F_DatePayment,curdate())>360 then 7
|
||||
end DelayedRange,
|
||||
t1.F_CurrencyName CurrencyName_Account,
|
||||
t1.F_AmountBruttoHUF AmountHUF_Account,
|
||||
t1.F_AmountBruttoDEV AmountDEV_Account,
|
||||
t1.F_DateExecution DateExecution_Account
|
||||
from RegistryHeader t1
|
||||
left join RegistryType t2 on t1.RegistryType=t2.Oid
|
||||
where t1.GCRecord is null and
|
||||
t1.F_GLAccounts is null and
|
||||
t1.IsEditable=0 and
|
||||
t1.IsStorno=0 and
|
||||
t2.RegistryMainType=0 and
|
||||
t1.RegistryAcceptState=0
|
||||
+56
@@ -0,0 +1,56 @@
|
||||
DROP TABLE IF EXISTS vv_PartnerConnectionInfoDetailGroup;
|
||||
DROP VIEW IF EXISTS vv_PartnerConnectionInfoDetailGroup;
|
||||
CREATE view vv_PartnerConnectionInfoDetailGroup
|
||||
as
|
||||
SELECT MAX(CAST(t1.Oid AS CHAR(100))) Oid, /*varchart nem ismeri???*/
|
||||
t1.CustomersFrom CustomersFrom,
|
||||
t1.Customers Customers,
|
||||
t1.PartnerType PartnerType,
|
||||
t1.ConnectInfo ConnectInfo,
|
||||
max(t2.ShortName) Currency,
|
||||
sum(t1.DebitTotalHUF) DebitTotalHUF,
|
||||
SUM(t1.CreditTotalHUF) CreditTotalHUF,
|
||||
sum(t1.DebitTotalDEV) DebitTotalDEV,
|
||||
SUM(t1.CreditTotalDEV) CreditTotalDEV,
|
||||
SUM(t1.BallanceHUF) BallanceHUF,
|
||||
SUM(t1.BallanceDEV) BallanceDEV,
|
||||
case when t1.PartnerType=1 then SUM(t1.BallanceHUF)*-1 else 0 end BallanceHUF_P,
|
||||
case when t1.PartnerType=1 then SUM(t1.BallanceDEV)*-1 else 0 end BallanceDEV_P,
|
||||
case when t1.PartnerType=0 then SUM(t1.BallanceHUF) else 0 end BallanceHUF_R,
|
||||
case when t1.PartnerType=0 then SUM(t1.BallanceDEV) else 0 end BallanceDEV_R,
|
||||
(case when t1.PartnerType=0 then SUM(t1.BallanceHUF) else 0 end) -
|
||||
(case when t1.PartnerType=1 then SUM(t1.BallanceHUF)*-1 else 0 end) BallanceHUF_B,
|
||||
(case when t1.PartnerType=0 then SUM(t1.BallanceDEV) else 0 end) -
|
||||
(case when t1.PartnerType=1 then SUM(t1.BallanceDEV)*-1 else 0 end) BallanceDEV_B,
|
||||
max(t3.ShortName) Currency_Account,
|
||||
sum(t1.AmountHUF_Account) AmountHUF_Account,
|
||||
sum(t1.AmountDEV_Account) AmountDEV_Account,
|
||||
case when max(t3.ShortName)='HUF' then
|
||||
case when round(SUM(t1.BallanceHUF),0)=0 then 1
|
||||
else 0
|
||||
end
|
||||
else
|
||||
case when round(SUM(t1.BallanceDEV),2)=0 then 1
|
||||
else 0
|
||||
end
|
||||
end BallanceState,
|
||||
case when max(t3.ShortName)='HUF' then -1
|
||||
when t1.CurrencyName_Account IS null then -1
|
||||
else
|
||||
case when round(SUM(t1.BallanceDEV),2)=0 and round(SUM(t1.BallanceHUF),0)<>0 then 1
|
||||
else 0
|
||||
end
|
||||
end BallanceRateDiff,
|
||||
max(t4.DateExecution) DateExecution_Account,
|
||||
MAX(t4.DateCreated) DateCreated_Account
|
||||
from vv_PartnerConnectionInfoDetail t1
|
||||
left join CurrencyName t2 on t1.CurrencyName=t2.Oid
|
||||
left join CurrencyName t3 on t1.CurrencyName_Account=t3.Oid
|
||||
left join vv_PartnerConnectionInfoAccount t4 on
|
||||
t1.CustomersFrom=t4.CustomersFrom and
|
||||
t1.Customers=t4.Customers and
|
||||
t1.PartnerType=t4.PartnerType and
|
||||
t1.ConnectInfo=t4.ConnectInfo and
|
||||
t4.MainType='01-Account'
|
||||
|
||||
group by t1.CustomersFrom,t1.Customers,t1.PartnerType,t1.ConnectInfo,t1.CurrencyName_Account
|
||||
@@ -0,0 +1,10 @@
|
||||
DROP TABLE IF EXISTS vv_ProductSelect;
|
||||
DROP VIEW IF EXISTS vv_ProductSelect;
|
||||
CREATE VIEW vv_ProductSelect
|
||||
AS
|
||||
SELECT CASE WHEN t2.Oid IS NULL THEN t1.Oid ELSE t2.Oid END Oid,
|
||||
t1.Oid Products,
|
||||
t2.oid StorageComputed
|
||||
FROM Products t1 LEFT JOIN StorageComputed t2 ON
|
||||
t1.Oid=t2.Products
|
||||
WHERE t1.GCRecord IS NULL AND t2.GCRecord IS NULL;
|
||||
@@ -0,0 +1,28 @@
|
||||
CREATE view vv_RegistryBankTransfer
|
||||
as
|
||||
select t1.Oid Oid,
|
||||
t1.RegistryHeader RegistryHeader,
|
||||
t1.AmountHUF AmountHUF,
|
||||
t1.AmountDEV AmountDEV,
|
||||
t1.DatePayment DatePayment,
|
||||
t1.IsBlocked IsBlocked,
|
||||
t1.Note Note,
|
||||
t1.BankSavedFileName BankSavedFileName,
|
||||
ifnull(t3.BallanceHUF,t2.F_AmountBruttoHUF) BallanceHUF,
|
||||
ifnull(t3.BallanceDEV,t2.F_AmountBruttoDEV) BallanceDEV,
|
||||
t1.AmountHUF-ifnull(t3.BallanceHUF,t2.F_AmountBruttoHUF) DifferenceHUF,
|
||||
t1.AmountDEV-ifnull(t3.BallanceDEV,t2.F_AmountBruttoDEV) DifferenceDEV,
|
||||
case when round(ifnull(t3.BallanceHUF,t2.F_AmountBruttoHUF),2)=0 then 0
|
||||
when ifnull(t3.BallanceHUF,t2.F_AmountBruttoHUF)>=t1.AmountHUF then t1.AmountHUF
|
||||
when ifnull(t3.BallanceHUF,t2.F_AmountBruttoHUF)<=t1.AmountHUF then ifnull(t3.BallanceHUF,t2.F_AmountBruttoHUF)
|
||||
end OfferedHUF,
|
||||
case when round(ifnull(t3.BallanceDEV,t2.F_AmountBruttoDEV),2)=0 then 0
|
||||
when ifnull(t3.BallanceDEV,t2.F_AmountBruttoDEV)>=t1.AmountDEV then t1.AmountDEV
|
||||
when ifnull(t3.BallanceDEV,t2.F_AmountBruttoDEV)<=t1.AmountDEV then ifnull(t3.BallanceDEV,t2.F_AmountBruttoDEV)
|
||||
end OfferedDEV,
|
||||
t1.BankPrepareName BankPrepareName
|
||||
from RegistryBankTransfer t1
|
||||
join RegistryHeader t2 on t1.RegistryHeader=t2.Oid
|
||||
left join PCIGroup t3 on t2.CustomersFrom=t3.CustomersFrom
|
||||
and t2.Customers=t3.Customers and t3.PartnerType=1 and t2.DocumentNumber=t3.ConnectInfo
|
||||
where t1.GCRecord is null and t2.RegistryAcceptState=0
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
CREATE view vv_RegistryBankTransferPrepareName
|
||||
as
|
||||
select MAX(CAST(Oid AS CHAR(100))) Oid,
|
||||
BankPrepareName
|
||||
from RegistryBankTransfer
|
||||
where Ifnull(BankPrepareName,'')<>''
|
||||
group by BankPrepareName
|
||||
@@ -0,0 +1,70 @@
|
||||
CREATE view vv_WaitforRateDiff
|
||||
as
|
||||
select t1.Oid Oid,
|
||||
t2.CustomersFrom CustomersFrom,
|
||||
t1.PartnerType PartnerType,
|
||||
t1.Customer Customers,
|
||||
t1.ConnectInfo ConnectInfo,
|
||||
t3.DateExecution DateExecution_Account,
|
||||
t3.CurrencyName CurrencyName_Account,
|
||||
round(t4.AmountDEV_Account,2) AmountDEV_Account,
|
||||
round(t4.AmountHUF_Account,2) AmountHUF_Account,
|
||||
round(t4.BallanceDEV,2) BallanceDEV_Account,
|
||||
case when round(t4.AmountDEV_Account,2)<>0 then round(round(t4.AmountHUF_Account,2)/round(t4.AmountDEV_Account,2),2) else 0 end CurrencyRate_Account,
|
||||
t1.LiquidAssets LiquidAssets,
|
||||
t2.DateExecution DateExecution,
|
||||
round(t1.InAmountDEV,2) InAmountDEV,
|
||||
round(t1.OutAmountDEV,2) OutAmountDEV,
|
||||
round(t1.InAmountDEV2,2) InAmountDEV2,
|
||||
round(t1.OutAmountDEV2,2) OutAmountDEV2,
|
||||
case when InAmountHUF>0 then
|
||||
case when t1.InAmountDEV <>0 then round(t1.InAmountHUF,2)/round(t1.InAmountDEV,2)
|
||||
else 0
|
||||
end
|
||||
else
|
||||
case when t1.OutAmountDEV <>0 then round(t1.OutAmountHUF,2)/round(t1.OutAmountDEV,2)
|
||||
else 0
|
||||
end
|
||||
end CurrencyRate,
|
||||
round(t1.InAmountHUF,2) InAmountHUF,
|
||||
round(t1.OutAmountHUF,2) OutAmountHUF,
|
||||
case when t3.CurrencyName=t5.CurrencyName then round(t1.InAmountDEV,2)* round(t3.CurrencyRate,2)
|
||||
else round(t1.InAmountDEV2,2)* round(t3.CurrencyRate,2)
|
||||
end InAmountHUF_Account,
|
||||
case when t3.CurrencyName=t5.CurrencyName then round(t1.OutAmountDEV,2)*round(t3.CurrencyRate,2)
|
||||
else round(t1.OutAmountDEV2,2)*round(t3.CurrencyRate,2)
|
||||
end OutAmountHUF_Account,
|
||||
case when t3.CurrencyName=t5.CurrencyName then round(t1.InAmountDEV,2)* round(t3.CurrencyRate,2)
|
||||
else round(t1.InAmountDEV2,2)* round(t3.CurrencyRate,2)
|
||||
end - round(t1.InAmountHUF,2) InAmountHUF_Diff,
|
||||
case when t3.CurrencyName=t5.CurrencyName then round(t1.OutAmountDEV,2)*round(t3.CurrencyRate,2)
|
||||
else round(t1.OutAmountDEV2,2)*round(t3.CurrencyRate,2)
|
||||
end - round(t1.OutAmountHUF,2) OutAmountHUF_Diff,
|
||||
t1.GLRowsRatediff GLRowsRatediff,
|
||||
case when t1.PartnerType = 0 Then
|
||||
case when case when t3.CurrencyName=t5.CurrencyName then round(t1.InAmountDEV,2)* round(t3.CurrencyRate,2)
|
||||
else round(t1.InAmountDEV2,2)* round(t3.CurrencyRate,2)
|
||||
end - round(t1.InAmountHUF,2) > 0 Then -1
|
||||
else 1
|
||||
end
|
||||
when t1.PartnerType = 1 Then
|
||||
case when case when t3.CurrencyName=t5.CurrencyName then round(t1.OutAmountDEV,2)*round(t3.CurrencyRate,2)
|
||||
else round(t1.OutAmountDEV2,2)*round(t3.CurrencyRate,2)
|
||||
end - round(t1.OutAmountHUF,2) > 0 Then 1
|
||||
else -1
|
||||
end
|
||||
else 0
|
||||
end RateDiffState
|
||||
from GLRows t1
|
||||
left join GLHeader t2 on t1.GLHeader=t2.Oid
|
||||
join vv_PartnerConnectionInfoAccount t3 on t2.CustomersFrom=t3.CustomersFrom
|
||||
and t1.PartnerType=t3.PartnerType and t1.Customer=t3.Customers and t1.ConnectInfo=t3.ConnectInfo
|
||||
left join PCIGroup t4 on t2.CustomersFrom=t4.CustomersFrom
|
||||
and t1.PartnerType=t4.PartnerType and t1.Customer=t4.Customers and t1.ConnectInfo=t4.ConnectInfo
|
||||
left join LiquidAssets t5 on t1.LiquidAssets=t5.Oid
|
||||
left join CurrencyName t6 on t5.CurrencyName=t6.Oid
|
||||
left join CurrencyName t7 on t3.CurrencyName=t7.Oid
|
||||
where t2.GCRecord is null and
|
||||
t2.GLDocumentType in (2,3,4) and
|
||||
t6.ShortName <> 'HUF' and ifnull(t7.ShortName,'HUF')<>'HUF' and
|
||||
((t1.PartnerType=0 and t1.InAmountHUF>0) or (t1.PartnerType=1 and t1.OutAmountHUF>0))
|
||||
+193
@@ -0,0 +1,193 @@
|
||||
|
||||
|
||||
SELECT 1 As "PartnerType",
|
||||
0 As "GLRowsTypeVAT",
|
||||
t1."Oid" As "Oid",
|
||||
t2."CustomersFrom" As "CustomersFrom",
|
||||
t2."Customers" As "Customers",
|
||||
t2."F_DateExecution" As "DateExecution",
|
||||
t2."DocumentNumber" As "DocumentNumber",
|
||||
t2."RegistryNumber" As "RegistryNumber",
|
||||
CASE WHEN coalesce(t1."IsReInvoice",false)=false THEN t3."ChartOfAccounts"
|
||||
ELSE t8."ChartOfAccounts2"
|
||||
END As "DebitChartOfAccounts",
|
||||
t9."ChartOfAccountsIn" As "CreditChartOfAccounts",
|
||||
t1."Controlling" As "Controlling",
|
||||
t1."JobNumberObjects" As "JobNumberObjects",
|
||||
t7."UniqueObjects" As "UniqueObjects",
|
||||
t1."CostPlace" As "CostPlace",
|
||||
t1."CostHolder" As "CostHolder",
|
||||
t2."F_CurrencyRate" As "CurrencyRate",
|
||||
t1."Amount" As "AmountHUF",
|
||||
CASE WHEN t2."F_CurrencyRate"<>0 AND t6."ShortName"<>'HUF' THEN ROUND(cast(t1."Amount"/t2."F_CurrencyRate" AS numeric),2) ELSE 0 END As "AmountDEV",
|
||||
t2."ShortName" As "Note1",
|
||||
'' As "Note2",
|
||||
NULL As "VAT",
|
||||
t1."ChartOfAccounts" As "ChartOfAccounts2",
|
||||
coalesce(t1."IsReInvoice",false) As "IsReinvoice",
|
||||
t1."ContractRows" As "ContractRows",
|
||||
coalesce(t1."F_ReadyforBookEntryRows",false) As "ReadyforBookEntryRows",
|
||||
t2."Oid" As "RegistryHeader",
|
||||
NULL As "InvoiceHeader",
|
||||
t2."CurrentWorkflowSystemSteps" As "WorkflowSystemSteps",
|
||||
t1."WorkflowMessage" "WorkflowMessage"
|
||||
from "RegistryRowsFinancialControlling" t1 join "RegistryHeader" t2 on
|
||||
t1."RegistryHeader"=t2."Oid" LEFT JOIN "Controlling" t3 ON
|
||||
t1."Controlling"=t3."Oid" LEFT JOIN "Customers" t4 ON
|
||||
t2."Customers"=t4."Oid" LEFT JOIN "CustomersGLParameters" t5 ON
|
||||
t4."CustomersGLParameters"=t5."Oid" LEFT JOIN "CurrencyName" t6 ON
|
||||
t2."F_CurrencyName"=t6."Oid" LEFT JOIN "ContractRows" t7 ON
|
||||
t1."ContractRows"=t7."Oid" left join "ControllingYear" t8 on
|
||||
t3."Oid"=t8."Controlling" and extract(year from cast(t2."F_DateExecution" as timestamp))=t8."AccountYear" left join "CustomersGLParametersYear" t9 on
|
||||
t5."Oid"=t9."CustomersGLParameters" and extract(year from cast(t2."F_DateExecution"as timestamp))=t9."AccountYear"
|
||||
WHERE t1."GCRecord" IS NULL AND
|
||||
coalesce(t2."IsEditable",false)=false AND
|
||||
t2."F_GLAccounts" IS NULL AND
|
||||
coalesce(t1."F_ReadyforBookEntryRows",false)=false
|
||||
|
||||
UNION ALL
|
||||
|
||||
SELECT 1 As "PartnerType",
|
||||
1 As "GLRowsTypeVAT",
|
||||
t1."Oid"As " Oid",
|
||||
t2."CustomersFrom" As "CustomersFrom",
|
||||
t2."Customers" As "Customers",
|
||||
coalesce(coalesce(t1."DateVAT",t2."F_DateVAT"),t2."F_DateExecution") As "DateExecution",
|
||||
t2."DocumentNumber" As "DocumentNumber",
|
||||
t2."RegistryNumber" As "RegistryNumber",
|
||||
t3."ChartOfAccountsIn" As "DebitChartOfAccounts",
|
||||
case when coalesce(t3."InversState",false)=true then t7."ChartOfAccountsOut"
|
||||
else t9."ChartOfAccountsIn" end "CreditChartOfAccounts",
|
||||
NULL As "Controlling",
|
||||
NULL As "JobNumberObjects",
|
||||
NULL As "UniqueObjects",
|
||||
NULL As "CostPlace",
|
||||
NULL As "CostHolder",
|
||||
1 As "CurrencyRate",
|
||||
CASE WHEN t1."VAT" IS NULL THEN 0
|
||||
WHEN t1."VAT" IS NOT NULL THEN
|
||||
case when t3."InversState"=false then ROUND(cast(t1."BruttoAmount"/(1+t3."KeyValue")*t3."KeyValue" as numeric),0)
|
||||
else ROUND(cast(t1."BruttoAmount"/(1+t3."InversKeyValue")*t3."InversKeyValue" as numeric),0) end
|
||||
END "AmountHUF",
|
||||
0 As "AmountDEV",
|
||||
t2."ShortName" As "Note1",
|
||||
'' As "Note2",
|
||||
t1."VAT" As "VAT",
|
||||
NULL As "ChartOfAccounts2",
|
||||
false As "IsReinvoice",
|
||||
NULL As "ContractRows",
|
||||
coalesce(t1."F_ReadyforBookEntryRows",false) As "ReadyforBookEntryRows",
|
||||
t2."Oid" As "RegistryHeader",
|
||||
NULL As "InvoiceHeader",
|
||||
t2."CurrentWorkflowSystemSteps" As "WorkflowSystemSteps",
|
||||
'' "WorkflowMessage"
|
||||
from "RegistryRowsFinancial" t1 join "RegistryHeader" t2 on
|
||||
t1."RegistryHeader"=t2."Oid" LEFT JOIN "VAT" t3 ON
|
||||
t1."VAT"=t3."Oid" LEFT JOIN "Customers" t4 ON
|
||||
t2."Customers"=t4."Oid" LEFT JOIN "CustomersGLParameters" t5 ON
|
||||
t4."CustomersGLParameters"=t5."Oid" LEFT JOIN "CurrencyName" t6 ON
|
||||
t2."F_CurrencyName"=t6."Oid" left join "VATYear" t7 on
|
||||
t3."Oid"=t7."VAT" and extract(year from cast(t2."F_DateExecution" as timestamp))=t7."AccountYear" left join "CustomersGLParametersYear" t9 on
|
||||
t5."Oid"=t9."CustomersGLParameters" and extract(year from cast(t2."F_DateExecution" as timestamp))=t9."AccountYear"
|
||||
WHERE t1."GCRecord" IS NULL AND
|
||||
coalesce(t2."IsEditable",false)=false AND
|
||||
t2."F_GLAccounts" IS NULL AND
|
||||
coalesce(t1."F_ReadyforBookEntryRows",false)=false
|
||||
|
||||
UNION ALL
|
||||
|
||||
SELECT 0 As "PartnerType",
|
||||
0 As "GLRowsTypeVAT",
|
||||
t1."Oid" As "Oid",
|
||||
t2."CustomersFrom" As "CustomersFrom",
|
||||
t2."Customers" As "Customers",
|
||||
t2."DateExecution" As "DateExecution",
|
||||
t2."DocumentNumber" As "DocumentNumber",
|
||||
'' As "RegistryNumber",
|
||||
t11."ChartOfAccountsOut" As "DebitChartOfAccounts",
|
||||
coalesce(t12."ChartOfAccounts",t10."ChartOfAccounts") As "CreditChartOfAccounts",
|
||||
coalesce(t8."Controlling",t1."Controlling") As "Controlling",
|
||||
coalesce(t8."JobNumberObjects",t1."JobNumberObjects") As "JobNumberObjects",
|
||||
coalesce(t8."UniqueObjects",t1."UniqueObjects") As "UniqueObjects",
|
||||
coalesce(t8."CostPlace",t1."CostPlace") As "CostPlace",
|
||||
coalesce(t8."CostHolder",t1."CostHolder") As "CostHolder",
|
||||
t2."CurrencyRate" As "CurrencyRate",
|
||||
(t1."ListPriceHUF"-t1."DiscountPriceHUF")*t1."QTT" As "AmountHUF",
|
||||
(t1."ListPriceDEV"-t1."DiscountPriceDEV")*t1."QTT" As "AmountDEV",
|
||||
t2."Description" As "Note1",
|
||||
'' As "Note2",
|
||||
NULL As "VAT",
|
||||
t1."ChartOfAccounts" As "ChartOfAccounts2",
|
||||
false As "IsReinvoice",
|
||||
t1."ContractRows" As "ContractRows",
|
||||
coalesce(t1."ReadyforBookEntryRows",false) As "ReadyforBookEntryRows",
|
||||
NULL As "RegistryHeader",
|
||||
t2."Oid" As "InvoiceHeader",
|
||||
t1."WorkflowSystemSteps" As "WorkflowSystemSteps",
|
||||
'' "WorkflowMessage"
|
||||
FROM "InvoiceRows" t1 JOIN "InvoiceHeader" t2 ON
|
||||
t1."InvoiceHeader"=t2."Oid" LEFT JOIN "Controlling" t3 ON
|
||||
t1."Controlling"=t3."Oid" LEFT JOIN "Customers" t4 ON
|
||||
t2."Customers"=t4."Oid" LEFT JOIN "CustomersGLParameters" t5 ON
|
||||
t4."CustomersGLParameters"=t5."Oid" LEFT JOIN "CurrencyName" t6 ON
|
||||
t2."CurrencyName"=t6."Oid" LEFT JOIN "InvoiceType" t7 ON
|
||||
t2."InvoiceType"=t7."Oid" LEFT JOIN "ContractRows" t8 ON
|
||||
t1."ContractRows"=t8."Oid" LEFT JOIN "Controlling" t9 ON
|
||||
t8."Controlling"=t9."Oid" left join "ControllingYear" t10 on
|
||||
t3."Oid"=t10."Controlling" and extract(year from cast(t2."DateExecution" as timestamp))=t10."AccountYear" left join "CustomersGLParametersYear" t11 on
|
||||
t5."Oid"=t11."CustomersGLParameters" and extract(year from cast(t2."DateExecution" as timestamp))=t11."AccountYear" left join "ControllingYear" t12 on
|
||||
t9."Oid"=t12."Controlling" and extract(year from cast(t2."DateExecution" as timestamp))=t12."AccountYear"
|
||||
WHERE t1."GCRecord" IS NULL AND
|
||||
coalesce(t2."IsEditable",false)=false AND
|
||||
t2."GLAccounts" IS NULL AND
|
||||
coalesce(t1."ReadyforBookEntryRows",false)=false AND
|
||||
t7."InvoiceTypeBase" IN (1,2,3) AND
|
||||
coalesce(t2."IsProforma",false)=false
|
||||
|
||||
UNION ALL
|
||||
|
||||
SELECT 0 As "PartnerType",
|
||||
1 As "GLRowsTypeVAT",
|
||||
t1."Oid" As "Oid",
|
||||
t2."CustomersFrom" As "CustomersFrom",
|
||||
t2."Customers" As "Customers",
|
||||
t2."DateExecution" As "DateExecution",
|
||||
t2."DocumentNumber" As "DocumentNumber",
|
||||
'' As "RegistryNumber",
|
||||
t9."ChartOfAccountsOut" As "DebitChartOfAccounts",
|
||||
t7."ChartOfAccountsOut" As "CreditChartOfAccounts",
|
||||
NULL As "Controlling",
|
||||
NULL As "JobNumberObjects",
|
||||
NULL As "UniqueObjects",
|
||||
NULL As "CostPlace",
|
||||
NULL As "CostHolder",
|
||||
1 As "CurrencyRate2",
|
||||
t1."AmountVATHUF" As "AmountHUF",
|
||||
t1."AmountVATDEV" As "AmountDEV",
|
||||
t2."Description" As "Note1",
|
||||
'' As "Note2",
|
||||
t1."VAT" As "VAT",
|
||||
NULL As "ChartOfAccounts2",
|
||||
false As "IsReinvoice",
|
||||
NULL As "ContractRows",
|
||||
coalesce(t1."ReadyforBookEntryRows",false) As "ReadyforBookEntryRows",
|
||||
NULL As "RegistryHeader",
|
||||
t2."Oid" As "InvoiceHeader",
|
||||
Null As "WorkflowSystemSteps",
|
||||
'' "WorkflowMessage"
|
||||
from "InvoiceVATRows" t1 join "InvoiceHeader" t2 on
|
||||
t1."InvoiceHeader"=t2."Oid" LEFT JOIN "VAT" t3 ON
|
||||
t1."VAT"=t3."Oid" LEFT JOIN "Customers" t4 ON
|
||||
t2."Customers"=t4."Oid" LEFT JOIN "CustomersGLParameters" t5 ON
|
||||
t4."CustomersGLParameters"=t5."Oid" LEFT JOIN "CurrencyName" t6 ON
|
||||
t2."CurrencyName"=t6."Oid" LEFT JOIN "InvoiceType" t10 ON
|
||||
t2."InvoiceType"=t10."Oid" left join "VATYear" t7 on
|
||||
t3."Oid"=t7."VAT" and extract(year from cast(t2."DateExecution" as timestamp))=t7."AccountYear" left join "CustomersGLParametersYear" t9 on
|
||||
t5."Oid"=t9."CustomersGLParameters" and extract(year from cast(t2."DateExecution" as timestamp))=t9."AccountYear"
|
||||
WHERE t1."GCRecord" IS NULL AND
|
||||
coalesce(t2."IsEditable",false)=false AND
|
||||
t2."GLAccounts" IS NULL AND
|
||||
coalesce(t1."ReadyforBookEntryRows",false)=false AND
|
||||
coalesce(t2."IsProforma",false)=false AND
|
||||
t10."InvoiceTypeBase" IN (1,2,3)
|
||||
|
||||
+81
@@ -0,0 +1,81 @@
|
||||
|
||||
|
||||
SELECT '01-Account' AS "MainType",
|
||||
t2."Oid" AS "Oid",
|
||||
t2."CustomersFrom" AS "CustomersFrom",
|
||||
t1."Customer" AS "Customers",
|
||||
t1."PartnerType" AS "PartnerType",
|
||||
t2."DocumentNumber" AS "ConnectInfo",
|
||||
t2."CurrencyName" AS "CurrencyName",
|
||||
sum(t1."AmountHUF") AS "BallanceHuf",
|
||||
sum(t1."AmountDEV") AS "BallanceDev",
|
||||
t3."ShortName" AS "Currency",
|
||||
t2."DatePayment" AS "DatePayment",
|
||||
t2."DateCreated" AS "DateCreated",
|
||||
t2."DateExecution" AS "DateExecution",
|
||||
t2."CurrencyRate" AS "CurrencyRate",
|
||||
t2."DocumentNumber" AS "DocumentNumber",
|
||||
max(t2."RegistryNumber") AS "RegistryNumber"
|
||||
from "GLRows" t1
|
||||
join "GLHeader" t2 on t1."GLHeader"=t2."Oid"
|
||||
left join "CurrencyName" t3 on t2."CurrencyName"=t3."Oid"
|
||||
where t2."GCRecord" is null and
|
||||
t2."GLDocumentType"=1 and
|
||||
coalesce(t2."IsEditable", false) = false and
|
||||
t1."PartnerType" in (0,1) and
|
||||
t1."GCRecord" is null
|
||||
group by t2."Oid",t2."CustomersFrom",t1."Customer",t1."PartnerType",
|
||||
t2."DocumentNumber",t2."CurrencyName",t3."ShortName",t2."DateExecution",t2."DatePayment",
|
||||
t2."DateCreated",t2."DateExecution",t2."CurrencyRate"
|
||||
|
||||
union all
|
||||
|
||||
SELECT '01-Account' AS "MainType",
|
||||
t1."Oid" AS "Oid",
|
||||
t1."CustomersFrom" AS "CustomersFrom",
|
||||
t1."Customers" AS "Customers",
|
||||
0 AS "PartnerType",
|
||||
t1."DocumentNumber" AS "ConnectInfo",
|
||||
t1."CurrencyName" AS currencyname,
|
||||
t1."TotalBruttoHUF" AS "BallanceHuf",
|
||||
t1."TotalBruttoDEV" AS "BallanceDev",
|
||||
t3."ShortName" AS "Currency",
|
||||
t1."DatePayment" AS "DatePayment",
|
||||
t1."DateCreated" AS "DateCreated",
|
||||
t1."DateExecution" AS "DateExecution",
|
||||
t1."CurrencyRate" AS "CurrencyRate",
|
||||
t1."DocumentNumber" AS "DocumentNumber",
|
||||
t1."DocumentNumber" AS "RegistryNumber"
|
||||
from "InvoiceHeader" t1
|
||||
left join "CurrencyName" t3 on t1."CurrencyName"=t3."Oid"
|
||||
where t1."GLAccounts" is null and
|
||||
t1."IsEditable"= false and
|
||||
t1."GCRecord" is null
|
||||
|
||||
union all
|
||||
|
||||
SELECT '01-Account' AS "MainType",
|
||||
t1."Oid" AS "Oid",
|
||||
t1."CustomersFrom" AS "CustomersFrom",
|
||||
t1."Customers" AS "Customers",
|
||||
1 AS "PartnerType",
|
||||
t1."DocumentNumber" AS "ConnectInfo",
|
||||
t1."F_CurrencyName" AS currencyname,
|
||||
t1."F_AmountBruttoHUF" AS "BallanceHuf",
|
||||
t1."F_AmountBruttoDEV" AS "BallanceDev",
|
||||
t3."ShortName" AS "Currency",
|
||||
t1."F_DatePayment" AS "DatePayment",
|
||||
t1."F_DateCreated" AS "DateCreated",
|
||||
t1."F_DateExecution" AS "DateExecution",
|
||||
t1."F_CurrencyRate" AS "CurrencyRate",
|
||||
t1."DocumentNumber" AS "DocumentNumber",
|
||||
t1."RegistryNumber" AS "RegistryNumber"
|
||||
from "RegistryHeader" t1
|
||||
left join "RegistryType" t2 on t1."RegistryType"=t2."Oid"
|
||||
left join "CurrencyName" t3 on t1."F_CurrencyName"=t3."Oid"
|
||||
where t1."GCRecord" is null and
|
||||
t1."F_GLAccounts" is null and
|
||||
t1."IsEditable"= false and
|
||||
t1."IsStorno"= false and
|
||||
t2."RegistryMainType"=0 and
|
||||
t1."RegistryAcceptState"=0
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
|
||||
|
||||
select t1."Oid" AS "Oid",
|
||||
t1."CustomersFrom" AS "CustomersFrom",
|
||||
t1."Customers" AS "Customers",
|
||||
t1."PartnerType" AS "PartnerType",
|
||||
t1."ConnectInfo" AS "ConnectInfo",
|
||||
t2."DocumentNumber" AS "DocumentNumber",
|
||||
t2."RegistryNumber" AS "RegistryNumber",
|
||||
t1."DateExecution" AS "DateExecution",
|
||||
t1."DatePayment_Account"AS "DatePayment",
|
||||
t1."CurrencyName_Account" AS "CurrencyName_Account",
|
||||
t1."AmountHUF_Account" AS "AmountHUF",
|
||||
t1."AmountDEV_Account" AS "AmountDEV",
|
||||
t1."BallanceHUF" AS "BallanceHUF",
|
||||
t1."BallanceDEV" AS "BallanceDEV",
|
||||
t1."InvoiceHeader" AS "InvoiceHeader"
|
||||
from "PCIDetail" t1 join
|
||||
"vv_PartnerConnectionInfoAccount" t2 on
|
||||
t1."CustomersFrom"=t2."CustomersFrom" and
|
||||
t1."Customers"=t2."Customers" and
|
||||
t1."PartnerType"=t2."PartnerType" and
|
||||
t1."ConnectInfo"=t2."ConnectInfo"
|
||||
+35
@@ -0,0 +1,35 @@
|
||||
|
||||
select
|
||||
t1."MainType" AS "MainType",
|
||||
t1."Oid" AS "Oid",
|
||||
t1."CustomersFrom" AS "CustomersFrom",
|
||||
t1."Customers" AS "Customers",
|
||||
t1."PartnerType" AS "PartnerType",
|
||||
t1."ConnectInfo" AS "ConnectInfo",
|
||||
t1."CurrencyName" AS "CurrencyName",
|
||||
t1."DebitTotalHUF" AS "DebitTotalHUF",
|
||||
t1."CreditTotalHUF" AS "CreditTotalHUF",
|
||||
t1."DebitTotalDEV" AS "DebitTotalDEV",
|
||||
t1."CreditTotalDEV" AS "CreditTotalDEV",
|
||||
t1."BallanceHUF" AS "BallanceHUF",
|
||||
t1."BallanceDEV" AS "BallanceDEV",
|
||||
t1."ShortName" AS "ShortName",
|
||||
t1."Description" AS "Description",
|
||||
t1."DateExecution" AS "DateExecution",
|
||||
t1."DateCreated" AS "DateCreated",
|
||||
t1."DatePayment" AS "DatePayment",
|
||||
t1."DelayedDay" AS "DelayedDay",
|
||||
t1."DelayedRange" AS "DelayedRange",
|
||||
t1."CurrencyName_Account" AS "CurrencyName_Account",
|
||||
t1."AmountHUF_Account" AS "AmountHUF_Account",
|
||||
t1."AmountDEV_Account" AS "AmountDEV_Account",
|
||||
t1."DateExecution_Account" AS "DateExecution_Account",
|
||||
t2."BallanceState" AS "BallanceState",
|
||||
t2."BallanceRateDiff" AS "BallanceRateDiff"
|
||||
from "vv_PartnerConnectionInfoDetail" t1
|
||||
join "vv_PartnerConnectionInfoDetailGroup" t2 on
|
||||
t1."CustomersFrom"=t2."CustomersFrom" and
|
||||
t1."Customers"=t2."Customers" and
|
||||
t1."PartnerType"=t2."PartnerType" and
|
||||
t1."ConnectInfo"=t2."ConnectInfo"
|
||||
|
||||
+405
@@ -0,0 +1,405 @@
|
||||
|
||||
|
||||
SELECT '01-Account' As "MainType",
|
||||
t2."Oid" As "Oid",
|
||||
t2."CustomersFrom" As "CustomersFrom",
|
||||
t1."Customer" As "Customers",
|
||||
t1."PartnerType" As "PartnerType",
|
||||
t1."ConnectInfo" As "ConnectInfo",
|
||||
t2."CurrencyName" As "CurrencyName",
|
||||
max(t3."AmountHUFBrutto") As "DebitTotalHUF",
|
||||
0 As "CreditTotalHUF",
|
||||
max(t3."AmountDEVBrutto") As "DebitTotalDEV",
|
||||
0 As "CreditTotalDEV",
|
||||
max(t3."AmountHUFBrutto") As "BallanceHUF",
|
||||
max(t3."AmountDEVBrutto") As "BallanceDEV",
|
||||
'' As "ShortName",
|
||||
'' As "Description",
|
||||
t2."DateExecution" As "DateExecution",
|
||||
t2."DateCreated" As "DateCreated",
|
||||
t2."DatePayment" As "DatePayment",
|
||||
CURRENT_DATE-Cast(t2."DatePayment" AS Date) As "DelayedDay",
|
||||
CASE WHEN CURRENT_DATE-Cast(t2."DatePayment" AS date)<=0 THEN 0
|
||||
WHEN CURRENT_DATE-Cast(t2."DatePayment" AS date)>0 AND CURRENT_DATE-Cast(t2."DatePayment" AS date)<=15 then 1
|
||||
WHEN CURRENT_DATE-Cast(t2."DatePayment" AS date)>15 and CURRENT_DATE-Cast(t2."DatePayment" AS date)<=30 then 2
|
||||
WHEN CURRENT_DATE-Cast(t2."DatePayment" AS date)>30 and CURRENT_DATE-Cast(t2."DatePayment" AS date)<=60 then 3
|
||||
WHEN CURRENT_DATE-Cast(t2."DatePayment" AS date)>60 and CURRENT_DATE-Cast(t2."DatePayment" AS date)<=90 then 4
|
||||
WHEN CURRENT_DATE-Cast(t2."DatePayment" AS date)>90 and CURRENT_DATE-Cast(t2."DatePayment" AS date)<=180 then 5
|
||||
WHEN CURRENT_DATE-Cast(t2."DatePayment" AS date)>180 and CURRENT_DATE-Cast(t2."DatePayment" AS date)<=360 then 6
|
||||
WHEN CURRENT_DATE-Cast(t2."DatePayment" AS date)>360 then 7
|
||||
END As "DelayedRange",
|
||||
t2."CurrencyName" As "CurrencyName_Account",
|
||||
SUM(t1."AmountHUF") As "AmountHUF_Account",
|
||||
SUM(t1."AmountDEV") As "AmountDEV_Account",
|
||||
t2."DateExecution" As "DateExecution_Account"
|
||||
from "GLRows" t1 join "GLHeader" t2 on
|
||||
t1."GLHeader"=t2."Oid" join "GLAccounts" t3 on
|
||||
t1."GLHeader"=t3."Oid"
|
||||
WHERE t2."GCRecord" IS NULL AND
|
||||
t2."GLDocumentType"=1 AND
|
||||
t2."IsEditable"=false AND
|
||||
t1."PartnerType" IN (0,1) AND
|
||||
t1."GCRecord" IS NULL
|
||||
GROUP BY t2."Oid",t2."CustomersFrom",t1."Customer",t1."PartnerType",
|
||||
t1."ConnectInfo",t2."CurrencyName",t2."DateExecution",t2."DateCreated",t2."DatePayment"
|
||||
|
||||
UNION ALL
|
||||
|
||||
SELECT '02-Bank' As "MainType",
|
||||
t1."Oid" As "Oid",
|
||||
t2."CustomersFrom" As "CustomersFrom",
|
||||
t1."Customer" As "Customers",
|
||||
t1."PartnerType" As "PartnerType",
|
||||
t1."ConnectInfo" As "ConnectInfo",
|
||||
t3."CurrencyName" As "CurrencyName",
|
||||
0 As "DebitTotalHUF",
|
||||
case WHEN t1."PartnerType"=0 and sum(t1."InAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountHUF")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountHUF")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountHUF")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountHUF")*-1
|
||||
WHEN t1."PartnerType"=0 and sum(t1."InAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."InAmountDEV2")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."OutAmountDEV2")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."OutAmountDEV2")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."InAmountDEV2")*-1
|
||||
end AS "CreditTotalHUF",
|
||||
0 AS "DebitTotalDEV",
|
||||
case WHEN t1."PartnerType"=0 and sum(t1."InAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountDEV")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountDEV")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountDEV")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountDEV")*-1
|
||||
WHEN t1."PartnerType"=0 and sum(t1."InAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."InAmountDEV2")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."OutAmountDEV2")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."OutAmountDEV2")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."InAmountDEV2")*-1
|
||||
end AS "CreditTotalDEV",
|
||||
(case WHEN t1."PartnerType"=0 and sum(t1."InAmountHUF")<>0 then sum(t1."AmountHUF")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountHUF")<>0 then sum(t1."AmountHUF")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountHUF")<>0 then sum(t1."AmountHUF")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountHUF")<>0 then sum(t1."AmountHUF")*-1
|
||||
end)*-1 AS "BallanceHUF",
|
||||
(case WHEN t1."PartnerType"=0 and sum(t1."InAmountDEV")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."InAmountDEV")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountDEV")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."OutAmountDEV")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountDEV")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."OutAmountDEV")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountDEV")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."InAmountDEV")*-1
|
||||
WHEN t1."PartnerType"=0 and sum(t1."InAmountDEV2")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" and t4."Currency"<>'HUF' then sum(t1."InAmountDEV2")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountDEV2")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" and t4."Currency"<>'HUF' then sum(t1."OutAmountDEV2")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountDEV2")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" and t4."Currency"<>'HUF' then sum(t1."OutAmountDEV2")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountDEV2")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" and t4."Currency"<>'HUF'then sum(t1."InAmountDEV2")*-1
|
||||
else 0
|
||||
end)*-1 AS "BallanceDEV",
|
||||
max(t3."ShortName"||', '||coalesce(t2."DocumentNumber",'')) AS "ShortName",
|
||||
'' AS "Description",
|
||||
t2."DateExecution" AS "DateExecution",
|
||||
t2."DateExecution" AS "DateCreated",
|
||||
t4."DatePayment" AS "DatePayment",
|
||||
0 AS "DelayedDay",
|
||||
0 AS "DelayedRange",
|
||||
t4."CurrencyName" AS "CurrencyName_Account",
|
||||
0 AS "AmountHUF_Account",
|
||||
0 AS "AmountDEV_Account",
|
||||
max(t4."DateExecution") AS "DateExecution_Account"
|
||||
from "GLRows" t1
|
||||
join "GLHeader" t2 on t1."GLHeader"=t2."Oid"
|
||||
left join "GLBank" t5 on t2."Oid"=t5."Oid"
|
||||
left join "LiquidAssets" t3 on t5."LiquidAssets_Main"=t3."Oid"
|
||||
left join "vv_PartnerConnectionInfoAccount" t4 on t2."CustomersFrom"=t4."CustomersFrom"
|
||||
and t1."Customer"=t4."Customers" and t1."PartnerType"=t4."PartnerType" and t1."ConnectInfo"=t4."ConnectInfo"
|
||||
where t2."GCRecord" is null and
|
||||
t2."GLDocumentType"=2 and
|
||||
t1."PartnerType" in (0,1) and
|
||||
t1."GCRecord" is null
|
||||
group by t1."Oid",t2."CustomersFrom",t1."Customer",t1."PartnerType",
|
||||
t1."ConnectInfo",t3."CurrencyName",t4."Currency",t2."DateExecution",t4."DatePayment",t4."CurrencyName"
|
||||
|
||||
union all
|
||||
|
||||
SELECT '03-Cassa' As "MainType",
|
||||
t1."Oid" As "Oid",
|
||||
t2."CustomersFrom" As "CustomersFrom",
|
||||
t1."Customer" As "Customers",
|
||||
t1."PartnerType" As "PartnerType",
|
||||
t1."ConnectInfo" As "ConnectInfo",
|
||||
t3."CurrencyName" As "CurrencyName",
|
||||
0 As "DebitTotalHUF",
|
||||
CASE WHEN t1."PartnerType"=0 AND SUM(t1."InAmountHUF")<>0 AND coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" THEN SUM(t1."AmountHUF")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountHUF")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountHUF")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountHUF")*-1
|
||||
WHEN t1."PartnerType"=0 and sum(t1."InAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."InAmountDEV2")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."OutAmountDEV2")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."OutAmountDEV2")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."InAmountDEV2")*-1
|
||||
end As "CreditTotalHUF",
|
||||
0 As "DebitTotalDEV",
|
||||
case WHEN t1."PartnerType"=0 and sum(t1."InAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountDEV")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountDEV")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountDEV")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountDEV")*-1
|
||||
WHEN t1."PartnerType"=0 and sum(t1."InAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."InAmountDEV2")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."OutAmountDEV2")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."OutAmountDEV2")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."InAmountDEV2")*-1
|
||||
end As "CreditTotalDEV",
|
||||
(case WHEN t1."PartnerType"=0 and sum(t1."InAmountHUF")<>0 then sum(t1."AmountHUF")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountHUF")<>0 then sum(t1."AmountHUF")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountHUF")<>0 then sum(t1."AmountHUF")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountHUF")<>0 then sum(t1."AmountHUF")*-1
|
||||
end)*-1 As "BallanceHUF",
|
||||
(case WHEN t1."PartnerType"=0 and sum(t1."InAmountDEV")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountDEV")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountDEV")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountDEV")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountDEV")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountDEV")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountDEV")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountDEV")*-1
|
||||
WHEN t1."PartnerType"=0 and sum(t1."InAmountDEV2")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" and t4."Currency"<>'HUF' then sum(t1."InAmountDEV2")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountDEV2")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" and t4."Currency"<>'HUF' then sum(t1."OutAmountDEV2")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountDEV2")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" and t4."Currency"<>'HUF' then sum(t1."OutAmountDEV2")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountDEV2")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" and t4."Currency"<>'HUF'then sum(t1."InAmountDEV2")*-1
|
||||
end)*-1 As "BallanceDEV",
|
||||
MAX(t3."ShortName"||', '||coalesce(t2."DocumentNumber",'')) As "ShortName",
|
||||
'' As "Description",
|
||||
t2."DateExecution" As "DateExecution",
|
||||
t2."DateExecution" As "DateCreated",
|
||||
t4."DatePayment" As "DatePayment",
|
||||
0 As "DelayedDay",
|
||||
0 As "DelayedRange",
|
||||
t4."CurrencyName" As "CurrencyName_Account",
|
||||
0 As "AmountHUF_Account",
|
||||
0 As "AmountDEV_Account",
|
||||
max(t4."DateExecution") As "DateExecution_Account"
|
||||
FROM "GLRows" t1
|
||||
join "GLHeader" t2 on t1."GLHeader"=t2."Oid"
|
||||
left join "GLCassa" t5 on t2."Oid"=t5."Oid"
|
||||
left join "LiquidAssets" t3 on t5."LiquidAssets_Cassa"=t3."Oid"
|
||||
left join "vv_PartnerConnectionInfoAccount" t4 on t2."CustomersFrom"=t4."CustomersFrom" and
|
||||
t1."Customer"=t4."Customers" and t1."PartnerType"=t4."PartnerType" and t1."ConnectInfo"=t4."ConnectInfo"
|
||||
where t2."GCRecord" is null and
|
||||
t2."GLDocumentType"=3 and
|
||||
t1."PartnerType" in (0,1) and
|
||||
t1."GCRecord" is null
|
||||
group by t1."Oid",t2."CustomersFrom",t1."Customer",t1."PartnerType",
|
||||
t1."ConnectInfo",t3."CurrencyName",t4."Currency",t2."DateExecution",t4."DatePayment",t4."CurrencyName"
|
||||
|
||||
union all
|
||||
|
||||
select '05-Ratediff' As "MainType",
|
||||
t1."Oid" As "Oid",
|
||||
t2."CustomersFrom" As "CustomersFrom",
|
||||
t1."Customer" As "Customers",
|
||||
t1."PartnerType" As "PartnerType",
|
||||
t1."ConnectInfo" As "ConnectInfo",
|
||||
t2."CurrencyName" As "CurrencyName",
|
||||
0 As "DebitTotalHUF",
|
||||
case WHEN t1."PartnerType"=0 and sum(t1."InAmountHUF")<>0 then sum(t1."AmountHUF")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountHUF")<>0 then sum(t1."AmountHUF")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountHUF")<>0 then sum(t1."AmountHUF")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountHUF")<>0 then sum(t1."AmountHUF")*-1
|
||||
end As "CreditTotalHUF",
|
||||
0 As "DebitTotalDEV",
|
||||
0 As "CreditTotalDEV",
|
||||
(case WHEN t1."PartnerType"=0 and sum(t1."InAmountHUF")<>0 then sum(t1."AmountHUF")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountHUF")<>0 then sum(t1."AmountHUF")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountHUF")<>0 then sum(t1."AmountHUF")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountHUF")<>0 then sum(t1."AmountHUF")*-1
|
||||
end)*-1 As "BallanceHUF",
|
||||
0 As "BallanceDEV",
|
||||
max(t7."ShortName"||', '||coalesce(t8."DocumentNumber",'')||', '||coalesce(t2."DocumentNumber",''))As "ShortName",
|
||||
'' As "Description",
|
||||
t2."DateExecution" As "DateExecution",
|
||||
t2."DateExecution" As "DateCreated",
|
||||
null As "DatePayment",
|
||||
0 As "DelayedDay",
|
||||
0 As "DelayedRange",
|
||||
t4."CurrencyName" As "CurrencyName_Account",
|
||||
0 As "AmountHUF_Account",
|
||||
0 As "AmountDEV_Account",
|
||||
max(t4."DateExecution") As "DateExecution_Account"
|
||||
from "GLRows" t1
|
||||
join "GLHeader" t2 on t1."GLHeader"=t2."Oid"
|
||||
left join "LiquidAssets" t3 on t1."LiquidAssets"=t3."Oid"
|
||||
left join "vv_PartnerConnectionInfoAccount" t4 on t2."CustomersFrom"=t4."CustomersFrom" and
|
||||
t1."Customer"=t4."Customers" and t1."PartnerType"=t4."PartnerType" and t1."ConnectInfo"=t4."ConnectInfo"
|
||||
left join "GLRows" t6 on
|
||||
t1."GLRowsRateDiff"=t6."Oid" left join "LiquidAssets" t7 on
|
||||
t6."LiquidAssets"=t7."Oid" left join "GLHeader" t8 on
|
||||
t6."GLHeader"=t8."Oid"
|
||||
where t2."GCRecord" is null and
|
||||
t2."GLDocumentType"=5 and
|
||||
t1."PartnerType" in (0,1) and
|
||||
t1."GCRecord" is null
|
||||
group by t1."Oid",t2."CustomersFrom",t1."Customer",t1."PartnerType",
|
||||
t1."ConnectInfo",t2."CurrencyName",t2."DateExecution",t2."DatePayment",t4."CurrencyName"
|
||||
|
||||
union all
|
||||
|
||||
select case when max(t2."GLDocumentType")=4 then '04-Compensation'
|
||||
when max(t2."GLDocumentType")=0 then '06-Mixed'
|
||||
end "MainType",
|
||||
t1."Oid" As "Oid",
|
||||
t2."CustomersFrom" As "CustomersFrom",
|
||||
t1."Customer" As "Customers",
|
||||
t1."PartnerType" As "PartnerType",
|
||||
t1."ConnectInfo" As "ConnectInfo",
|
||||
t3."CurrencyName" As "CurrencyName",
|
||||
0 As "DebitTotalHUF",
|
||||
case WHEN t1."PartnerType"=0 and sum(t1."InAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountHUF")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountHUF")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountHUF")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountHUF")*-1
|
||||
WHEN t1."PartnerType"=0 and sum(t1."InAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."InAmountDEV2")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."OutAmountDEV2")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."OutAmountDEV2")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountHUF")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."InAmountDEV2")*-1
|
||||
end As "CreditTotalHUF",
|
||||
0 As "DebitTotalDEV",
|
||||
case WHEN t1."PartnerType"=0 and sum(t1."InAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountDEV")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountDEV")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountDEV")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountDEV")*-1
|
||||
WHEN t1."PartnerType"=0 and sum(t1."InAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."InAmountDEV2")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."OutAmountDEV2")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."OutAmountDEV2")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountDEV")<>0 and coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" then sum(t1."InAmountDEV2")*-1
|
||||
end As "CreditTotalDEV",
|
||||
(case WHEN t1."PartnerType"=0 and sum(t1."InAmountHUF")<>0 then sum(t1."AmountHUF")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountHUF")<>0 then sum(t1."AmountHUF")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountHUF")<>0 then sum(t1."AmountHUF")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountHUF")<>0 then sum(t1."AmountHUF")*-1
|
||||
end)*-1 As "BallanceHUF",
|
||||
(case WHEN t1."PartnerType"=0 and sum(t1."InAmountDEV")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountDEV")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountDEV")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountDEV")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountDEV")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountDEV")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountDEV")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")=t3."CurrencyName" then sum(t1."AmountDEV")*-1
|
||||
WHEN t1."PartnerType"=0 and sum(t1."InAmountDEV2")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" and t4."Currency"<>'HUF' then sum(t1."InAmountDEV2")
|
||||
WHEN t1."PartnerType"=0 and sum(t1."OutAmountDEV2")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" and t4."Currency"<>'HUF' then sum(t1."OutAmountDEV2")*-1
|
||||
WHEN t1."PartnerType"=1 and sum(t1."OutAmountDEV2")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" and t4."Currency"<>'HUF' then sum(t1."OutAmountDEV2")
|
||||
WHEN t1."PartnerType"=1 and sum(t1."InAmountDEV2")<>0 and
|
||||
coalesce(t4."CurrencyName",t3."CurrencyName")<>t3."CurrencyName" and t4."Currency"<>'HUF'then sum(t1."InAmountDEV2")*-1
|
||||
else 0
|
||||
end)*-1 As "BallanceDEV",
|
||||
max(t3."ShortName"||', '||t2."DocumentNumber") As "ShortName",
|
||||
'' As "Description",
|
||||
t2."DateExecution" As "DateExecution",
|
||||
t2."DateExecution" As "DateCreated",
|
||||
t2."DateExecution" As "DatePayment",
|
||||
0 As "DelayedDay",
|
||||
0 As "DelayedRange",
|
||||
t4."CurrencyName" As "CurrencyName_Account",
|
||||
0 As "AmountHUF_Account",
|
||||
0 As "AmountDEV_Account",
|
||||
max(t4."DateExecution") As "DateExecution_Account"
|
||||
from "GLRows" t1
|
||||
join "GLHeader" t2 on t1."GLHeader"=t2."Oid"
|
||||
left join "GLCompensation" t5 on t2."Oid"=t5."Oid"
|
||||
left join "LiquidAssets" t3 on t5."LiquidAssets_Main"=t3."Oid"
|
||||
left join "vv_PartnerConnectionInfoAccount" t4 on t2."CustomersFrom"=t4."CustomersFrom" and
|
||||
t1."Customer"=t4."Customers" and t1."PartnerType"=t4."PartnerType" and t1."ConnectInfo"=t4."ConnectInfo"
|
||||
where t2."GCRecord" is null and
|
||||
t2."GLDocumentType" in (4,0) and
|
||||
t1."PartnerType" in (0,1) and
|
||||
t1."GCRecord" is null
|
||||
group by t1."Oid",t2."CustomersFrom",t1."Customer",t1."PartnerType",
|
||||
t1."ConnectInfo",t3."CurrencyName",t4."Currency",t2."DateExecution",t4."DatePayment",t4."CurrencyName"
|
||||
|
||||
union all
|
||||
|
||||
select '01-Account' AS "MainType",
|
||||
t1."Oid" AS "Oid",
|
||||
t1."CustomersFrom" AS "CustomersFrom",
|
||||
t1."Customers" AS "Customers",
|
||||
0 AS "PartnerType",
|
||||
t1."ConnectInfo" AS "ConnectInfo",
|
||||
t1."CurrencyName" AS "CurrencyName",
|
||||
t1."TotalBruttoHUF" AS "DebitTotalHUF",
|
||||
0 AS "CreditTotalHUF",
|
||||
t1."TotalBruttoDEV" AS "DebitTotalDEV",
|
||||
0 AS "CreditTotalDEV",
|
||||
t1."TotalBruttoHUF" AS "BallanceHUF",
|
||||
t1."TotalBruttoDEV" AS "BallanceDEV",
|
||||
'' AS "ShortName",
|
||||
t1."Description" AS "Description",
|
||||
t1."DateExecution" AS "DateExecution",
|
||||
t1."DateCreated" AS "DateCreated",
|
||||
t1."DatePayment" AS "DatePayment",
|
||||
CURRENT_DATE-Cast(t1."DatePayment" AS date) AS "DelayedDay",
|
||||
case WHEN CURRENT_DATE-Cast(t1."DatePayment" AS date)<=0 then 0
|
||||
WHEN CURRENT_DATE-Cast(t1."DatePayment" AS date)>0 and CURRENT_DATE-Cast(t1."DatePayment" AS date)<=15 then 1
|
||||
WHEN CURRENT_DATE-Cast(t1."DatePayment" AS date)>15 and CURRENT_DATE-Cast(t1."DatePayment" AS date)<=30 then 2
|
||||
WHEN CURRENT_DATE-Cast(t1."DatePayment" AS date)>30 and CURRENT_DATE-Cast(t1."DatePayment" AS date)<=60 then 3
|
||||
WHEN CURRENT_DATE-Cast(t1."DatePayment" AS date)>60 and CURRENT_DATE-Cast(t1."DatePayment" AS date)<=90 then 4
|
||||
WHEN CURRENT_DATE-Cast(t1."DatePayment" AS date)>90 and CURRENT_DATE-Cast(t1."DatePayment" AS date)<=180 then 5
|
||||
WHEN CURRENT_DATE-Cast(t1."DatePayment" AS date)>180 and CURRENT_DATE-Cast(t1."DatePayment" AS date)<=360 then 6
|
||||
WHEN CURRENT_DATE-Cast(t1."DatePayment" AS date)>360 then 7
|
||||
end AS "DelayedRange",
|
||||
t1."CurrencyName" AS "CurrencyName_Account",
|
||||
t1."TotalBruttoHUF" AS "AmountHUF_Account",
|
||||
t1."TotalBruttoDEV" AS "AmountDEV_Account",
|
||||
t1."DateExecution" AS "DateExecution_Account"
|
||||
from "InvoiceHeader" t1
|
||||
where t1."GLAccounts" is null and
|
||||
t1."IsEditable"=false and
|
||||
t1."GCRecord" is null
|
||||
|
||||
union all
|
||||
|
||||
select '01-Account' AS "MainType",
|
||||
t1."Oid" AS "Oid",
|
||||
t1."CustomersFrom" AS "CustomersFrom",
|
||||
t1."Customers" AS "Customers",
|
||||
1 AS "PartnerType",
|
||||
t1."DocumentNumber" AS "ConnectInfo",
|
||||
t1."F_CurrencyName" AS "CurrencyName",
|
||||
t1."F_AmountBruttoHUF" AS "DebitTotalHUF",
|
||||
0 AS "CreditTotalHUF",
|
||||
t1."F_AmountBruttoDEV" AS "DebitTotalDEV",
|
||||
0 AS "CreditTotalDEV",
|
||||
t1."F_AmountBruttoHUF" AS "BallanceHUF",
|
||||
t1."F_AmountBruttoDEV" AS "BallanceDEV",
|
||||
'' AS "ShortName",
|
||||
'' AS "Description",
|
||||
t1."F_DateExecution" AS "DateExecution",
|
||||
t1."F_DateCreated" AS "DateCreated",
|
||||
t1."F_DatePayment" AS "DatePayment",
|
||||
CURRENT_DATE-Cast(t1."F_DatePayment" AS date) AS "DelayedDay",
|
||||
case WHEN CURRENT_DATE-Cast(t1."F_DatePayment" AS date)<=0 then 0
|
||||
WHEN CURRENT_DATE-Cast(t1."F_DatePayment" AS date)>0 and CURRENT_DATE-Cast(t1."F_DatePayment" AS date)<=15 then 1
|
||||
WHEN CURRENT_DATE-Cast(t1."F_DatePayment" AS date)>15 and CURRENT_DATE-Cast(t1."F_DatePayment" AS date)<=30 then 2
|
||||
WHEN CURRENT_DATE-Cast(t1."F_DatePayment" AS date)>30 and CURRENT_DATE-Cast(t1."F_DatePayment" AS date)<=60 then 3
|
||||
WHEN CURRENT_DATE-Cast(t1."F_DatePayment" AS date)>60 and CURRENT_DATE-Cast(t1."F_DatePayment" AS date)<=90 then 4
|
||||
WHEN CURRENT_DATE-Cast(t1."F_DatePayment" AS date)>90 and CURRENT_DATE-Cast(t1."F_DatePayment" AS date)<=180 then 5
|
||||
WHEN CURRENT_DATE-Cast(t1."F_DatePayment" AS date)>180 and CURRENT_DATE-Cast(t1."F_DatePayment" AS date)<=360 then 6
|
||||
WHEN CURRENT_DATE-Cast(t1."F_DatePayment" AS date)>360 then 7
|
||||
end As "DelayedRange",
|
||||
t1."F_CurrencyName" AS "CurrencyName_Account",
|
||||
t1."F_AmountBruttoHUF" AS "AmountHUF_Account",
|
||||
t1."F_AmountBruttoDEV" AS "AmountDEV_Account",
|
||||
t1."F_DateExecution" AS "DateExecution_Account"
|
||||
from "RegistryHeader" t1
|
||||
left join "RegistryType" t2 on t1."RegistryType"=t2."Oid"
|
||||
where t1."GCRecord" is null and
|
||||
t1."F_GLAccounts" is null and
|
||||
t1."IsEditable"=false and
|
||||
t1."IsStorno"=false and
|
||||
t2."RegistryMainType"=0 and
|
||||
t1."RegistryAcceptState"=0
|
||||
+54
@@ -0,0 +1,54 @@
|
||||
|
||||
|
||||
SELECT MAX(CAST(t1."Oid" AS CHAR(100))) As "Oid",
|
||||
t1."CustomersFrom" AS "CustomersFrom",
|
||||
t1."Customers" AS "Customers",
|
||||
t1."PartnerType" AS "PartnerType",
|
||||
t1."ConnectInfo" AS "ConnectInfo",
|
||||
max(t2."ShortName") AS "Currency",
|
||||
sum(t1."DebitTotalHUF") AS "DebitTotalHUF",
|
||||
SUM(t1."CreditTotalHUF") AS "CreditTotalHUF",
|
||||
sum(t1."DebitTotalDEV") AS "DebitTotalDEV",
|
||||
SUM(t1."CreditTotalDEV") AS "CreditTotalDEV",
|
||||
SUM(t1."BallanceHUF") AS "BallanceHUF",
|
||||
SUM(t1."BallanceDEV") AS "BallanceDEV",
|
||||
case when t1."PartnerType"=1 then SUM(t1."BallanceHUF")*-1 else 0 end AS "BallanceHUF_P",
|
||||
case when t1."PartnerType"=1 then SUM(t1."BallanceDEV")*-1 else 0 end AS "BallanceDEV_P",
|
||||
case when t1."PartnerType"=0 then SUM(t1."BallanceHUF") else 0 end AS "BallanceHUF_R",
|
||||
case when t1."PartnerType"=0 then SUM(t1."BallanceDEV") else 0 end AS "BallanceDEV_R",
|
||||
(case when t1."PartnerType"=0 then SUM(t1."BallanceHUF") else 0 end) -
|
||||
(case when t1."PartnerType"=1 then SUM(t1."BallanceHUF")*-1 else 0 end) AS "BallanceHUF_B",
|
||||
(case when t1."PartnerType"=0 then SUM(t1."BallanceDEV") else 0 end) -
|
||||
(case when t1."PartnerType"=1 then SUM(t1."BallanceDEV")*-1 else 0 end) AS "BallanceDEV_B",
|
||||
max(t3."ShortName") AS "Currency_Account",
|
||||
sum(t1."AmountHUF_Account") AS "AmountHUF_Account",
|
||||
sum(t1."AmountDEV_Account") AS "AmountDEV_Account",
|
||||
case when max(t3."ShortName")='HUF' then
|
||||
case when round(cast(SUM(t1."BallanceHUF") as numeric),0)=0 then 1
|
||||
else 0
|
||||
end
|
||||
else
|
||||
case when round(cast(SUM(t1."BallanceDEV") as numeric),2)=0 then 1
|
||||
else 0
|
||||
end
|
||||
end AS "BallanceState",
|
||||
case when max(t3."ShortName")='HUF' then -1
|
||||
when t1."CurrencyName_Account" IS null then -1
|
||||
else
|
||||
case when round(cast(SUM(t1."BallanceDEV")as numeric),2)=0 and round(cast(SUM(t1."BallanceHUF")as numeric),0)<>0 then 1
|
||||
else 0
|
||||
end
|
||||
end "BallanceRateDiff",
|
||||
max(t4."DateExecution") DateExecution_Account,
|
||||
MAX(t4."DateCreated") DateCreated_Account
|
||||
from "vv_PartnerConnectionInfoDetail" t1
|
||||
left join "CurrencyName" t2 on t1."CurrencyName"=t2."Oid"
|
||||
left join "CurrencyName" t3 on t1."CurrencyName_Account"=t3."Oid"
|
||||
left join "vv_PartnerConnectionInfoAccount" t4 on
|
||||
t1."CustomersFrom"=t4."CustomersFrom" and
|
||||
t1."Customers"=t4."Customers" and
|
||||
t1."PartnerType"=t4."PartnerType" and
|
||||
t1."ConnectInfo"=t4."ConnectInfo" and
|
||||
t4."MainType"='01-Account'
|
||||
|
||||
group by t1."CustomersFrom",t1."Customers",t1."PartnerType",t1."ConnectInfo",t1."CurrencyName_Account"
|
||||
@@ -0,0 +1,8 @@
|
||||
|
||||
|
||||
select case when t2."Oid" IS null then t1."Oid" else t2."Oid" end Oid,
|
||||
t1."Oid" Products,
|
||||
t2."Oid" StorageComputed
|
||||
from "Products" t1 left join "StorageComputed" t2 on
|
||||
t1."Oid"=t2."Products"
|
||||
where t1."GCRecord" is null and t2."GCRecord" is null
|
||||
@@ -0,0 +1,29 @@
|
||||
|
||||
|
||||
select t1."Oid" AS "Oid",
|
||||
t1."RegistryHeader" AS "RegistryHeader",
|
||||
t1."AmountHUF" AS "AmountHUF",
|
||||
t1."AmountDEV" AS "AmountDEV",
|
||||
t1."DatePayment" AS "DatePayment",
|
||||
t1."IsBlocked" AS "IsBlocked",
|
||||
t1."Note" AS "Note",
|
||||
t1."BankSavedFileName" AS "BankSavedFileName",
|
||||
coalesce(t3."BallanceHUF",t2."F_AmountBruttoHUF") AS "BallanceHUF",
|
||||
coalesce(t3."BallanceDEV",t2."F_AmountBruttoDEV") AS "BallanceDEV",
|
||||
t1."AmountHUF"-coalesce(t3."BallanceHUF",t2."F_AmountBruttoHUF") AS "DifferenceHUF",
|
||||
t1."AmountDEV"-coalesce(t3."BallanceDEV",t2."F_AmountBruttoDEV") AS "DifferenceDEV",
|
||||
case when round(cast(coalesce(t3."BallanceHUF",t2."F_AmountBruttoHUF") as numeric),2)=0 then 0
|
||||
when coalesce(t3."BallanceHUF",t2."F_AmountBruttoHUF")>=t1."AmountHUF" then t1."AmountHUF"
|
||||
when coalesce(t3."BallanceHUF",t2."F_AmountBruttoHUF")<=t1."AmountHUF" then coalesce(t3."BallanceHUF",t2."F_AmountBruttoHUF")
|
||||
end AS "OfferedHUF",
|
||||
case when round(cast(coalesce(t3."BallanceDEV",t2."F_AmountBruttoDEV") as numeric),2)=0 then 0
|
||||
when coalesce(t3."BallanceDEV",t2."F_AmountBruttoDEV")>=t1."AmountDEV" then t1."AmountDEV"
|
||||
when coalesce(t3."BallanceDEV",t2."F_AmountBruttoDEV")<=t1."AmountDEV" then coalesce(t3."BallanceDEV",t2."F_AmountBruttoDEV")
|
||||
end AS "OfferedDEV",
|
||||
t1."BankPrepareName" AS "BankPrepareName"
|
||||
from "RegistryBankTransfer" t1
|
||||
join "RegistryHeader" t2 on t1."RegistryHeader"=t2."Oid"
|
||||
left join "PCIGroup" t3 on t2."CustomersFrom"=t3."CustomersFrom"
|
||||
and t2."Customers"=t3."Customers" and t3."PartnerType"=1 and t2."DocumentNumber"=t3."ConnectInfo"
|
||||
where t1."GCRecord" is null and t2."RegistryAcceptState"=0
|
||||
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
|
||||
|
||||
select MAX(CAST("Oid" AS CHAR(100))) As "Oid",
|
||||
"BankPrepareName"
|
||||
from "RegistryBankTransfer"
|
||||
where Rtrim(Ltrim(coalesce("BankPrepareName",'')))<>''
|
||||
group by "BankPrepareName"
|
||||
|
||||
@@ -0,0 +1,71 @@
|
||||
|
||||
|
||||
select t1."Oid" Oid,
|
||||
t2."CustomersFrom" CustomersFrom,
|
||||
t1."PartnerType" PartnerType,
|
||||
t1."Customer" Customers,
|
||||
t1."ConnectInfo" ConnectInfo,
|
||||
t3."DateExecution" DateExecution_Account,
|
||||
t3."CurrencyName" CurrencyName_Account,
|
||||
round(cast(t4."AmountDEV_Account" as numeric),2) AmountDEV_Account,
|
||||
round(cast(t4."AmountHUF_Account" as numeric),2) AmountHUF_Account,
|
||||
round(cast(t4."BallanceDEV" as numeric),2) BallanceDEV_Account,
|
||||
case when round(cast(t4."AmountDEV_Account" as numeric),2)<>0 then round(cast(round(cast(t4."AmountHUF_Account" as numeric),2)/round(cast(t4."AmountDEV_Account" as numeric),2) as numeric),2) else 0 end CurrencyRate_Account,
|
||||
t1."LiquidAssets" LiquidAssets,
|
||||
t2."DateExecution" DateExecution,
|
||||
round(cast(t1."InAmountDEV" as numeric),2) InAmountDEV,
|
||||
round(cast(t1."OutAmountDEV" as numeric),2) OutAmountDEV,
|
||||
round(cast(t1."InAmountDEV2" as numeric),2) InAmountDEV2,
|
||||
round(cast(t1."OutAmountDEV2" as numeric),2) OutAmountDEV2,
|
||||
case when "InAmountHUF">0 then
|
||||
case when t1."InAmountDEV" <>0 then round(cast(t1."InAmountHUF" as numeric),2)/round(cast(t1."InAmountDEV" as numeric),2)
|
||||
else 0
|
||||
end
|
||||
else
|
||||
case when t1."OutAmountDEV" <>0 then round(cast(t1."OutAmountHUF" as numeric),2)/round(cast(t1."OutAmountDEV" as numeric),2)
|
||||
else 0
|
||||
end
|
||||
end CurrencyRate,
|
||||
round(cast(t1."InAmountHUF" as numeric),2) InAmountHUF,
|
||||
round(cast(t1."OutAmountHUF" as numeric),2) OutAmountHUF,
|
||||
case when t3."CurrencyName"=t5."CurrencyName" then round(cast(t1."InAmountDEV" as numeric),2)* round(cast(t3."CurrencyRate" as numeric),2)
|
||||
else round(cast(t1."InAmountDEV2" as numeric),2)* round(cast(t3."CurrencyRate" as numeric),2)
|
||||
end InAmountHUF_Account,
|
||||
case when t3."CurrencyName"=t5."CurrencyName" then round(cast(t1."OutAmountDEV" as numeric),2)*round(cast(t3."CurrencyRate" as numeric),2)
|
||||
else round(cast(t1."OutAmountDEV2" as numeric),2)*round(cast(t3."CurrencyRate" as numeric),2)
|
||||
end OutAmountHUF_Account,
|
||||
case when t3."CurrencyName"=t5."CurrencyName" then round(cast(t1."InAmountDEV" as numeric),2)* round(cast(t3."CurrencyRate" as numeric),2)
|
||||
else round(cast(t1."InAmountDEV2" as numeric),2)* round(cast(t3."CurrencyRate" as numeric),2)
|
||||
end - round(cast(t1."InAmountHUF" as numeric),2) InAmountHUF_Diff,
|
||||
case when t3."CurrencyName"=t5."CurrencyName" then round(cast(t1."OutAmountDEV" as numeric),2)*round(cast(t3."CurrencyRate" as numeric),2)
|
||||
else round(cast(t1."OutAmountDEV2" as numeric),2)*round(cast(t3."CurrencyRate" as numeric),2)
|
||||
end - round(cast(t1."OutAmountHUF" as numeric),2) OutAmountHUF_Diff,
|
||||
t1."GLRowsRateDiff" GLRowsRateDiff,
|
||||
case when t1."PartnerType" = 0 Then
|
||||
case when case when t3."CurrencyName"=t5."CurrencyName" then round(cast(t1."InAmountDEV" as numeric),2)* round(cast(t3."CurrencyRate" as numeric),2)
|
||||
else round(cast(t1."InAmountDEV2" as numeric),2)* round(cast(t3."CurrencyRate" as numeric),2)
|
||||
end - round(cast(t1."InAmountHUF" as numeric),2) > 0 Then -1
|
||||
else 1
|
||||
end
|
||||
when t1."PartnerType" = 1 Then
|
||||
case when case when t3."CurrencyName"=t5."CurrencyName" then round(cast(t1."OutAmountDEV" as numeric),2)*round(cast(t3."CurrencyRate" as numeric),2)
|
||||
else round(cast(t1."OutAmountDEV2" as numeric),2)*round(cast(t3."CurrencyRate" as numeric),2)
|
||||
end - round(cast(t1."OutAmountHUF" as numeric),2) > 0 Then 1
|
||||
else -1
|
||||
end
|
||||
else 0
|
||||
end RateDiffState
|
||||
from "GLRows" t1
|
||||
left join "GLHeader" t2 on t1."GLHeader"=t2."Oid"
|
||||
join "vv_PartnerConnectionInfoAccount" t3 on t2."CustomersFrom"=t3."CustomersFrom"
|
||||
and t1."PartnerType"=t3."PartnerType" and t1."Customer"=t3."Customers" and t1."ConnectInfo"=t3."ConnectInfo"
|
||||
left join "PCIGroup" t4 on t2."CustomersFrom"=t4."CustomersFrom"
|
||||
and t1."PartnerType"=t4."PartnerType" and t1."Customer"=t4."Customers" and t1."ConnectInfo"=t4."ConnectInfo"
|
||||
left join "LiquidAssets" t5 on t1."LiquidAssets"=t5."Oid"
|
||||
left join "CurrencyName" t6 on t5."CurrencyName"=t6."Oid"
|
||||
left join "CurrencyName" t7 on t3."CurrencyName"=t7."Oid"
|
||||
where t2."GCRecord" is null and
|
||||
t2."GLDocumentType" in (2,3,4) and
|
||||
t6."ShortName" <> 'HUF' and coalesce(t7."ShortName",'HUF')<>'HUF' and
|
||||
((t1."PartnerType"=0 and t1."InAmountHUF">0) or (t1."PartnerType"=1 and t1."OutAmountHUF">0))
|
||||
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
Imports System
|
||||
Imports System.ComponentModel
|
||||
|
||||
Imports DevExpress.Xpo
|
||||
Imports DevExpress.Data.Filtering
|
||||
|
||||
Imports DevExpress.ExpressApp
|
||||
Imports DevExpress.Persistent.Base
|
||||
Imports DevExpress.Persistent.BaseImpl
|
||||
Imports DevExpress.Persistent.Validation
|
||||
|
||||
<DefaultClassOptions()> _
|
||||
<NonPersistent()> _
|
||||
<NavigationItem(False)> _
|
||||
<CreatableItem(False)> _
|
||||
Public Class CopyChartOfAccounts_PopUp
|
||||
Inherits BaseObject
|
||||
|
||||
Private _ChartOfAccountsYear_From As Long
|
||||
Private _ChartOfAccountsYear_To As Long
|
||||
Public Sub New(ByVal session As Session)
|
||||
MyBase.New(session)
|
||||
End Sub
|
||||
|
||||
Public Overrides Sub AfterConstruction()
|
||||
MyBase.AfterConstruction()
|
||||
End Sub
|
||||
|
||||
Property ChartOfAccountsYear_From As Long
|
||||
Get
|
||||
Return _ChartOfAccountsYear_From
|
||||
End Get
|
||||
Set(value As Long)
|
||||
SetPropertyValue("ChartOfAccountsYear_From", _ChartOfAccountsYear_From, value)
|
||||
End Set
|
||||
End Property
|
||||
Property ChartOfAccountsYear_To As Long
|
||||
Get
|
||||
Return _ChartOfAccountsYear_To
|
||||
End Get
|
||||
Set(value As Long)
|
||||
SetPropertyValue("ChartOfAccountsYear_To", _ChartOfAccountsYear_To, value)
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
Imports System
|
||||
Imports System.ComponentModel
|
||||
|
||||
Imports DevExpress.Xpo
|
||||
Imports DevExpress.Data.Filtering
|
||||
|
||||
Imports DevExpress.ExpressApp
|
||||
Imports DevExpress.Persistent.Base
|
||||
Imports DevExpress.Persistent.BaseImpl
|
||||
Imports DevExpress.Persistent.Validation
|
||||
|
||||
<DefaultClassOptions()> _
|
||||
<NonPersistent> _
|
||||
<CreatableItem(False)> _
|
||||
<NavigationItem(False)> _
|
||||
Public Class CopyWorkflowSystem_PopUp
|
||||
Inherits BaseObject
|
||||
|
||||
Private _NeedToCopy As Boolean
|
||||
Private _WorkflowSystem As WorkflowSystem
|
||||
|
||||
Public Sub New(ByVal session As Session)
|
||||
MyBase.New(session)
|
||||
End Sub
|
||||
Public Overrides Sub AfterConstruction()
|
||||
MyBase.AfterConstruction()
|
||||
End Sub
|
||||
|
||||
Property NeedToCopy As Boolean
|
||||
Get
|
||||
Return _NeedToCopy
|
||||
End Get
|
||||
Set(value As Boolean)
|
||||
SetPropertyValue("NeedToCopy", _NeedToCopy, value)
|
||||
End Set
|
||||
End Property
|
||||
Property WorkflowSystem As WorkflowSystem
|
||||
Get
|
||||
Return _WorkflowSystem
|
||||
End Get
|
||||
Set(value As WorkflowSystem)
|
||||
SetPropertyValue("WorkflowSystem", _WorkflowSystem, value)
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
@@ -0,0 +1,50 @@
|
||||
Imports System
|
||||
Imports System.ComponentModel
|
||||
|
||||
Imports DevExpress.Xpo
|
||||
Imports DevExpress.Data.Filtering
|
||||
|
||||
Imports DevExpress.ExpressApp
|
||||
Imports DevExpress.Persistent.Base
|
||||
Imports DevExpress.Persistent.BaseImpl
|
||||
Imports DevExpress.Persistent.Validation
|
||||
|
||||
Public Enum eExportOidClass
|
||||
Controlling = 0
|
||||
CostHolder = 1
|
||||
VAT = 2
|
||||
End Enum
|
||||
<DefaultClassOptions()> _
|
||||
<NonPersistent> _
|
||||
<CreatableItem(False)> _
|
||||
<NavigationItem(False)> _
|
||||
Public Class ExportOids_PopUp
|
||||
Inherits BaseObject
|
||||
Public Sub New(ByVal session As Session)
|
||||
MyBase.New(session)
|
||||
End Sub
|
||||
Public Overrides Sub AfterConstruction()
|
||||
MyBase.AfterConstruction()
|
||||
OpenFileAfterExport = True
|
||||
End Sub
|
||||
|
||||
Private _ExportOidClass As eExportOidClass
|
||||
Private _OpenFileAfterExport As Boolean
|
||||
|
||||
Property ExportOidClass As eExportOidClass
|
||||
Get
|
||||
Return _ExportOidClass
|
||||
End Get
|
||||
Set(value As eExportOidClass)
|
||||
SetPropertyValue("ExportOidClass", _ExportOidClass, value)
|
||||
End Set
|
||||
End Property
|
||||
Property OpenFileAfterExport As Boolean
|
||||
Get
|
||||
Return _OpenFileAfterExport
|
||||
End Get
|
||||
Set(value As Boolean)
|
||||
SetPropertyValue("OpenFileAfterExport", _OpenFileAfterExport, value)
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
@@ -0,0 +1,148 @@
|
||||
Imports System
|
||||
Imports System.ComponentModel
|
||||
|
||||
Imports DevExpress.Xpo
|
||||
Imports DevExpress.Data.Filtering
|
||||
|
||||
Imports DevExpress.ExpressApp
|
||||
Imports DevExpress.Persistent.Base
|
||||
Imports DevExpress.Persistent.BaseImpl
|
||||
Imports DevExpress.Persistent.Validation
|
||||
|
||||
<DefaultClassOptions()> _
|
||||
<NavigationItem(False)> _
|
||||
<CreatableItem(False)> _
|
||||
Public Class SystemTool
|
||||
Inherits BaseObject
|
||||
|
||||
Private _SQLType_From As eSQLType
|
||||
Private _SQLServer_From As String
|
||||
Private _SQLUser_From As String
|
||||
Private _SQLPassword_From As String
|
||||
Private _SQLDatabase_From As String
|
||||
|
||||
Private _SQLType_To As eSQLType
|
||||
Private _SQLServer_To As String
|
||||
Private _SQLUser_To As String
|
||||
Private _SQLPassword_To As String
|
||||
Private _SQLDatabase_To As String
|
||||
|
||||
Private _UserCreated As User
|
||||
Private _ObjectCreated As Date
|
||||
|
||||
Public Sub New(ByVal session As Session)
|
||||
MyBase.New(session)
|
||||
End Sub
|
||||
Public Overrides Sub AfterConstruction()
|
||||
MyBase.AfterConstruction()
|
||||
SQLType_From = eSQLType.MSSQL
|
||||
SQLType_To = eSQLType.MSSQL
|
||||
End Sub
|
||||
Protected Overrides Sub OnSaving()
|
||||
MyBase.OnSaving()
|
||||
If Session.IsNewObject(Me) Then
|
||||
ObjectCreated = GetSQLTime(Session)
|
||||
UserCreated = Session.GetObjectByKey(Of User)(Session.GetKeyValue(SecuritySystem.CurrentUser))
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Property SQLType_From As eSQLType
|
||||
Get
|
||||
Return _SQLType_From
|
||||
End Get
|
||||
Set(value As eSQLType)
|
||||
SetPropertyValue("SQLType_From", _SQLType_From, value)
|
||||
End Set
|
||||
End Property
|
||||
Property SQLServer_From As String
|
||||
Get
|
||||
Return _SQLServer_From
|
||||
End Get
|
||||
Set(value As String)
|
||||
SetPropertyValue("SQLServer_From", _SQLServer_From, value)
|
||||
End Set
|
||||
End Property
|
||||
Property SQLUser_From As String
|
||||
Get
|
||||
Return _SQLUser_From
|
||||
End Get
|
||||
Set(value As String)
|
||||
SetPropertyValue("SQLUser_From", _SQLUser_From, value)
|
||||
End Set
|
||||
End Property
|
||||
Property SQLPassword_From As String
|
||||
Get
|
||||
Return _SQLPassword_From
|
||||
End Get
|
||||
Set(value As String)
|
||||
SetPropertyValue("SQLPassword_From", _SQLPassword_From, value)
|
||||
End Set
|
||||
End Property
|
||||
Property SQLDatabase_From As String
|
||||
Get
|
||||
Return _SQLDatabase_From
|
||||
End Get
|
||||
Set(value As String)
|
||||
SetPropertyValue("SQLDatabase_From", _SQLDatabase_From, value)
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Property SQLType_To As eSQLType
|
||||
Get
|
||||
Return _SQLType_To
|
||||
End Get
|
||||
Set(value As eSQLType)
|
||||
SetPropertyValue("SQLType_To", _SQLType_To, value)
|
||||
End Set
|
||||
End Property
|
||||
Property SQLServer_To As String
|
||||
Get
|
||||
Return _SQLServer_To
|
||||
End Get
|
||||
Set(value As String)
|
||||
SetPropertyValue("SQLServer_To", _SQLServer_To, value)
|
||||
End Set
|
||||
End Property
|
||||
Property SQLUser_To As String
|
||||
Get
|
||||
Return _SQLUser_To
|
||||
End Get
|
||||
Set(value As String)
|
||||
SetPropertyValue("SQLUser_To", _SQLUser_To, value)
|
||||
End Set
|
||||
End Property
|
||||
Property SQLPassword_To As String
|
||||
Get
|
||||
Return _SQLPassword_To
|
||||
End Get
|
||||
Set(value As String)
|
||||
SetPropertyValue("SQLPassword_To", _SQLPassword_To, value)
|
||||
End Set
|
||||
End Property
|
||||
Property SQLDatabase_To As String
|
||||
Get
|
||||
Return _SQLDatabase_To
|
||||
End Get
|
||||
Set(value As String)
|
||||
SetPropertyValue("SQLDatabase_To", _SQLDatabase_To, value)
|
||||
End Set
|
||||
End Property
|
||||
<NonCloneable> _
|
||||
Property UserCreated As User
|
||||
Get
|
||||
Return _UserCreated
|
||||
End Get
|
||||
Set(value As User)
|
||||
SetPropertyValue("UserCreated", _UserCreated, value)
|
||||
End Set
|
||||
End Property
|
||||
<NonCloneable> _
|
||||
Property ObjectCreated As Date
|
||||
Get
|
||||
Return _ObjectCreated
|
||||
End Get
|
||||
Set(value As Date)
|
||||
SetPropertyValue("ObjectCreated", _ObjectCreated, value)
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
+198
@@ -0,0 +1,198 @@
|
||||
Partial Class SystemTool_VC
|
||||
|
||||
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||
Public Sub New(ByVal Container As System.ComponentModel.IContainer)
|
||||
MyClass.New()
|
||||
|
||||
'Required for Windows.Forms Class Composition Designer support
|
||||
Container.Add(Me)
|
||||
|
||||
End Sub
|
||||
|
||||
'Component overrides dispose to clean up the component list.
|
||||
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||
If disposing AndAlso components IsNot Nothing Then
|
||||
components.Dispose()
|
||||
End If
|
||||
MyBase.Dispose(disposing)
|
||||
End Sub
|
||||
|
||||
'Required by the Component Designer
|
||||
Private components As System.ComponentModel.IContainer
|
||||
|
||||
'NOTE: The following procedure is required by the Component Designer
|
||||
'It can be modified using the Component Designer.
|
||||
'Do not modify it using the code editor.
|
||||
<System.Diagnostics.DebuggerStepThrough()> _
|
||||
Private Sub InitializeComponent()
|
||||
Me.components = New System.ComponentModel.Container()
|
||||
Me.aSystemTool_CopyVAT = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.aSystemTool_CopyCostHolder = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.aSystemTool_CopyControlling = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.aSystemTool_ExportOids = New DevExpress.ExpressApp.Actions.PopupWindowShowAction(Me.components)
|
||||
Me.aSystemTool_CopyCustomersGLParameters = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.aSystemTool_ConnectionValidator = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.aSystemTool_CopyChartOfAccounts = New DevExpress.ExpressApp.Actions.PopupWindowShowAction(Me.components)
|
||||
Me.aSystemTool_CopyUnits = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.aSystemTool_CopyWorkflowSystem = New DevExpress.ExpressApp.Actions.PopupWindowShowAction(Me.components)
|
||||
'
|
||||
'aSystemTool_CopyVAT
|
||||
'
|
||||
Me.aSystemTool_CopyVAT.Caption = "aSystemTool_CopyVAT"
|
||||
Me.aSystemTool_CopyVAT.Category = "aSystemTool_CopyVAT"
|
||||
Me.aSystemTool_CopyVAT.ConfirmationMessage = Nothing
|
||||
Me.aSystemTool_CopyVAT.Id = "aSystemTool_CopyVAT"
|
||||
Me.aSystemTool_CopyVAT.ImageName = Nothing
|
||||
Me.aSystemTool_CopyVAT.Shortcut = Nothing
|
||||
Me.aSystemTool_CopyVAT.Tag = Nothing
|
||||
Me.aSystemTool_CopyVAT.TargetObjectsCriteria = Nothing
|
||||
Me.aSystemTool_CopyVAT.TargetObjectType = GetType(Nuvolar.[Module].SystemTool)
|
||||
Me.aSystemTool_CopyVAT.TargetViewId = Nothing
|
||||
Me.aSystemTool_CopyVAT.TargetViewType = DevExpress.ExpressApp.ViewType.DetailView
|
||||
Me.aSystemTool_CopyVAT.ToolTip = Nothing
|
||||
Me.aSystemTool_CopyVAT.TypeOfView = GetType(DevExpress.ExpressApp.DetailView)
|
||||
'
|
||||
'aSystemTool_CopyCostHolder
|
||||
'
|
||||
Me.aSystemTool_CopyCostHolder.Caption = "aSystemTool_CopyCostHolder"
|
||||
Me.aSystemTool_CopyCostHolder.Category = "aSystemTool_CopyCostHolder"
|
||||
Me.aSystemTool_CopyCostHolder.ConfirmationMessage = Nothing
|
||||
Me.aSystemTool_CopyCostHolder.Id = "aSystemTool_CopyCostHolder"
|
||||
Me.aSystemTool_CopyCostHolder.ImageName = Nothing
|
||||
Me.aSystemTool_CopyCostHolder.Shortcut = Nothing
|
||||
Me.aSystemTool_CopyCostHolder.Tag = Nothing
|
||||
Me.aSystemTool_CopyCostHolder.TargetObjectsCriteria = Nothing
|
||||
Me.aSystemTool_CopyCostHolder.TargetObjectType = GetType(Nuvolar.[Module].SystemTool)
|
||||
Me.aSystemTool_CopyCostHolder.TargetViewId = Nothing
|
||||
Me.aSystemTool_CopyCostHolder.TargetViewType = DevExpress.ExpressApp.ViewType.DetailView
|
||||
Me.aSystemTool_CopyCostHolder.ToolTip = Nothing
|
||||
Me.aSystemTool_CopyCostHolder.TypeOfView = GetType(DevExpress.ExpressApp.DetailView)
|
||||
'
|
||||
'aSystemTool_CopyControlling
|
||||
'
|
||||
Me.aSystemTool_CopyControlling.Caption = "aSystemTool_CopyControlling"
|
||||
Me.aSystemTool_CopyControlling.Category = "aSystemTool_CopyControlling"
|
||||
Me.aSystemTool_CopyControlling.ConfirmationMessage = Nothing
|
||||
Me.aSystemTool_CopyControlling.Id = "aSystemTool_CopyControlling"
|
||||
Me.aSystemTool_CopyControlling.ImageName = Nothing
|
||||
Me.aSystemTool_CopyControlling.Shortcut = Nothing
|
||||
Me.aSystemTool_CopyControlling.Tag = Nothing
|
||||
Me.aSystemTool_CopyControlling.TargetObjectsCriteria = Nothing
|
||||
Me.aSystemTool_CopyControlling.TargetObjectType = GetType(Nuvolar.[Module].SystemTool)
|
||||
Me.aSystemTool_CopyControlling.TargetViewId = Nothing
|
||||
Me.aSystemTool_CopyControlling.TargetViewType = DevExpress.ExpressApp.ViewType.DetailView
|
||||
Me.aSystemTool_CopyControlling.ToolTip = Nothing
|
||||
Me.aSystemTool_CopyControlling.TypeOfView = GetType(DevExpress.ExpressApp.DetailView)
|
||||
'
|
||||
'aSystemTool_ExportOids
|
||||
'
|
||||
Me.aSystemTool_ExportOids.AcceptButtonCaption = Nothing
|
||||
Me.aSystemTool_ExportOids.CancelButtonCaption = Nothing
|
||||
Me.aSystemTool_ExportOids.Caption = "aSystemTool_ExportOids"
|
||||
Me.aSystemTool_ExportOids.Category = "aSystemTool_ExportOids"
|
||||
Me.aSystemTool_ExportOids.ConfirmationMessage = Nothing
|
||||
Me.aSystemTool_ExportOids.Id = "aSystemTool_ExportOids"
|
||||
Me.aSystemTool_ExportOids.ImageName = Nothing
|
||||
Me.aSystemTool_ExportOids.Shortcut = Nothing
|
||||
Me.aSystemTool_ExportOids.Tag = Nothing
|
||||
Me.aSystemTool_ExportOids.TargetObjectsCriteria = Nothing
|
||||
Me.aSystemTool_ExportOids.TargetObjectType = GetType(Nuvolar.[Module].SystemTool)
|
||||
Me.aSystemTool_ExportOids.TargetViewId = Nothing
|
||||
Me.aSystemTool_ExportOids.TargetViewType = DevExpress.ExpressApp.ViewType.DetailView
|
||||
Me.aSystemTool_ExportOids.ToolTip = Nothing
|
||||
Me.aSystemTool_ExportOids.TypeOfView = GetType(DevExpress.ExpressApp.DetailView)
|
||||
'
|
||||
'aSystemTool_CopyCustomersGLParameters
|
||||
'
|
||||
Me.aSystemTool_CopyCustomersGLParameters.Caption = "aSystemTool_CopyCustomersGLParameters"
|
||||
Me.aSystemTool_CopyCustomersGLParameters.Category = "aSystemTool_CopyCustomersGLParameters"
|
||||
Me.aSystemTool_CopyCustomersGLParameters.ConfirmationMessage = Nothing
|
||||
Me.aSystemTool_CopyCustomersGLParameters.Id = "aSystemTool_CopyCustomersGLParameters"
|
||||
Me.aSystemTool_CopyCustomersGLParameters.ImageName = Nothing
|
||||
Me.aSystemTool_CopyCustomersGLParameters.Shortcut = Nothing
|
||||
Me.aSystemTool_CopyCustomersGLParameters.Tag = Nothing
|
||||
Me.aSystemTool_CopyCustomersGLParameters.TargetObjectsCriteria = Nothing
|
||||
Me.aSystemTool_CopyCustomersGLParameters.TargetObjectType = GetType(Nuvolar.[Module].SystemTool)
|
||||
Me.aSystemTool_CopyCustomersGLParameters.TargetViewId = Nothing
|
||||
Me.aSystemTool_CopyCustomersGLParameters.TargetViewType = DevExpress.ExpressApp.ViewType.DetailView
|
||||
Me.aSystemTool_CopyCustomersGLParameters.ToolTip = Nothing
|
||||
Me.aSystemTool_CopyCustomersGLParameters.TypeOfView = GetType(DevExpress.ExpressApp.DetailView)
|
||||
'
|
||||
'aSystemTool_ConnectionValidator
|
||||
'
|
||||
Me.aSystemTool_ConnectionValidator.Caption = "aSystemTool_ConnectionValidator"
|
||||
Me.aSystemTool_ConnectionValidator.Category = "aSystemTool_ConnectionValidator"
|
||||
Me.aSystemTool_ConnectionValidator.ConfirmationMessage = Nothing
|
||||
Me.aSystemTool_ConnectionValidator.Id = "aSystemTool_ConnectionValidator"
|
||||
Me.aSystemTool_ConnectionValidator.ImageName = Nothing
|
||||
Me.aSystemTool_ConnectionValidator.Shortcut = Nothing
|
||||
Me.aSystemTool_ConnectionValidator.Tag = Nothing
|
||||
Me.aSystemTool_ConnectionValidator.TargetObjectsCriteria = Nothing
|
||||
Me.aSystemTool_ConnectionValidator.TargetObjectType = GetType(Nuvolar.[Module].SystemTool)
|
||||
Me.aSystemTool_ConnectionValidator.TargetViewId = Nothing
|
||||
Me.aSystemTool_ConnectionValidator.TargetViewType = DevExpress.ExpressApp.ViewType.DetailView
|
||||
Me.aSystemTool_ConnectionValidator.ToolTip = Nothing
|
||||
Me.aSystemTool_ConnectionValidator.TypeOfView = GetType(DevExpress.ExpressApp.DetailView)
|
||||
'
|
||||
'aSystemTool_CopyChartOfAccounts
|
||||
'
|
||||
Me.aSystemTool_CopyChartOfAccounts.AcceptButtonCaption = Nothing
|
||||
Me.aSystemTool_CopyChartOfAccounts.CancelButtonCaption = Nothing
|
||||
Me.aSystemTool_CopyChartOfAccounts.Caption = "aSystemTool_CopyChartOfAccounts"
|
||||
Me.aSystemTool_CopyChartOfAccounts.Category = "aSystemTool_CopyChartOfAccounts"
|
||||
Me.aSystemTool_CopyChartOfAccounts.ConfirmationMessage = Nothing
|
||||
Me.aSystemTool_CopyChartOfAccounts.Id = "aSystemTool_CopyChartOfAccounts"
|
||||
Me.aSystemTool_CopyChartOfAccounts.ImageName = Nothing
|
||||
Me.aSystemTool_CopyChartOfAccounts.Shortcut = Nothing
|
||||
Me.aSystemTool_CopyChartOfAccounts.Tag = Nothing
|
||||
Me.aSystemTool_CopyChartOfAccounts.TargetObjectsCriteria = Nothing
|
||||
Me.aSystemTool_CopyChartOfAccounts.TargetObjectType = GetType(Nuvolar.[Module].SystemTool)
|
||||
Me.aSystemTool_CopyChartOfAccounts.TargetViewId = Nothing
|
||||
Me.aSystemTool_CopyChartOfAccounts.TargetViewType = DevExpress.ExpressApp.ViewType.DetailView
|
||||
Me.aSystemTool_CopyChartOfAccounts.ToolTip = Nothing
|
||||
Me.aSystemTool_CopyChartOfAccounts.TypeOfView = GetType(DevExpress.ExpressApp.DetailView)
|
||||
'
|
||||
'aSystemTool_CopyUnits
|
||||
'
|
||||
Me.aSystemTool_CopyUnits.Caption = "aSystemTool_CopyUnits"
|
||||
Me.aSystemTool_CopyUnits.Category = "aSystemTool_CopyUnits"
|
||||
Me.aSystemTool_CopyUnits.ConfirmationMessage = Nothing
|
||||
Me.aSystemTool_CopyUnits.Id = "aSystemTool_CopyUnits"
|
||||
Me.aSystemTool_CopyUnits.ImageName = Nothing
|
||||
Me.aSystemTool_CopyUnits.Shortcut = Nothing
|
||||
Me.aSystemTool_CopyUnits.Tag = Nothing
|
||||
Me.aSystemTool_CopyUnits.TargetObjectsCriteria = Nothing
|
||||
Me.aSystemTool_CopyUnits.TargetObjectType = GetType(Nuvolar.[Module].SystemTool)
|
||||
Me.aSystemTool_CopyUnits.TargetViewId = Nothing
|
||||
Me.aSystemTool_CopyUnits.ToolTip = Nothing
|
||||
Me.aSystemTool_CopyUnits.TypeOfView = Nothing
|
||||
'
|
||||
'aSystemTool_CopyWorkflowSystem
|
||||
'
|
||||
Me.aSystemTool_CopyWorkflowSystem.AcceptButtonCaption = Nothing
|
||||
Me.aSystemTool_CopyWorkflowSystem.CancelButtonCaption = Nothing
|
||||
Me.aSystemTool_CopyWorkflowSystem.Caption = "aSystemTool_CopyWorkflowSystem"
|
||||
Me.aSystemTool_CopyWorkflowSystem.ConfirmationMessage = Nothing
|
||||
Me.aSystemTool_CopyWorkflowSystem.Id = "aSystemTool_CopyWorkflowSystem"
|
||||
Me.aSystemTool_CopyWorkflowSystem.ImageName = Nothing
|
||||
Me.aSystemTool_CopyWorkflowSystem.Shortcut = Nothing
|
||||
Me.aSystemTool_CopyWorkflowSystem.Tag = Nothing
|
||||
Me.aSystemTool_CopyWorkflowSystem.TargetObjectsCriteria = Nothing
|
||||
Me.aSystemTool_CopyWorkflowSystem.TargetObjectType = GetType(Nuvolar.[Module].SystemTool)
|
||||
Me.aSystemTool_CopyWorkflowSystem.TargetViewId = Nothing
|
||||
Me.aSystemTool_CopyWorkflowSystem.ToolTip = Nothing
|
||||
Me.aSystemTool_CopyWorkflowSystem.TypeOfView = Nothing
|
||||
|
||||
End Sub
|
||||
Friend WithEvents aSystemTool_ConnectionValidator As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents aSystemTool_CopyChartOfAccounts As DevExpress.ExpressApp.Actions.PopupWindowShowAction
|
||||
Friend WithEvents aSystemTool_CopyVAT As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents aSystemTool_CopyCostHolder As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents aSystemTool_CopyControlling As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents aSystemTool_ExportOids As DevExpress.ExpressApp.Actions.PopupWindowShowAction
|
||||
Friend WithEvents aSystemTool_CopyCustomersGLParameters As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents aSystemTool_CopyUnits As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents aSystemTool_CopyWorkflowSystem As DevExpress.ExpressApp.Actions.PopupWindowShowAction
|
||||
|
||||
End Class
|
||||
@@ -0,0 +1,150 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="aSystemTool_CopyVAT.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>763, 134</value>
|
||||
</metadata>
|
||||
<metadata name="aSystemTool_CopyCostHolder.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>548, 134</value>
|
||||
</metadata>
|
||||
<metadata name="aSystemTool_CopyControlling.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>333, 134</value>
|
||||
</metadata>
|
||||
<metadata name="aSystemTool_ExportOids.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 134</value>
|
||||
</metadata>
|
||||
<metadata name="aSystemTool_CopyCustomersGLParameters.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 95</value>
|
||||
</metadata>
|
||||
<metadata name="aSystemTool_ConnectionValidator.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 56</value>
|
||||
</metadata>
|
||||
<metadata name="aSystemTool_CopyChartOfAccounts.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<metadata name="aSystemTool_CopyUnits.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>268, 278</value>
|
||||
</metadata>
|
||||
<metadata name="aSystemTool_CopyWorkflowSystem.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>450, 278</value>
|
||||
</metadata>
|
||||
<metadata name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
</root>
|
||||
@@ -0,0 +1,663 @@
|
||||
Imports System
|
||||
Imports System.ComponentModel
|
||||
Imports System.Collections.Generic
|
||||
Imports System.Diagnostics
|
||||
Imports System.Text
|
||||
|
||||
Imports DevExpress.ExpressApp
|
||||
Imports DevExpress.ExpressApp.Actions
|
||||
Imports DevExpress.Persistent.Base
|
||||
Imports DevExpress.Xpo
|
||||
Imports DevExpress.Data.Filtering
|
||||
|
||||
Public Class SystemTool_VC
|
||||
Inherits DevExpress.ExpressApp.ViewController
|
||||
Public Event InitWork(ByVal _Minimum As Long, ByVal _Step As Long, ByVal _Maximum As Long)
|
||||
Public Event DoWork()
|
||||
Public Event FinalWork
|
||||
Public Sub New()
|
||||
MyBase.New()
|
||||
InitializeComponent()
|
||||
RegisterActions(components)
|
||||
End Sub
|
||||
Private Sub aSystemTool_ConnectionValidator_Execute(sender As Object, e As SimpleActionExecuteEventArgs) Handles aSystemTool_ConnectionValidator.Execute
|
||||
'Beep()
|
||||
|
||||
End Sub
|
||||
Private Sub aSystemTool_CopyChartOfAccounts_CustomizePopupWindowParams(sender As Object, e As CustomizePopupWindowParamsEventArgs) Handles aSystemTool_CopyChartOfAccounts.CustomizePopupWindowParams
|
||||
Dim _onew As Xpo.XPObjectSpace = Application.CreateObjectSpace
|
||||
Dim _CopyChartOfAccounts_PopUp As New CopyChartOfAccounts_PopUp(_onew.Session)
|
||||
|
||||
e.View = Application.CreateDetailView(_onew, "CopyChartOfAccounts_PopUp_DetailView", False, _CopyChartOfAccounts_PopUp)
|
||||
End Sub
|
||||
Private Sub aSystemTool_CopyChartOfAccounts_Execute(sender As Object, e As PopupWindowShowActionExecuteEventArgs) Handles aSystemTool_CopyChartOfAccounts.Execute
|
||||
Dim _ocur As Xpo.XPObjectSpace = TryCast(View.ObjectSpace, Xpo.XPObjectSpace)
|
||||
Dim _SystemTool As SystemTool = TryCast(View.SelectedObjects(0), SystemTool)
|
||||
Dim _CopyChartOfAccounts_PopUp As CopyChartOfAccounts_PopUp = _ocur.GetObject(e.PopupWindow.View.SelectedObjects(0))
|
||||
Dim _Session_From As New Session
|
||||
Dim _Session_To As New Session
|
||||
|
||||
_Session_From.ConnectionString = GetConnectionString(0, _SystemTool)
|
||||
_Session_To.ConnectionString = GetConnectionString(1, _SystemTool)
|
||||
Try
|
||||
_Session_From.Connect()
|
||||
If _Session_From.IsConnected Then
|
||||
_Session_To.Connect()
|
||||
If _Session_To.IsConnected Then
|
||||
Dim _uow_From As New UnitOfWork(_Session_From.DataLayer)
|
||||
Dim _uow_To As New UnitOfWork(_Session_To.DataLayer)
|
||||
Dim _ChartOfAccounts_Collection_From As New XPCollection(Of ChartOfAccounts)(_uow_From, CriteriaOperator.Parse("AccountYear=?", _CopyChartOfAccounts_PopUp.ChartOfAccountsYear_From))
|
||||
Dim _ChartOfAccountsYear_From As ChartOfAccountsYear = _uow_From.FindObject(Of ChartOfAccountsYear)(CriteriaOperator.Parse("AccountYear=?", _CopyChartOfAccounts_PopUp.ChartOfAccountsYear_From))
|
||||
|
||||
Dim _ChartOfAccountsYear_To As ChartOfAccountsYear = _uow_To.FindObject(Of ChartOfAccountsYear)(CriteriaOperator.Parse("AccountYear=?", _CopyChartOfAccounts_PopUp.ChartOfAccountsYear_To))
|
||||
If _ChartOfAccountsYear_To Is Nothing Then
|
||||
_ChartOfAccountsYear_To = New ChartOfAccountsYear(_uow_To)
|
||||
With _ChartOfAccountsYear_To
|
||||
.AccountYear = _CopyChartOfAccounts_PopUp.ChartOfAccountsYear_To
|
||||
End With
|
||||
_uow_To.CommitChanges()
|
||||
End If
|
||||
|
||||
Dim _ChartOfAccounts_Collection_To As New XPCollection(Of ChartOfAccounts)(_uow_To, CriteriaOperator.Parse("AccountYear=?", _ChartOfAccountsYear_To.AccountYear))
|
||||
'ChartOfAccounts.AccountNumber-re kell vizsgálni, ha van nem szabad bántani
|
||||
|
||||
RaiseEvent InitWork(1, 1, _ChartOfAccounts_Collection_From.Count)
|
||||
|
||||
If _ChartOfAccounts_Collection_To.Count = 0 Then
|
||||
'Új év nem kell vizsgálgatni a létezõket
|
||||
For Each _ChartOfAccounts As ChartOfAccounts In _ChartOfAccounts_Collection_From
|
||||
Dim _ChartOfAccounts_New_To As New ChartOfAccounts(_uow_To)
|
||||
With _ChartOfAccounts_New_To
|
||||
.Name = _ChartOfAccounts.Name
|
||||
.Parent = Nothing
|
||||
.AccountNumber = _ChartOfAccounts.AccountNumber
|
||||
.AccountYear = _ChartOfAccountsYear_To.AccountYear
|
||||
End With
|
||||
RaiseEvent DoWork()
|
||||
Next
|
||||
Else
|
||||
'Szívás, meglévõ évhez kell beszúrni dolgokat, vizsgálgatni kell az AccountNumber-eket
|
||||
For Each _ChartOfAccounts As ChartOfAccounts In _ChartOfAccounts_Collection_From
|
||||
If Not IsExistChartOfAccounts(_ChartOfAccounts.AccountNumber, _ChartOfAccounts_Collection_To) Then
|
||||
Dim _ChartOfAccounts_New_To As New ChartOfAccounts(_uow_To)
|
||||
With _ChartOfAccounts_New_To
|
||||
.Name = _ChartOfAccounts.Name
|
||||
.Parent = Nothing
|
||||
.AccountNumber = _ChartOfAccounts.AccountNumber
|
||||
.AccountYear = _ChartOfAccountsYear_To.AccountYear
|
||||
End With
|
||||
End If
|
||||
RaiseEvent DoWork()
|
||||
Next
|
||||
End If
|
||||
|
||||
_uow_To.CommitChanges()
|
||||
|
||||
RaiseEvent FinalWork
|
||||
|
||||
_ChartOfAccounts_Collection_To = New XPCollection(Of ChartOfAccounts)(_uow_To, CriteriaOperator.Parse("AccountYear=?", _ChartOfAccountsYear_To.AccountYear))
|
||||
|
||||
RaiseEvent InitWork(1, 1, _ChartOfAccounts_Collection_To.Count)
|
||||
For Each _ChartOfAccounts As ChartOfAccounts In _ChartOfAccounts_Collection_To
|
||||
RecursiveSetParent(_uow_To, _ChartOfAccountsYear_To.AccountYear, _ChartOfAccounts.AccountNumber, _ChartOfAccounts)
|
||||
RaiseEvent DoWork()
|
||||
Next
|
||||
_uow_To.CommitChanges()
|
||||
RaiseEvent FinalWork
|
||||
|
||||
|
||||
'Select Case _SystemTool.SQLType_To
|
||||
' Case eSQLType.MSSQL
|
||||
' _uow_To.ExecuteNonQuery("ALTER TABLE ChartOfAccountsYear NOCHECK CONSTRAINT ALL")
|
||||
' _uow_To.ExecuteNonQuery("UPDATE ChartOfAccountsYear SET Oid='" + _ChartOfAccountsYear_From.Oid.ToString + "' WHERE Oid='" + _ChartOfAccountsYear_New.Oid.ToString + "'")
|
||||
' _uow_To.ExecuteNonQuery("ALTER TABLE ChartOfAccountsYear CHECK CONSTRAINT ALL")
|
||||
' Case eSQLType.MySQL
|
||||
' '--==Oid regenerálás==--
|
||||
' _uow_To.ExecuteNonQuery("UPDATE ChartOfAccountsYear SET Oid='" + _ChartOfAccountsYear_From.Oid.ToString + "' WHERE Oid='" + _ChartOfAccountsYear_New.Oid.ToString + "'")
|
||||
' '--===================--
|
||||
' Case eSQLType.PostgreSQL
|
||||
' _uow_To.ExecuteNonQuery("UPDATE ""ChartOfAccountsYear"" SET ""Oid""='" + _ChartOfAccountsYear_From.Oid.ToString + "' WHERE ""Oid""='" + _ChartOfAccountsYear_New.Oid.ToString + "'")
|
||||
'End Select
|
||||
|
||||
|
||||
'RaiseEvent InitWork(1, 1, _ChartOfAccounts_Collection.Count)
|
||||
'For Each _ChartOfAccounts As ChartOfAccounts In _ChartOfAccounts_Collection
|
||||
' Dim _ChartOfAccounts_New As New ChartOfAccounts(_uow_To)
|
||||
' With _ChartOfAccounts_New
|
||||
' .Name = _ChartOfAccounts.Name
|
||||
' .Parent = Nothing
|
||||
' .AccountNumber = _ChartOfAccounts.AccountNumber
|
||||
' .AccountYear = _CopyChartOfAccounts_PopUp.TargetAccountYear
|
||||
|
||||
' End With
|
||||
' _uow_To.CommitChanges()
|
||||
|
||||
' Select _SystemTool.SQLType_To
|
||||
' Case eSQLType.MSSQL
|
||||
' _uow_To.ExecuteNonQuery("ALTER TABLE HCategory NOCHECK CONSTRAINT ALL")
|
||||
' _uow_To.ExecuteNonQuery("ALTER TABLE ChartOfAccounts NOCHECK CONSTRAINT ALL")
|
||||
' _uow_To.ExecuteNonQuery("UPDATE HCategory SET Oid='" + _ChartOfAccounts.Oid.ToString + "' WHERE Oid='" + _ChartOfAccounts_New.Oid.ToString + "'")
|
||||
' _uow_To.ExecuteNonQuery("UPDATE ChartOfAccounts SET Oid='" + _ChartOfAccounts.Oid.ToString + "' WHERE Oid='" + _ChartOfAccounts_New.Oid.ToString + "'")
|
||||
' _uow_To.ExecuteNonQuery("ALTER TABLE HCategory CHECK CONSTRAINT ALL")
|
||||
' _uow_To.ExecuteNonQuery("ALTER TABLE ChartOfAccounts CHECK CONSTRAINT ALL")
|
||||
' Case eSQLType.MySQL
|
||||
' '--==Oid regenerálás==--
|
||||
' _uow_To.ExecuteNonQuery("SET foreign_key_checks = 0")
|
||||
' _uow_To.ExecuteNonQuery("UPDATE HCategory SET Oid='" + _ChartOfAccounts.Oid.ToString + "' WHERE Oid='" + _ChartOfAccounts_New.Oid.ToString + "'")
|
||||
' _uow_To.ExecuteNonQuery("UPDATE ChartOfAccounts SET Oid='" + _ChartOfAccounts.Oid.ToString + "' WHERE Oid='" + _ChartOfAccounts_New.Oid.ToString + "'")
|
||||
' _uow_To.ExecuteNonQuery("SET foreign_key_checks = 1")
|
||||
' '--===================--
|
||||
' Case eSQLType.PostgreSQL
|
||||
' _uow_To.ExecuteNonQuery("ALTER TABLE ""HCategory"" DISABLE TRIGGER ALL")
|
||||
' _uow_To.ExecuteNonQuery("ALTER TABLE ""ChartOfAccounts"" DISABLE TRIGGER ALL")
|
||||
' _uow_To.ExecuteNonQuery("UPDATE ""HCategory"" SET ""Oid""='" + _ChartOfAccounts.Oid.ToString + "' WHERE ""Oid""='" + _ChartOfAccounts_New.Oid.ToString + "'")
|
||||
' _uow_To.ExecuteNonQuery("UPDATE ""ChartOfAccounts"" SET ""Oid""='" + _ChartOfAccounts.Oid.ToString + "' WHERE ""Oid""='" + _ChartOfAccounts_New.Oid.ToString + "'")
|
||||
' _uow_To.ExecuteNonQuery("ALTER TABLE ""HCategory"" ENABLE TRIGGER ALL")
|
||||
' _uow_To.ExecuteNonQuery("ALTER TABLE ""ChartOfAccounts"" ENABLE TRIGGER ALL")
|
||||
' End Select
|
||||
' RaiseEvent DoWork()
|
||||
'Next
|
||||
'RaiseEvent FinalWork
|
||||
|
||||
|
||||
'_ChartOfAccounts_Collection = New XPCollection(Of ChartOfAccounts)(_uow_To, CriteriaOperator.Parse("AccountYear=?", _CopyChartOfAccounts_PopUp.TargetAccountYear))
|
||||
'RaiseEvent InitWork(1, 1, _ChartOfAccounts_Collection.Count)
|
||||
|
||||
'For Each _ChartOfAccounts In _ChartOfAccounts_Collection
|
||||
' RecursiveSetParent(_uow_To, _CopyChartOfAccounts_PopUp.TargetAccountYear, _ChartOfAccounts.AccountNumber, _ChartOfAccounts)
|
||||
' RaiseEvent DoWork()
|
||||
'Next
|
||||
'_uow_To.CommitChanges()
|
||||
'RaiseEvent FinalWork
|
||||
End If
|
||||
End If
|
||||
Catch ex As Exception
|
||||
MsgBox(ex.Message)
|
||||
Finally
|
||||
If _Session_From.IsConnected Then _Session_From.Disconnect()
|
||||
If _Session_To.IsConnected Then _Session_To.Disconnect()
|
||||
RaiseEvent FinalWork
|
||||
End Try
|
||||
End Sub
|
||||
Private Function GetConnectionString(_Type As Integer, _SystemTool As SystemTool) As String
|
||||
Dim _ConnectionString As String = ""
|
||||
If _Type = 0 Then
|
||||
Select Case _SystemTool.SQLType_From
|
||||
Case eSQLType.MSSQL
|
||||
_ConnectionString = DevExpress.Xpo.DB.MSSqlConnectionProvider.GetConnectionString(_SystemTool.SQLServer_From, _SystemTool.SQLUser_From, _SystemTool.SQLPassword_From, _SystemTool.SQLDatabase_From)
|
||||
Case eSQLType.MySQL
|
||||
_ConnectionString = DevExpress.Xpo.DB.MySqlConnectionProvider.GetConnectionString(_SystemTool.SQLServer_From, _SystemTool.SQLUser_From, _SystemTool.SQLPassword_From, _SystemTool.SQLDatabase_From)
|
||||
Case eSQLType.PostgreSQL
|
||||
_ConnectionString = DevExpress.Xpo.DB.PostgreSqlConnectionProvider.GetConnectionString(_SystemTool.SQLServer_From, _SystemTool.SQLUser_From, _SystemTool.SQLPassword_From, _SystemTool.SQLDatabase_From)
|
||||
End Select
|
||||
ElseIf _Type = 1 Then
|
||||
Select Case _SystemTool.SQLType_To
|
||||
Case eSQLType.MSSQL
|
||||
_ConnectionString = DevExpress.Xpo.DB.MSSqlConnectionProvider.GetConnectionString(_SystemTool.SQLServer_To, _SystemTool.SQLUser_To, _SystemTool.SQLPassword_To, _SystemTool.SQLDatabase_To)
|
||||
Case eSQLType.MySQL
|
||||
_ConnectionString = DevExpress.Xpo.DB.MySqlConnectionProvider.GetConnectionString(_SystemTool.SQLServer_To, _SystemTool.SQLUser_To, _SystemTool.SQLPassword_To, _SystemTool.SQLDatabase_To)
|
||||
Case eSQLType.PostgreSQL
|
||||
_ConnectionString = DevExpress.Xpo.DB.PostgreSqlConnectionProvider.GetConnectionString(_SystemTool.SQLServer_To, _SystemTool.SQLUser_To, _SystemTool.SQLPassword_To, _SystemTool.SQLDatabase_To)
|
||||
End Select
|
||||
End If
|
||||
|
||||
Return _ConnectionString
|
||||
End Function
|
||||
Private Sub RecursiveSetParent(_uow As UnitOfWork, _Year As Long, _AccountNumber As String, _ChartOfAccount_Set As ChartOfAccounts)
|
||||
Dim _AccountNumber_Parent As String = LTrim(RTrim(Mid(_AccountNumber, 1, Len(_AccountNumber) - 1)))
|
||||
Dim _ChartOfAccounts_Parent As ChartOfAccounts
|
||||
|
||||
If _AccountNumber_Parent = "" Then
|
||||
Else
|
||||
_ChartOfAccounts_Parent = _uow.FindObject(Of ChartOfAccounts)(CriteriaOperator.Parse("AccountYear=? and AccountNumber=?", _Year, _AccountNumber_Parent))
|
||||
If _ChartOfAccounts_Parent Is Nothing Then
|
||||
RecursiveSetParent(_uow, _Year, _AccountNumber_Parent, _ChartOfAccount_Set)
|
||||
Else
|
||||
_ChartOfAccount_Set.Parent = _ChartOfAccounts_Parent
|
||||
_uow.CommitChanges()
|
||||
|
||||
End If
|
||||
End If
|
||||
End Sub
|
||||
Private Sub aSystemTool_CopyVAT_Execute(sender As Object, e As SimpleActionExecuteEventArgs) Handles aSystemTool_CopyVAT.Execute
|
||||
Dim _ocur As Xpo.XPObjectSpace = TryCast(View.ObjectSpace, Xpo.XPObjectSpace)
|
||||
Dim _SystemTool As SystemTool = TryCast(View.SelectedObjects(0), SystemTool)
|
||||
Dim _VAT_Collection As XPCollection(Of VAT)
|
||||
Dim _Session_From As New Session
|
||||
Dim _Session_To As New Session
|
||||
_Session_From.ConnectionString = GetConnectionString(0, _SystemTool)
|
||||
_Session_To.ConnectionString = GetConnectionString(1, _SystemTool)
|
||||
Try
|
||||
_Session_From.Connect()
|
||||
If _Session_From.IsConnected Then
|
||||
_Session_To.Connect()
|
||||
If _Session_To.IsConnected Then
|
||||
|
||||
Dim _uow_From As New UnitOfWork(_Session_From.DataLayer)
|
||||
Dim _uow_To As New UnitOfWork(_Session_To.DataLayer)
|
||||
_VAT_Collection = New XPCollection(Of VAT)(_uow_From, CriteriaOperator.Parse("1=1"))
|
||||
|
||||
RaiseEvent InitWork(1, 1, _VAT_Collection.Count)
|
||||
For Each _VAT As VAT In _VAT_Collection
|
||||
Dim _VAT_New As New VAT(_uow_To)
|
||||
With _VAT_New
|
||||
.ShortName = _VAT.ShortName
|
||||
.Description = _VAT.Description
|
||||
.KeyValue = _VAT.KeyValue
|
||||
.ChartOfAccountsOut = _uow_To.GetObjectByKey(Of ChartOfAccounts)(_VAT.ChartOfAccountsOut.Oid)
|
||||
.ChartOfAccountsIn = _uow_To.GetObjectByKey(Of ChartOfAccounts)(_VAT.ChartOfAccountsIn.Oid)
|
||||
.ClaimState = _VAT.ClaimState
|
||||
.Active = _VAT.Active
|
||||
.InversState = _VAT.InversState
|
||||
.InversKeyValue = _VAT.InversKeyValue
|
||||
.DefaultForBusinnes = _VAT.DefaultForBusinnes
|
||||
.DefaultForExternalEUNoVAT = _VAT.DefaultForExternalEUNoVAT
|
||||
.DefaultForExternalOther = _VAT.DefaultForExternalOther
|
||||
.DefaultForInversVAT = _VAT.DefaultForInversVAT
|
||||
End With
|
||||
_uow_To.CommitChanges()
|
||||
Select Case _SystemTool.SQLType_To
|
||||
Case eSQLType.MSSQL
|
||||
'--==Oid regenerálás==--
|
||||
_uow_To.ExecuteNonQuery("UPDATE VAT SET Oid='" + _VAT.Oid.ToString + "' WHERE Oid='" + _VAT_New.Oid.ToString + "'")
|
||||
'--===================--
|
||||
Case eSQLType.MySQL
|
||||
'--==Oid regenerálás==--
|
||||
_uow_To.ExecuteNonQuery("UPDATE VAT SET Oid='" + _VAT.Oid.ToString + "' WHERE Oid='" + _VAT_New.Oid.ToString + "'")
|
||||
'--===================--
|
||||
Case eSQLType.PostgreSQL
|
||||
'--==Oid regenerálás==--
|
||||
_uow_To.ExecuteNonQuery("UPDATE ""VAT"" SET ""Oid""='" + _VAT.Oid.ToString + "' WHERE ""Oid""='" + _VAT_New.Oid.ToString + "'")
|
||||
'--===================--
|
||||
End Select
|
||||
|
||||
RaiseEvent DoWork()
|
||||
Next
|
||||
RaiseEvent FinalWork
|
||||
End If
|
||||
End If
|
||||
Catch ex As Exception
|
||||
MsgBox(ex.Message)
|
||||
Finally
|
||||
If _Session_From.IsConnected Then _Session_From.Disconnect()
|
||||
If _Session_To.IsConnected Then _Session_To.Disconnect()
|
||||
RaiseEvent FinalWork
|
||||
End Try
|
||||
End Sub
|
||||
Private Sub aSystemTool_CopyCostHolder_Execute(sender As Object, e As SimpleActionExecuteEventArgs) Handles aSystemTool_CopyCostHolder.Execute
|
||||
Dim _ocur As Xpo.XPObjectSpace = TryCast(View.ObjectSpace, Xpo.XPObjectSpace)
|
||||
Dim _SystemTool As SystemTool = TryCast(View.SelectedObjects(0), SystemTool)
|
||||
Dim _CostHolder_Collection As XPCollection(Of CostHolder)
|
||||
Dim _Session_From As New Session
|
||||
Dim _Session_To As New Session
|
||||
_Session_From.ConnectionString = GetConnectionString(0, _SystemTool)
|
||||
_Session_To.ConnectionString = GetConnectionString(1, _SystemTool)
|
||||
Try
|
||||
_Session_From.Connect()
|
||||
If _Session_From.IsConnected Then
|
||||
_Session_To.Connect()
|
||||
If _Session_To.IsConnected Then
|
||||
|
||||
Dim _uow_From As New UnitOfWork(_Session_From.DataLayer)
|
||||
Dim _uow_To As New UnitOfWork(_Session_To.DataLayer)
|
||||
_CostHolder_Collection = New XPCollection(Of CostHolder)(_uow_From, CriteriaOperator.Parse("1=1"))
|
||||
|
||||
RaiseEvent InitWork(1, 1, _CostHolder_Collection.Count)
|
||||
For Each _CostHolder As CostHolder In _CostHolder_Collection
|
||||
Dim _CostHolder_New As New CostHolder(_uow_To)
|
||||
With _CostHolder_New
|
||||
.Name = _CostHolder.Name
|
||||
If _CostHolder.Parent IsNot Nothing Then
|
||||
Dim _Parent As CostHolder = _uow_From.FindObject(Of CostHolder)(CriteriaOperator.Parse("Oid=?", _CostHolder.Parent.Oid))
|
||||
.Parent = _uow_To.GetObjectByKey(Of CostHolder)(_Parent.Oid)
|
||||
End If
|
||||
End With
|
||||
_uow_To.CommitChanges()
|
||||
|
||||
Select _SystemTool.SQLType_To
|
||||
Case eSQLType.MSSQL
|
||||
_uow_To.ExecuteNonQuery("ALTER TABLE HCategory NOCHECK CONSTRAINT ALL")
|
||||
_uow_To.ExecuteNonQuery("ALTER TABLE CostHolder NOCHECK CONSTRAINT ALL")
|
||||
_uow_To.ExecuteNonQuery("UPDATE HCategory SET Oid='" + _CostHolder.Oid.ToString + "' WHERE Oid='" + _CostHolder_New.Oid.ToString + "'")
|
||||
_uow_To.ExecuteNonQuery("UPDATE CostHolder SET Oid='" + _CostHolder.Oid.ToString + "' WHERE Oid='" + _CostHolder_New.Oid.ToString + "'")
|
||||
_uow_To.ExecuteNonQuery("ALTER TABLE HCategory CHECK CONSTRAINT ALL")
|
||||
_uow_To.ExecuteNonQuery("ALTER TABLE CostHolder CHECK CONSTRAINT ALL")
|
||||
Case eSQLType.MySQL
|
||||
'--==Oid regenerálás==--
|
||||
_uow_To.ExecuteNonQuery("SET foreign_key_checks = 0")
|
||||
_uow_To.ExecuteNonQuery("UPDATE HCategory SET Oid='" + _CostHolder.Oid.ToString + "' WHERE Oid='" + _CostHolder_New.Oid.ToString + "'")
|
||||
_uow_To.ExecuteNonQuery("UPDATE CostHolder SET Oid='" + _CostHolder.Oid.ToString + "' WHERE Oid='" + _CostHolder_New.Oid.ToString + "'")
|
||||
_uow_To.ExecuteNonQuery("SET foreign_key_checks = 1")
|
||||
'--===================--
|
||||
Case eSQLType.PostgreSQL
|
||||
_uow_To.ExecuteNonQuery("ALTER TABLE ""HCategory"" DISABLE TRIGGER ALL")
|
||||
_uow_To.ExecuteNonQuery("ALTER TABLE ""CostHolder"" DISABLE TRIGGER ALL")
|
||||
_uow_To.ExecuteNonQuery("UPDATE ""CostHolder"" SET ""Oid""='" + _CostHolder.Oid.ToString + "' WHERE ""Oid""='" + _CostHolder_New.Oid.ToString + "'")
|
||||
_uow_To.ExecuteNonQuery("UPDATE ""HCategory"" SET ""Oid""='" + _CostHolder.Oid.ToString + "' WHERE ""Oid""='" + _CostHolder_New.Oid.ToString + "'")
|
||||
_uow_To.ExecuteNonQuery("ALTER TABLE ""HCategory"" ENABLE TRIGGER ALL")
|
||||
_uow_To.ExecuteNonQuery("ALTER TABLE ""CostHolder"" ENABLE TRIGGER ALL")
|
||||
End Select
|
||||
|
||||
RaiseEvent DoWork()
|
||||
Next
|
||||
RaiseEvent FinalWork
|
||||
End If
|
||||
End If
|
||||
Catch ex As Exception
|
||||
MsgBox(ex.Message)
|
||||
Finally
|
||||
If _Session_From.IsConnected Then _Session_From.Disconnect()
|
||||
If _Session_To.IsConnected Then _Session_To.Disconnect()
|
||||
RaiseEvent FinalWork
|
||||
End Try
|
||||
End Sub
|
||||
Private Sub aSystemTool_CopyControlling_Execute(sender As Object, e As SimpleActionExecuteEventArgs) Handles aSystemTool_CopyControlling.Execute
|
||||
Dim _ocur As Xpo.XPObjectSpace = TryCast(View.ObjectSpace, Xpo.XPObjectSpace)
|
||||
Dim _SystemTool As SystemTool = TryCast(View.SelectedObjects(0), SystemTool)
|
||||
Dim _Controlling_Collection As XPCollection(Of Controlling)
|
||||
Dim _Session_From As New Session
|
||||
Dim _Session_To As New Session
|
||||
_Session_From.ConnectionString = GetConnectionString(0, _SystemTool)
|
||||
_Session_To.ConnectionString = GetConnectionString(1, _SystemTool)
|
||||
Try
|
||||
_Session_From.Connect()
|
||||
If _Session_From.IsConnected Then
|
||||
_Session_To.Connect()
|
||||
If _Session_To.IsConnected Then
|
||||
|
||||
Dim _uow_From As New UnitOfWork(_Session_From.DataLayer)
|
||||
Dim _uow_To As New UnitOfWork(_Session_To.DataLayer)
|
||||
_Controlling_Collection = New XPCollection(Of Controlling)(_uow_From, CriteriaOperator.Parse("1=1"))
|
||||
|
||||
RaiseEvent InitWork(1, 1, _Controlling_Collection.Count)
|
||||
For Each _Controlling As Controlling In _Controlling_Collection
|
||||
Dim _Controlling_New As New Controlling(_uow_To)
|
||||
With _Controlling_New
|
||||
.Name = _Controlling.Name
|
||||
If _Controlling.Parent IsNot Nothing Then
|
||||
Dim _Parent As Controlling = _uow_From.FindObject(Of Controlling)(CriteriaOperator.Parse("Oid=?", _Controlling.Parent.Oid))
|
||||
.Parent = _uow_To.GetObjectByKey(Of Controlling)(_Parent.Oid)
|
||||
End If
|
||||
If _Controlling.ChartOfAccounts IsNot Nothing Then
|
||||
.ChartOfAccounts = _uow_To.GetObjectByKey(Of ChartOfAccounts)(_Controlling.ChartOfAccounts.Oid)
|
||||
End If
|
||||
If _Controlling.ChartOfAccounts2 IsNot Nothing Then
|
||||
.ChartOfAccounts2 = _uow_To.GetObjectByKey(Of ChartOfAccounts)(_Controlling.ChartOfAccounts2.Oid)
|
||||
End If
|
||||
.IsCOCRequired = _Controlling.IsCOCRequired
|
||||
.COCAboveAmount = _Controlling.COCAboveAmount
|
||||
.IsParent = _Controlling.IsParent
|
||||
.Controllingdirection = _Controlling.Controllingdirection
|
||||
.IsReInvoiceReason = _Controlling.IsReInvoiceReason
|
||||
.ReInvoiceDescription = _Controlling.ReInvoiceDescription
|
||||
.TechnicalContractLimit = _Controlling.TechnicalContractLimit
|
||||
If _Controlling.Controlling1 IsNot Nothing Then
|
||||
.Controlling1 = _uow_To.GetObjectByKey(Of Controlling)(_Controlling.Controlling1.Oid)
|
||||
Else
|
||||
.Controlling1 = Nothing
|
||||
End If
|
||||
If _Controlling.Controlling2 IsNot Nothing Then
|
||||
.Controlling2 = _uow_To.GetObjectByKey(Of Controlling)(_Controlling.Controlling2.Oid)
|
||||
Else
|
||||
.Controlling2 = Nothing
|
||||
End If
|
||||
If _Controlling.Controlling3 IsNot Nothing Then
|
||||
.Controlling3 = _uow_To.GetObjectByKey(Of Controlling)(_Controlling.Controlling3.Oid)
|
||||
Else
|
||||
.Controlling3 = Nothing
|
||||
End If
|
||||
If _Controlling.Controlling4 IsNot Nothing Then
|
||||
.Controlling4 = _uow_To.GetObjectByKey(Of Controlling)(_Controlling.Controlling4.Oid)
|
||||
Else
|
||||
.Controlling4 = Nothing
|
||||
End If
|
||||
If _Controlling.Controlling5 IsNot Nothing Then
|
||||
.Controlling5 = _uow_To.GetObjectByKey(Of Controlling)(_Controlling.Controlling5.Oid)
|
||||
Else
|
||||
.Controlling5 = Nothing
|
||||
End If
|
||||
.IsAdvancePayment = _Controlling.IsAdvancePayment
|
||||
.IsEstateStatistics = _Controlling.IsEstateStatistics
|
||||
End With
|
||||
_uow_To.CommitChanges()
|
||||
|
||||
|
||||
Select _SystemTool.SQLType_To
|
||||
Case eSQLType.MSSQL
|
||||
_uow_To.ExecuteNonQuery("ALTER TABLE HCategory NOCHECK CONSTRAINT ALL")
|
||||
_uow_To.ExecuteNonQuery("ALTER TABLE Controlling NOCHECK CONSTRAINT ALL")
|
||||
_uow_To.ExecuteNonQuery("UPDATE HCategory SET Oid='" + _Controlling.Oid.ToString + "' WHERE Oid='" + _Controlling_New.Oid.ToString + "'")
|
||||
_uow_To.ExecuteNonQuery("UPDATE Controlling SET Oid='" + _Controlling.Oid.ToString + "' WHERE Oid='" + _Controlling_New.Oid.ToString + "'")
|
||||
_uow_To.ExecuteNonQuery("ALTER TABLE HCategory CHECK CONSTRAINT ALL")
|
||||
_uow_To.ExecuteNonQuery("ALTER TABLE Controlling CHECK CONSTRAINT ALL")
|
||||
Case eSQLType.MySQL
|
||||
'--==Oid regenerálás==--
|
||||
_uow_To.ExecuteNonQuery("SET foreign_key_checks = 0")
|
||||
_uow_To.ExecuteNonQuery("UPDATE HCategory SET Oid='" + _Controlling.Oid.ToString + "' WHERE Oid='" + _Controlling_New.Oid.ToString + "'")
|
||||
_uow_To.ExecuteNonQuery("UPDATE Controlling SET Oid='" + _Controlling.Oid.ToString + "' WHERE Oid='" + _Controlling_New.Oid.ToString + "'")
|
||||
_uow_To.ExecuteNonQuery("SET foreign_key_checks = 1")
|
||||
'--===================--
|
||||
Case eSQLType.PostgreSQL
|
||||
_uow_To.ExecuteNonQuery("ALTER TABLE ""HCategory"" DISABLE TRIGGER ALL")
|
||||
_uow_To.ExecuteNonQuery("ALTER TABLE ""Controlling"" DISABLE TRIGGER ALL")
|
||||
_uow_To.ExecuteNonQuery("UPDATE ""HCategory"" SET ""Oid""='" + _Controlling.Oid.ToString + "' WHERE ""Oid""='" + _Controlling_New.Oid.ToString + "'")
|
||||
_uow_To.ExecuteNonQuery("UPDATE ""Controlling"" SET ""Oid""='" + _Controlling.Oid.ToString + "' WHERE ""Oid""='" + _Controlling_New.Oid.ToString + "'")
|
||||
_uow_To.ExecuteNonQuery("ALTER TABLE ""HCategory"" ENABLE TRIGGER ALL")
|
||||
_uow_To.ExecuteNonQuery("ALTER TABLE ""Controlling"" ENABLE TRIGGER ALL")
|
||||
|
||||
End Select
|
||||
|
||||
RaiseEvent DoWork()
|
||||
Next
|
||||
RaiseEvent FinalWork
|
||||
End If
|
||||
End If
|
||||
Catch ex As Exception
|
||||
MsgBox(ex.Message)
|
||||
Finally
|
||||
If _Session_From.IsConnected Then _Session_From.Disconnect()
|
||||
If _Session_To.IsConnected Then _Session_To.Disconnect()
|
||||
RaiseEvent FinalWork
|
||||
End Try
|
||||
End Sub
|
||||
Private Sub aSystemTool_ExportOids_CustomizePopupWindowParams(sender As Object, e As CustomizePopupWindowParamsEventArgs) Handles aSystemTool_ExportOids.CustomizePopupWindowParams
|
||||
Dim _onew As Xpo.XPObjectSpace = Application.CreateObjectSpace
|
||||
Dim _ExportOids_PopUp As New ExportOids_PopUp(_onew.Session)
|
||||
|
||||
e.View = Application.CreateDetailView(_onew, "ExportOids_PopUp_DetailView", False, _ExportOids_PopUp)
|
||||
End Sub
|
||||
Private Sub aSystemTool_ExportOids_Execute(sender As Object, e As PopupWindowShowActionExecuteEventArgs) Handles aSystemTool_ExportOids.Execute
|
||||
Dim _ocur As Xpo.XPObjectSpace = TryCast(View.ObjectSpace, Xpo.XPObjectSpace)
|
||||
Dim _ExportOids_PopUp As ExportOids_PopUp = TryCast(e.PopupWindow.View.SelectedObjects(0), ExportOids_PopUp)
|
||||
If _ExportOids_PopUp IsNot Nothing Then
|
||||
Dim _FileName As String = IO.Path.GetTempPath + "Export.txt"
|
||||
If IO.File.Exists(_FileName) Then IO.File.Delete(_FileName)
|
||||
Dim _StreamWriter As New System.IO.StreamWriter(_FileName, True)
|
||||
Select Case _ExportOids_PopUp.ExportOidClass
|
||||
Case eExportOidClass.Controlling
|
||||
Dim _Controlling_Collection As New XPCollection(Of Controlling)(_ocur.Session, CriteriaOperator.Parse("1=1"))
|
||||
_StreamWriter.WriteLine("<Services_Controlling>")
|
||||
_StreamWriter.WriteLine("<!--szolgaltatascsoport id - Controlling Oid-->")
|
||||
Dim _Index As Integer = 1
|
||||
For Each _Controlling As Controlling In _Controlling_Collection
|
||||
_StreamWriter.WriteLine("<!--" + _Controlling.Name + "-->")
|
||||
_StreamWriter.WriteLine("<add key=" + _Index.ToString + " value=" + _Controlling.Oid.ToString + "></add>")
|
||||
_Index += 1
|
||||
Next
|
||||
_StreamWriter.WriteLine("</Services_Controlling>")
|
||||
Case eExportOidClass.CostHolder
|
||||
Dim _CostHolder_Collection As New XPCollection(Of CostHolder)(_ocur.Session, CriteriaOperator.Parse("1=1"))
|
||||
_StreamWriter.WriteLine("<Services_CostHolder>")
|
||||
_StreamWriter.WriteLine("<!--szolgaltatascsoport id - CostHolder Oid-->")
|
||||
Dim _Index As Integer = 1
|
||||
For Each _CostHolder As CostHolder In _CostHolder_Collection
|
||||
_StreamWriter.WriteLine("<!--" + _CostHolder.Name + "-->")
|
||||
_StreamWriter.WriteLine("<add key=" + _Index.ToString + " value=" + _CostHolder.Oid.ToString + "></add>")
|
||||
_Index += 1
|
||||
Next
|
||||
_StreamWriter.WriteLine("</Services_CostHolder>")
|
||||
Case eExportOidClass.VAT
|
||||
Dim _VAT_Collection As New XPCollection(Of VAT)(_ocur.Session, CriteriaOperator.Parse("1=1"))
|
||||
_StreamWriter.WriteLine("<Services_VAT>")
|
||||
_StreamWriter.WriteLine("<!--afanev - VAT Oid-->")
|
||||
Dim _Index As Integer = 1
|
||||
For Each _VAT As VAT In _VAT_Collection
|
||||
_StreamWriter.WriteLine("<!--" + _VAT.ShortName + "-->")
|
||||
_StreamWriter.WriteLine("<add key=" + _VAT.KeyValuePercent.ToString + " value=" + _VAT.Oid.ToString + "></add>")
|
||||
Next
|
||||
_StreamWriter.WriteLine("</Services_VAT>")
|
||||
End Select
|
||||
_StreamWriter.Close()
|
||||
|
||||
If _ExportOids_PopUp.OpenFileAfterExport Then
|
||||
Process.Start(_FileName)
|
||||
End If
|
||||
End If
|
||||
|
||||
End Sub
|
||||
Private Sub aSystemTool_CopyCustomersGLParameters_Execute(sender As Object, e As SimpleActionExecuteEventArgs) Handles aSystemTool_CopyCustomersGLParameters.Execute
|
||||
Dim _ocur As Xpo.XPObjectSpace = TryCast(View.ObjectSpace, Xpo.XPObjectSpace)
|
||||
Dim _SystemTool As SystemTool = TryCast(View.SelectedObjects(0), SystemTool)
|
||||
Dim _CustomersGLParameters_Collection As XPCollection(Of CustomersGLParameters)
|
||||
Dim _Session_From As New Session
|
||||
Dim _Session_To As New Session
|
||||
_Session_From.ConnectionString = GetConnectionString(0, _SystemTool)
|
||||
_Session_To.ConnectionString = GetConnectionString(1, _SystemTool)
|
||||
Try
|
||||
_Session_From.Connect()
|
||||
If _Session_From.IsConnected Then
|
||||
_Session_To.Connect()
|
||||
If _Session_To.IsConnected Then
|
||||
|
||||
Dim _uow_From As New UnitOfWork(_Session_From.DataLayer)
|
||||
Dim _uow_To As New UnitOfWork(_Session_To.DataLayer)
|
||||
_CustomersGLParameters_Collection = New XPCollection(Of CustomersGLParameters)(_uow_From, CriteriaOperator.Parse("1=1"))
|
||||
|
||||
RaiseEvent InitWork(1, 1, _CustomersGLParameters_Collection.Count)
|
||||
For Each _CustomersGLParameters As CustomersGLParameters In _CustomersGLParameters_Collection
|
||||
Dim _CustomersGLParameters_New As New CustomersGLParameters(_uow_To)
|
||||
With _CustomersGLParameters_New
|
||||
.ShortName = _CustomersGLParameters.ShortName
|
||||
.DefaultforBusiness = _CustomersGLParameters.DefaultforBusiness
|
||||
End With
|
||||
_uow_To.CommitChanges()
|
||||
|
||||
Select Case _SystemTool.SQLType_To
|
||||
Case eSQLType.MSSQL
|
||||
_uow_To.ExecuteNonQuery("UPDATE CustomersGLParameters SET Oid='" + _CustomersGLParameters.Oid.ToString + "' WHERE Oid='" + _CustomersGLParameters_New.Oid.ToString + "'")
|
||||
Case eSQLType.MySQL
|
||||
'--==Oid regenerálás==--
|
||||
_uow_To.ExecuteNonQuery("UPDATE CustomersGLParameters SET Oid='" + _CustomersGLParameters.Oid.ToString + "' WHERE Oid='" + _CustomersGLParameters_New.Oid.ToString + "'")
|
||||
'--===================--
|
||||
Case eSQLType.PostgreSQL
|
||||
_uow_To.ExecuteNonQuery("UPDATE ""CustomersGLParameters"" SET ""Oid""='" + _CustomersGLParameters.Oid.ToString + "' WHERE ""Oid""='" + _CustomersGLParameters_New.Oid.ToString + "'")
|
||||
End Select
|
||||
|
||||
RaiseEvent DoWork()
|
||||
Next
|
||||
RaiseEvent FinalWork
|
||||
End If
|
||||
End If
|
||||
Catch ex As Exception
|
||||
MsgBox(ex.Message)
|
||||
Finally
|
||||
If _Session_From.IsConnected Then _Session_From.Disconnect()
|
||||
If _Session_To.IsConnected Then _Session_To.Disconnect()
|
||||
RaiseEvent FinalWork
|
||||
End Try
|
||||
End Sub
|
||||
Private Sub aSystemTool_CopyUnits_Execute(sender As Object, e As SimpleActionExecuteEventArgs) Handles aSystemTool_CopyUnits.Execute
|
||||
'Beep()
|
||||
|
||||
End Sub
|
||||
Private Sub aSystemTool_CopyWorkflowSystem_CustomizePopupWindowParams(sender As Object, e As CustomizePopupWindowParamsEventArgs) Handles aSystemTool_CopyWorkflowSystem.CustomizePopupWindowParams
|
||||
Dim _onew As Xpo.XPObjectSpace = Application.CreateObjectSpace
|
||||
Dim _SystemTool As SystemTool = TryCast(View.SelectedObjects(0), SystemTool)
|
||||
Dim _Session_From As New Session
|
||||
_Session_From.ConnectionString = GetConnectionString(0, _SystemTool)
|
||||
_Session_From.Connect()
|
||||
If _Session_From.IsConnected Then
|
||||
Dim _CopyWorkflowSystem_CollectionSource As New CollectionSource(_onew, GetType(CopyWorkflowSystem_PopUp))
|
||||
Dim _WorkflowSystem_Collection As New XPCollection(Of WorkflowSystem)(_Session_From)
|
||||
|
||||
If _WorkflowSystem_Collection.Count > 0 Then
|
||||
For Each _WorkflowSystem As WorkflowSystem In _WorkflowSystem_Collection
|
||||
Dim _CopyWorkflowSystem_PopUp As New CopyWorkflowSystem_PopUp(_onew.Session)
|
||||
With _CopyWorkflowSystem_PopUp
|
||||
.NeedToCopy = True
|
||||
.WorkflowSystem = _onew.GetObject(_WorkflowSystem)
|
||||
End With
|
||||
_CopyWorkflowSystem_CollectionSource.Add(_CopyWorkflowSystem_PopUp)
|
||||
Next
|
||||
End If
|
||||
e.View = Application.CreateListView("CopyWorkflowSystem_PopUp_ListView", _CopyWorkflowSystem_CollectionSource, True)
|
||||
_Session_From.Disconnect()
|
||||
End If
|
||||
|
||||
End Sub
|
||||
Private Sub aSystemTool_CopyWorkflowSystem_Execute(sender As Object, e As PopupWindowShowActionExecuteEventArgs) Handles aSystemTool_CopyWorkflowSystem.Execute
|
||||
Try
|
||||
Dim _ocur As Xpo.XPObjectSpace = TryCast(View.ObjectSpace, Xpo.XPObjectSpace)
|
||||
Dim _SystemTool As SystemTool = TryCast(View.SelectedObjects(0), SystemTool)
|
||||
Dim _Session_From As New Session
|
||||
Dim _Session_To As New Session
|
||||
_Session_From.ConnectionString = GetConnectionString(0, _SystemTool)
|
||||
_Session_To.ConnectionString = GetConnectionString(1, _SystemTool)
|
||||
|
||||
_Session_From.Connect()
|
||||
If _Session_From.IsConnected Then
|
||||
_Session_To.Connect()
|
||||
If _Session_To.IsConnected Then
|
||||
RaiseEvent InitWork(1, 1, TryCast(e.PopupWindow.View, ListView).CollectionSource.GetCount())
|
||||
Dim _uow_To As New UnitOfWork(_Session_To.DataLayer)
|
||||
|
||||
For Each _CopyWorkflowSystem_PopUp As CopyWorkflowSystem_PopUp In TryCast(e.PopupWindow.View, ListView).CollectionSource.Collection
|
||||
If _CopyWorkflowSystem_PopUp.NeedToCopy Then
|
||||
Dim _WorkflowSystem As New WorkflowSystem(_uow_To)
|
||||
With _WorkflowSystem
|
||||
.CustomersFrom = _uow_To.FindObject(Of CustomersFrom)(CriteriaOperator.Parse("IsDefault=True"))
|
||||
.PartnerType = _CopyWorkflowSystem_PopUp.WorkflowSystem.PartnerType
|
||||
.ShortName = _CopyWorkflowSystem_PopUp.WorkflowSystem.ShortName
|
||||
.Description = _CopyWorkflowSystem_PopUp.WorkflowSystem.Description
|
||||
End With
|
||||
|
||||
For Each _WorkflowSystemSteps As WorkflowSystemSteps In _CopyWorkflowSystem_PopUp.WorkflowSystem.WorkflowSystemSteps
|
||||
Dim _WorkflowSystemSteps_NEW As New WorkflowSystemSteps(_uow_To)
|
||||
With _WorkflowSystemSteps_NEW
|
||||
.WorkflowSystem = _WorkflowSystem
|
||||
.ShortName = _WorkflowSystemSteps.ShortName
|
||||
.StepIndex = _WorkflowSystemSteps.StepIndex
|
||||
.TaskDescription = _WorkflowSystemSteps.TaskDescription
|
||||
.ExpirationDayofFailure = _WorkflowSystemSteps.ExpirationDayofFailure
|
||||
.ActionOnSuccess = _WorkflowSystemSteps.ActionOnSuccess
|
||||
.ActionOnFailure = _WorkflowSystemSteps.ActionOnFailure
|
||||
.IsLastStep = _WorkflowSystemSteps.IsLastStep
|
||||
.IsReadyForImport = _WorkflowSystemSteps.IsReadyForImport
|
||||
.StepFinancialType = _WorkflowSystemSteps.StepFinancialType
|
||||
End With
|
||||
Next
|
||||
_uow_To.CommitChanges()
|
||||
RaiseEvent DoWork()
|
||||
End If
|
||||
Next
|
||||
End If
|
||||
End If
|
||||
Catch ex As Exception
|
||||
MsgBox(ex.Message, MsgBoxStyle.OkOnly + MsgBoxStyle.Critical, "Hiba!")
|
||||
Finally
|
||||
RaiseEvent FinalWork
|
||||
End Try
|
||||
End Sub
|
||||
Private Function IsExistChartOfAccounts(_AccountNumberIn As String, _ChartOfAccounts_CollectionIn As XPCollection(Of ChartOfAccounts)) As Boolean
|
||||
Dim _Result As Boolean = False
|
||||
For Each _ChartOfAccounts As ChartOfAccounts In _ChartOfAccounts_CollectionIn
|
||||
If _ChartOfAccounts.AccountNumber = _AccountNumberIn Then
|
||||
_Result = True
|
||||
Exit For
|
||||
End If
|
||||
Next
|
||||
|
||||
Return _Result
|
||||
End Function
|
||||
|
||||
End Class
|
||||
+52
@@ -0,0 +1,52 @@
|
||||
USE [PH20110829]
|
||||
GO
|
||||
|
||||
/****** Object: StoredProcedure [dbo].[Feladattakaritas5] Script Date: 09/09/2011 12:43:10 ******/
|
||||
SET ANSI_NULLS ON
|
||||
GO
|
||||
|
||||
SET QUOTED_IDENTIFIER ON
|
||||
GO
|
||||
|
||||
CREATE PROCEDURE [dbo].[Feladattakaritas5] AS
|
||||
-- Add the parameters for the stored procedure here
|
||||
declare @RegistryHeader varchar(250), @Count int, @RegistryTask varchar(250), @Edit int
|
||||
-- SET NOCOUNT ON added to prevent extra result sets from
|
||||
-- interfering with SELECT statements.
|
||||
SET NOCOUNT ON;
|
||||
|
||||
declare cRegistryHeader cursor for select t1.RegistryHeader, Count(RegistryHeader) from RegistryTasks as t1 join
|
||||
Task as t2 on t1.Oid=t2.Oid where t2.GCRecord is null and t2.Status='0' group by RegistryHeader having COUNT(RegistryHeader) >1
|
||||
open cRegistryHeader
|
||||
|
||||
fetch next from cRegistryHeader
|
||||
into @RegistryHeader, @Count
|
||||
begin transaction
|
||||
while @@FETCH_STATUS = 0
|
||||
BEGIN
|
||||
set @edit = 0
|
||||
declare cRegistryTasks cursor for select t1.oid from RegistryTasks as t1 join Task as t2 on t1.oid=t2.oid where t1.registryheader = @registryheader and t2.gcrecord is null and t2.status='0' order by t2.startdate desc
|
||||
open cRegistryTasks
|
||||
fetch next from cRegistryTasks into @RegistryTask
|
||||
while @@FETCH_STATUS =0
|
||||
begin
|
||||
|
||||
if @Edit=1
|
||||
update Task set gcrecord='11' where Oid = @RegistryTask
|
||||
|
||||
else
|
||||
set @edit = 1
|
||||
fetch next from cRegistryTasks into @RegistryTask
|
||||
end
|
||||
|
||||
close cRegistryTasks
|
||||
deallocate cRegistryTasks
|
||||
|
||||
fetch next from cRegistryHeader into @RegistryHeader, @Count
|
||||
END
|
||||
commit transaction
|
||||
close cRegistryHeader
|
||||
deallocate cRegistryHeader
|
||||
|
||||
GO
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
+462
@@ -0,0 +1,462 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v12.1, Version=12.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v12.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.ExpressApp.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Xpo.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.Xpo.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ComponentModel.DataAnnotations\v4.0_4.0.0.0__31bf3856ad364e35\System.ComponentModel.DataAnnotations.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Internals\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Internals.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Net.Http\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Net.Http.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraReports.v12.1.Extensions\12.1.7.0__b88d1754d700e49a\DevExpress.XtraReports.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Utils.v12.1.UI\12.1.7.0__b88d1754d700e49a\DevExpress.Utils.v12.1.UI.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraBars.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.XtraBars.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraTreeList.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.XtraTreeList.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraRichEdit.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.XtraRichEdit.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.RichEdit.v12.1.Core\12.1.7.0__b88d1754d700e49a\DevExpress.RichEdit.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Office.v12.1.Core\12.1.7.0__b88d1754d700e49a\DevExpress.Office.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraPrinting.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.XtraPrinting.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Reports.v12.1.Designer\12.1.7.0__b88d1754d700e49a\DevExpress.Reports.v12.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraCharts.v12.1.Extensions\12.1.7.0__b88d1754d700e49a\DevExpress.XtraCharts.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraNavBar.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.XtraNavBar.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraVerticalGrid.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.XtraVerticalGrid.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.CodeParser.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.CodeParser.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Client\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Client.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Design\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Entity\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Entity.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Channels\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Channels.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class xafReport1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label17;
|
||||
private DevExpress.XtraReports.UI.XRLabel label12;
|
||||
private DevExpress.XtraReports.UI.PageFooterBand pageFooterBand1;
|
||||
private DevExpress.XtraReports.UI.ReportHeaderBand reportHeaderBand1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label10;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label8;
|
||||
private DevExpress.XtraReports.UI.XRLabel label9;
|
||||
private DevExpress.XtraReports.UI.XRLabel label11;
|
||||
private DevExpress.XtraReports.UI.XRLine line1;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter;
|
||||
private DevExpress.XtraReports.UI.XRLine line3;
|
||||
private DevExpress.XtraReports.UI.XRLabel label14;
|
||||
private DevExpress.XtraReports.UI.XRLabel label13;
|
||||
private DevExpress.XtraReports.UI.FormattingRule formattingRule1;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public xafReport1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = "zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJza" +
|
||||
"W9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4O" +
|
||||
"SNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAHAAAAAAAAAFBBRFBBRFAFQIOWS" +
|
||||
"F5ywcZ0uN7j8d/grBNR4gGHaUXVHBt5VgAAAAAAAACOAAAAZwAAAPQAAAArAAAAvwAAAPkBAAAmJAB0A" +
|
||||
"GgAaQBzAC4AUwBjAHIAaQBwAHQAcwBTAG8AdQByAGMAZQAAAAAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQ" +
|
||||
"wBsAGEAcwBzAE4AYQBtAGUAYgIAAAxGAGkAbAB0AGUAcgCQAgAAIkYAaQBsAHQAZQByAEQAZQBzAGMAc" +
|
||||
"gBpAHAAdABpAG8AbgCSAgAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlA" +
|
||||
"HcAlAIAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQCWAgAAF" +
|
||||
"FIAZQBwAG8AcgB0AE4AYQBtAGUAlwIAAAHfBHVzaW5nIFN5c3RlbTsNCnVzaW5nIFN5c3RlbS5Db2xsZ" +
|
||||
"WN0aW9ucy5HZW5lcmljOw0KdXNpbmcgU3lzdGVtLkRyYXdpbmc7DQp1c2luZyBTeXN0ZW0uTGlucTsNC" +
|
||||
"nVzaW5nIFN5c3RlbS5UZXh0Ow0KdXNpbmcgU3lzdGVtLldpbmRvd3MuRm9ybXM7DQoNCnByaXZhdGUgd" +
|
||||
"m9pZCBPbkJlZm9yZVByaW50KG9iamVjdCBzZW5kZXIsIFN5c3RlbS5EcmF3aW5nLlByaW50aW5nLlBya" +
|
||||
"W50RXZlbnRBcmdzIGUpIA0Kew0KCS8vaWYgKHBpY3R1cmVCb3gxLmltYWdlPT1udWxsKSANCi8vew0KL" +
|
||||
"y9waWN0dXJlQm94MS4NCi8vfQ0KfQ0KDQpwcml2YXRlIHZvaWQgcGljdHVyZUJveDFfUHJldmlld0Rvd" +
|
||||
"WJsZUNsaWNrKG9iamVjdCBzZW5kZXIsIERldkV4cHJlc3MuWHRyYVJlcG9ydHMuVUkuUHJldmlld01vd" +
|
||||
"XNlRXZlbnRBcmdzIGUpIA0Kew0KCXN0cmluZyBwaWM7DQpPcGVuRmlsZURpYWxvZyBvRmlsZT1uZXcgT" +
|
||||
"3BlbkZpbGVEaWFsb2coKTsNCm9GaWxlLkZpbHRlciA9ICJqcGcgZmlsZXMgKCouanBnKXwqLmpwZ3xib" +
|
||||
"XAgZmlsZSAoKi5ibXApfCouYm1wIiA7DQoJb0ZpbGUuU2hvd0RpYWxvZygpOw0KcGljPW9GaWxlLkZpb" +
|
||||
"GVOYW1lOw0KTWVzc2FnZUJveC5TaG93KHBpYyk7DQp9DQoBLFNJU0J1c2luZXNzLk1vZHVsZS5PcmRlc" +
|
||||
"kluQWNrbm93bGVkZ2VtZW50VkFUAQABAAEAAAEvQmVqw7Z2xZEgbWVncmVuZGVsw6lzIHZpc3N6YWlnY" +
|
||||
"XpvbMOhc2EgYWxyaXBvcnQ=";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
DevExpress.XtraReports.UI.XRSummary summary1 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary2 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.pageFooterBand1 = new DevExpress.XtraReports.UI.PageFooterBand();
|
||||
this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label17 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line1 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.line3 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label14 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label13 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.formattingRule1 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label2,
|
||||
this.label1,
|
||||
this.label17,
|
||||
this.label12});
|
||||
this.detailBand1.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.detailBand1.HeightF = 21.99998F;
|
||||
this.detailBand1.KeepTogether = true;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
this.detailBand1.StylePriority.UseFont = false;
|
||||
this.detailBand1.StylePriority.UseTextAlignment = false;
|
||||
this.detailBand1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// pageFooterBand1
|
||||
//
|
||||
this.pageFooterBand1.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.pageFooterBand1.HeightF = 3.999964F;
|
||||
this.pageFooterBand1.Name = "pageFooterBand1";
|
||||
this.pageFooterBand1.StylePriority.UseFont = false;
|
||||
this.pageFooterBand1.StylePriority.UseTextAlignment = false;
|
||||
this.pageFooterBand1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// reportHeaderBand1
|
||||
//
|
||||
this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label10,
|
||||
this.label6,
|
||||
this.label8,
|
||||
this.label9,
|
||||
this.label11,
|
||||
this.line1});
|
||||
this.reportHeaderBand1.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.reportHeaderBand1.HeightF = 25.00002F;
|
||||
this.reportHeaderBand1.Name = "reportHeaderBand1";
|
||||
this.reportHeaderBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.topMarginBand1.HeightF = 6F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
this.topMarginBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.bottomMarginBand1.HeightF = 0F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
this.bottomMarginBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// ReportFooter
|
||||
//
|
||||
this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line3,
|
||||
this.label14,
|
||||
this.label13});
|
||||
this.ReportFooter.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.ReportFooter.HeightF = 23.4166F;
|
||||
this.ReportFooter.KeepTogether = true;
|
||||
this.ReportFooter.Name = "ReportFooter";
|
||||
this.ReportFooter.StylePriority.UseFont = false;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountBruttoHUF", "{0:#,##0}")});
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(408.4583F, 1.999982F);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(75.49997F, 19.00001F);
|
||||
this.label2.StylePriority.UseTextAlignment = false;
|
||||
this.label2.Text = "label2";
|
||||
this.label2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountVATHUF", "{0:#,##0}")});
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(308.8437F, 1.999982F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.SizeF = new System.Drawing.SizeF(70F, 19.00001F);
|
||||
this.label1.StylePriority.UseTextAlignment = false;
|
||||
this.label1.Text = "label1";
|
||||
this.label1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label17
|
||||
//
|
||||
this.label17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountNettoHUF", "{0:#,##0}")});
|
||||
this.label17.LocationFloat = new DevExpress.Utils.PointFloat(209.2291F, 1.999982F);
|
||||
this.label17.Name = "label17";
|
||||
this.label17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label17.Scripts.OnSummaryGetResult = "label2_SummaryGetResult";
|
||||
this.label17.SizeF = new System.Drawing.SizeF(70F, 20F);
|
||||
this.label17.StylePriority.UseTextAlignment = false;
|
||||
summary1.Func = DevExpress.XtraReports.UI.SummaryFunc.Custom;
|
||||
this.label17.Summary = summary1;
|
||||
this.label17.Text = "label17";
|
||||
this.label17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label12
|
||||
//
|
||||
this.label12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "VAT.ShortName")});
|
||||
this.label12.LocationFloat = new DevExpress.Utils.PointFloat(109.6146F, 1.999982F);
|
||||
this.label12.Name = "label12";
|
||||
this.label12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label12.SizeF = new System.Drawing.SizeF(70F, 20F);
|
||||
this.label12.StylePriority.UseTextAlignment = false;
|
||||
this.label12.Text = "label12";
|
||||
this.label12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label10
|
||||
//
|
||||
this.label10.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label10.LocationFloat = new DevExpress.Utils.PointFloat(308.8437F, 0F);
|
||||
this.label10.Name = "label10";
|
||||
this.label10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label10.SizeF = new System.Drawing.SizeF(70F, 23F);
|
||||
this.label10.StylePriority.UseFont = false;
|
||||
this.label10.StylePriority.UseTextAlignment = false;
|
||||
this.label10.Text = "ÁFA érték";
|
||||
this.label10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomRight;
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 0F);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label6.SizeF = new System.Drawing.SizeF(75F, 23F);
|
||||
this.label6.StylePriority.UseTextAlignment = false;
|
||||
this.label6.Text = "Összesítés:";
|
||||
this.label6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
|
||||
//
|
||||
// label8
|
||||
//
|
||||
this.label8.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label8.LocationFloat = new DevExpress.Utils.PointFloat(109.6146F, 0F);
|
||||
this.label8.Name = "label8";
|
||||
this.label8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label8.SizeF = new System.Drawing.SizeF(70F, 23F);
|
||||
this.label8.StylePriority.UseFont = false;
|
||||
this.label8.StylePriority.UseTextAlignment = false;
|
||||
this.label8.Text = "ÁFA kulcs";
|
||||
this.label8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomCenter;
|
||||
//
|
||||
// label9
|
||||
//
|
||||
this.label9.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label9.LocationFloat = new DevExpress.Utils.PointFloat(209.2291F, 0F);
|
||||
this.label9.Name = "label9";
|
||||
this.label9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label9.SizeF = new System.Drawing.SizeF(70F, 23F);
|
||||
this.label9.StylePriority.UseFont = false;
|
||||
this.label9.StylePriority.UseTextAlignment = false;
|
||||
this.label9.Text = "Nettó érték";
|
||||
this.label9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomRight;
|
||||
//
|
||||
// label11
|
||||
//
|
||||
this.label11.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label11.LocationFloat = new DevExpress.Utils.PointFloat(408.4583F, 0F);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label11.SizeF = new System.Drawing.SizeF(75F, 23F);
|
||||
this.label11.StylePriority.UseFont = false;
|
||||
this.label11.StylePriority.UseTextAlignment = false;
|
||||
this.label11.Text = "Bruttó érték";
|
||||
this.label11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomRight;
|
||||
//
|
||||
// line1
|
||||
//
|
||||
this.line1.LocationFloat = new DevExpress.Utils.PointFloat(11.04171F, 23.00002F);
|
||||
this.line1.Name = "line1";
|
||||
this.line1.SizeF = new System.Drawing.SizeF(472.9166F, 2F);
|
||||
//
|
||||
// line3
|
||||
//
|
||||
this.line3.LocationFloat = new DevExpress.Utils.PointFloat(11.0417F, 2.083333F);
|
||||
this.line3.Name = "line3";
|
||||
this.line3.SizeF = new System.Drawing.SizeF(472.9166F, 2F);
|
||||
//
|
||||
// label14
|
||||
//
|
||||
this.label14.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label14.LocationFloat = new DevExpress.Utils.PointFloat(109.6146F, 4.083315F);
|
||||
this.label14.Name = "label14";
|
||||
this.label14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label14.SizeF = new System.Drawing.SizeF(144.3127F, 19.33328F);
|
||||
this.label14.StylePriority.UseFont = false;
|
||||
this.label14.Text = "Mindösszesen bruttó:";
|
||||
//
|
||||
// label13
|
||||
//
|
||||
this.label13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountBruttoHUF")});
|
||||
this.label13.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label13.LocationFloat = new DevExpress.Utils.PointFloat(360.3333F, 4.083347F);
|
||||
this.label13.Name = "label13";
|
||||
this.label13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label13.SizeF = new System.Drawing.SizeF(123.125F, 19.33325F);
|
||||
this.label13.StylePriority.UseFont = false;
|
||||
this.label13.StylePriority.UseTextAlignment = false;
|
||||
summary2.FormatString = "{0:#,#}";
|
||||
summary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
|
||||
this.label13.Summary = summary2;
|
||||
this.label13.Text = "label13";
|
||||
this.label13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// formattingRule1
|
||||
//
|
||||
this.formattingRule1.Name = "formattingRule1";
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.White;
|
||||
this.Title.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.White;
|
||||
this.FieldCaption.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.White;
|
||||
this.PageInfo.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.White;
|
||||
this.DataField.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// xafReport1
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.pageFooterBand1,
|
||||
this.reportHeaderBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.ReportFooter});
|
||||
this.DisplayName = "Bejövő megrendelés visszaigazolása alriport";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
|
||||
this.formattingRule1});
|
||||
this.Margins = new System.Drawing.Printing.Margins(40, 40, 6, 0);
|
||||
this.Name = "xafReport1";
|
||||
this.PageHeight = 1169;
|
||||
this.PageWidth = 827;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
this.ScriptsSource = resources.GetString("$this.ScriptsSource");
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "12.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
+1382
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
+501
@@ -0,0 +1,501 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v11.1, Version=11.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v11.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Xpo.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.Xpo.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraReports.v11.1.Extensions\11.1.8.0__b88d1754d700e49a\DevExpress.XtraReports.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraBars.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraBars.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Reports.v11.1.Designer\11.1.8.0__b88d1754d700e49a\DevExpress.Reports.v11.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraCharts.v11.1.Extensions\11.1.8.0__b88d1754d700e49a\DevExpress.XtraCharts.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraPrinting.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraPrinting.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraRichEdit.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraRichEdit.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.RichEdit.v11.1.Core\11.1.8.0__b88d1754d700e49a\DevExpress.RichEdit.v11.1.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraTreeList.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraTreeList.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraNavBar.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraNavBar.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraVerticalGrid.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraVerticalGrid.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.CodeParser.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.CodeParser.v11.1.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class xafReport1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table2;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow2;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label3;
|
||||
private DevExpress.XtraReports.UI.XRLabel label4;
|
||||
private DevExpress.XtraReports.UI.XRLabel label9;
|
||||
private DevExpress.XtraReports.UI.ReportHeaderBand reportHeaderBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table1;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label7;
|
||||
private DevExpress.XtraReports.UI.XRLabel label8;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1;
|
||||
private DevExpress.XtraReports.UI.XRLine line2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label10;
|
||||
private DevExpress.XtraReports.UI.XRLabel label11;
|
||||
private DevExpress.XtraReports.UI.XRLabel label12;
|
||||
private DevExpress.XtraReports.UI.FormattingRule formattingRule1;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public xafReport1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAGAAAAAAAAAFBBRFBBRFAFQIOWxnS43uPx3+CsE1HiAYdpRdUcG3krAAAAYwAAADwAAADJAAAAAAAAAJQAAADGAQAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQwBsAGEAcwBzAE4AYQBtAGUAAAAAAAxGAGkAbAB0AGUAcgAjAAAAIkYAaQBsAHQAZQByAEQAZQBzAGMAcgBpAHAAdABpAG8AbgAlAAAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlAHcAJwAAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQApAAAAFFIAZQBwAG8AcgB0AE4AYQBtAGUAKgAAAAEhU0lTQnVzaW5lc3MuTW9kdWxlLkludm9pY2VWQVRSb3dzAQABAAEAAAErQzNDLUJhbmtuZXQgS2ltZW7FkSBzesOhbWxhIMOBRkEgKGRldml6w6FzKQ==";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
DevExpress.XtraReports.UI.XRSummary summary1 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary2 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary3 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.table2 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.table1 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line2 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.formattingRule1 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table2});
|
||||
this.detailBand1.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.detailBand1.HeightF = 23F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
this.detailBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// reportHeaderBand1
|
||||
//
|
||||
this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table1});
|
||||
this.reportHeaderBand1.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.reportHeaderBand1.HeightF = 30F;
|
||||
this.reportHeaderBand1.Name = "reportHeaderBand1";
|
||||
this.reportHeaderBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 0F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 0F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// GroupFooter1
|
||||
//
|
||||
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line2,
|
||||
this.label1,
|
||||
this.label10,
|
||||
this.label11,
|
||||
this.label12});
|
||||
this.GroupFooter1.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.GroupFooter1.HeightF = 33.50005F;
|
||||
this.GroupFooter1.Name = "GroupFooter1";
|
||||
this.GroupFooter1.StylePriority.UseFont = false;
|
||||
this.GroupFooter1.Visible = false;
|
||||
//
|
||||
// table2
|
||||
//
|
||||
this.table2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.table2.Name = "table2";
|
||||
this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow2});
|
||||
this.table2.SizeF = new System.Drawing.SizeF(777F, 23F);
|
||||
//
|
||||
// tableRow2
|
||||
//
|
||||
this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell2});
|
||||
this.tableRow2.Name = "tableRow2";
|
||||
this.tableRow2.Weight = 1D;
|
||||
//
|
||||
// tableCell2
|
||||
//
|
||||
this.tableCell2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label2,
|
||||
this.label3,
|
||||
this.label4,
|
||||
this.label9});
|
||||
this.tableCell2.Name = "tableCell2";
|
||||
this.tableCell2.Text = "tableCell2";
|
||||
this.tableCell2.Weight = 3D;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "VAT.ShortName")});
|
||||
this.label2.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(120F, 0F);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(46.875F, 23F);
|
||||
this.label2.StylePriority.UseFont = false;
|
||||
this.label2.StylePriority.UseTextAlignment = false;
|
||||
this.label2.Text = "label2";
|
||||
this.label2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountNettoDEV", "{0:#,###0.000}")});
|
||||
this.label3.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label3.LocationFloat = new DevExpress.Utils.PointFloat(250F, 0F);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label3.SizeF = new System.Drawing.SizeF(107.2917F, 23F);
|
||||
this.label3.StylePriority.UseFont = false;
|
||||
this.label3.StylePriority.UseTextAlignment = false;
|
||||
this.label3.Text = "label3";
|
||||
this.label3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountVATDEV", "{0:#,###0.000}")});
|
||||
this.label4.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(375F, 0F);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label4.SizeF = new System.Drawing.SizeF(107.2917F, 23F);
|
||||
this.label4.StylePriority.UseFont = false;
|
||||
this.label4.StylePriority.UseTextAlignment = false;
|
||||
this.label4.Text = "label4";
|
||||
this.label4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label9
|
||||
//
|
||||
this.label9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountBruttoDEV", "{0:#,###0.000}")});
|
||||
this.label9.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label9.LocationFloat = new DevExpress.Utils.PointFloat(530F, 0F);
|
||||
this.label9.Name = "label9";
|
||||
this.label9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label9.SizeF = new System.Drawing.SizeF(107.2917F, 23F);
|
||||
this.label9.StylePriority.UseFont = false;
|
||||
this.label9.StylePriority.UseTextAlignment = false;
|
||||
this.label9.Text = "label9";
|
||||
this.label9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// table1
|
||||
//
|
||||
this.table1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.table1.Name = "table1";
|
||||
this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow1});
|
||||
this.table1.SizeF = new System.Drawing.SizeF(777F, 30F);
|
||||
//
|
||||
// tableRow1
|
||||
//
|
||||
this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell1});
|
||||
this.tableRow1.Name = "tableRow1";
|
||||
this.tableRow1.Weight = 1D;
|
||||
//
|
||||
// tableCell1
|
||||
//
|
||||
this.tableCell1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label5,
|
||||
this.label6,
|
||||
this.label7,
|
||||
this.label8});
|
||||
this.tableCell1.Name = "tableCell1";
|
||||
this.tableCell1.Text = "tableCell1";
|
||||
this.tableCell1.Weight = 3D;
|
||||
//
|
||||
// label5
|
||||
//
|
||||
this.label5.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(120F, 0F);
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label5.SizeF = new System.Drawing.SizeF(46.875F, 30F);
|
||||
this.label5.StylePriority.UseFont = false;
|
||||
this.label5.StylePriority.UseTextAlignment = false;
|
||||
this.label5.Text = "VAT % ÁFA %";
|
||||
this.label5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(250F, 0F);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label6.SizeF = new System.Drawing.SizeF(120F, 30F);
|
||||
this.label6.StylePriority.UseFont = false;
|
||||
this.label6.StylePriority.UseTextAlignment = false;
|
||||
this.label6.Text = "VAT basis amount ÁFA alapösszeg";
|
||||
this.label6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label7
|
||||
//
|
||||
this.label7.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label7.LocationFloat = new DevExpress.Utils.PointFloat(400F, 0F);
|
||||
this.label7.Name = "label7";
|
||||
this.label7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label7.SizeF = new System.Drawing.SizeF(90F, 30F);
|
||||
this.label7.StylePriority.UseFont = false;
|
||||
this.label7.StylePriority.UseTextAlignment = false;
|
||||
this.label7.Text = "VAT amount ÁFA összeg";
|
||||
this.label7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label8
|
||||
//
|
||||
this.label8.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label8.LocationFloat = new DevExpress.Utils.PointFloat(550F, 0F);
|
||||
this.label8.Name = "label8";
|
||||
this.label8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label8.SizeF = new System.Drawing.SizeF(100F, 30F);
|
||||
this.label8.StylePriority.UseFont = false;
|
||||
this.label8.StylePriority.UseTextAlignment = false;
|
||||
this.label8.Text = "Gross amount Bruttó összeg";
|
||||
this.label8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// line2
|
||||
//
|
||||
this.line2.LocationFloat = new DevExpress.Utils.PointFloat(148.9582F, 0F);
|
||||
this.line2.Name = "line2";
|
||||
this.line2.SizeF = new System.Drawing.SizeF(550.0417F, 6.333365F);
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(120F, 10.50002F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label1.StylePriority.UseFont = false;
|
||||
this.label1.StylePriority.UseTextAlignment = false;
|
||||
this.label1.Text = "Összesen";
|
||||
this.label1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label10
|
||||
//
|
||||
this.label10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountNettoDEV")});
|
||||
this.label10.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label10.LocationFloat = new DevExpress.Utils.PointFloat(223.9584F, 10.50005F);
|
||||
this.label10.Name = "label10";
|
||||
this.label10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label10.SizeF = new System.Drawing.SizeF(133.3333F, 23F);
|
||||
this.label10.StylePriority.UseFont = false;
|
||||
this.label10.StylePriority.UseTextAlignment = false;
|
||||
summary1.FormatString = "{0:#,##0}";
|
||||
summary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label10.Summary = summary1;
|
||||
this.label10.Text = "label10";
|
||||
this.label10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label11
|
||||
//
|
||||
this.label11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountVATDEV")});
|
||||
this.label11.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label11.LocationFloat = new DevExpress.Utils.PointFloat(357.2917F, 10.50005F);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label11.SizeF = new System.Drawing.SizeF(120F, 23F);
|
||||
this.label11.StylePriority.UseFont = false;
|
||||
this.label11.StylePriority.UseTextAlignment = false;
|
||||
summary2.FormatString = "{0:#,##0}";
|
||||
summary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label11.Summary = summary2;
|
||||
this.label11.Text = "label11";
|
||||
this.label11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label12
|
||||
//
|
||||
this.label12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountBruttoDEV")});
|
||||
this.label12.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label12.LocationFloat = new DevExpress.Utils.PointFloat(516.4584F, 10.50005F);
|
||||
this.label12.Name = "label12";
|
||||
this.label12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label12.SizeF = new System.Drawing.SizeF(120.8333F, 23F);
|
||||
this.label12.StylePriority.UseFont = false;
|
||||
this.label12.StylePriority.UseTextAlignment = false;
|
||||
summary3.FormatString = "{0:#,##0}";
|
||||
summary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label12.Summary = summary3;
|
||||
this.label12.Text = "label12";
|
||||
this.label12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// formattingRule1
|
||||
//
|
||||
this.formattingRule1.Name = "formattingRule1";
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.White;
|
||||
this.Title.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.White;
|
||||
this.FieldCaption.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.White;
|
||||
this.PageInfo.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.White;
|
||||
this.DataField.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// xafReport1
|
||||
//
|
||||
this.BackColor = System.Drawing.Color.Silver;
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.reportHeaderBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.GroupFooter1});
|
||||
this.DisplayName = "C3C-Banknet Kimenő számla ÁFA (devizás)";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
|
||||
this.formattingRule1});
|
||||
this.Margins = new System.Drawing.Printing.Margins(25, 25, 0, 0);
|
||||
this.Name = "xafReport1";
|
||||
this.PageColor = System.Drawing.Color.Transparent;
|
||||
this.PageHeight = 1169;
|
||||
this.PageWidth = 827;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "11.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,529 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v11.1, Version=11.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v11.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Xpo.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.Xpo.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraReports.v11.1.Extensions\11.1.8.0__b88d1754d700e49a\DevExpress.XtraReports.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraBars.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraBars.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Reports.v11.1.Designer\11.1.8.0__b88d1754d700e49a\DevExpress.Reports.v11.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraCharts.v11.1.Extensions\11.1.8.0__b88d1754d700e49a\DevExpress.XtraCharts.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraPrinting.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraPrinting.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraRichEdit.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraRichEdit.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.RichEdit.v11.1.Core\11.1.8.0__b88d1754d700e49a\DevExpress.RichEdit.v11.1.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraTreeList.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraTreeList.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraNavBar.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraNavBar.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraVerticalGrid.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraVerticalGrid.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.CodeParser.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.CodeParser.v11.1.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class xafReport1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table2;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow2;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label3;
|
||||
private DevExpress.XtraReports.UI.XRLabel label4;
|
||||
private DevExpress.XtraReports.UI.XRLabel label9;
|
||||
private DevExpress.XtraReports.UI.ReportHeaderBand reportHeaderBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table1;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label7;
|
||||
private DevExpress.XtraReports.UI.XRLabel label8;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1;
|
||||
private DevExpress.XtraReports.UI.XRLine line2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label10;
|
||||
private DevExpress.XtraReports.UI.XRLabel label11;
|
||||
private DevExpress.XtraReports.UI.XRLabel label12;
|
||||
private DevExpress.XtraReports.UI.FormattingRule formattingRule1;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private DevExpress.XtraReports.UI.CalculatedField ÁFA_alapösszeg;
|
||||
private DevExpress.XtraReports.UI.CalculatedField Áfa_összeg;
|
||||
private DevExpress.XtraReports.UI.CalculatedField Bruttó_összeg;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public xafReport1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAGAAAAAAAAAFBBRFBBRFAFQIOWxnS43uPx3+CsE1HiAYdpRdUcG3krAAAAYwAAADwAAADJAAAAAAAAAJQAAADGAQAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQwBsAGEAcwBzAE4AYQBtAGUAAAAAAAxGAGkAbAB0AGUAcgAjAAAAIkYAaQBsAHQAZQByAEQAZQBzAGMAcgBpAHAAdABpAG8AbgAlAAAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlAHcAJwAAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQApAAAAFFIAZQBwAG8AcgB0AE4AYQBtAGUAKgAAAAEhU0lTQnVzaW5lc3MuTW9kdWxlLkludm9pY2VWQVRSb3dzAQABAAEAAAEgQzNDLUJhbmtuZXQgS2ltZW7FkSBzesOhbWxhIMOBRkE=";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
DevExpress.XtraReports.UI.XRSummary summary1 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary2 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary3 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.table2 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.table1 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line2 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.formattingRule1 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.ÁFA_alapösszeg = new DevExpress.XtraReports.UI.CalculatedField();
|
||||
this.Áfa_összeg = new DevExpress.XtraReports.UI.CalculatedField();
|
||||
this.Bruttó_összeg = new DevExpress.XtraReports.UI.CalculatedField();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table2});
|
||||
this.detailBand1.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.detailBand1.HeightF = 23F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
this.detailBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// reportHeaderBand1
|
||||
//
|
||||
this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table1});
|
||||
this.reportHeaderBand1.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.reportHeaderBand1.HeightF = 30F;
|
||||
this.reportHeaderBand1.Name = "reportHeaderBand1";
|
||||
this.reportHeaderBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 0F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 0F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// GroupFooter1
|
||||
//
|
||||
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line2,
|
||||
this.label1,
|
||||
this.label10,
|
||||
this.label11,
|
||||
this.label12});
|
||||
this.GroupFooter1.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.GroupFooter1.HeightF = 33.50005F;
|
||||
this.GroupFooter1.Name = "GroupFooter1";
|
||||
this.GroupFooter1.StylePriority.UseFont = false;
|
||||
this.GroupFooter1.Visible = false;
|
||||
//
|
||||
// table2
|
||||
//
|
||||
this.table2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.table2.Name = "table2";
|
||||
this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow2});
|
||||
this.table2.SizeF = new System.Drawing.SizeF(777F, 23F);
|
||||
//
|
||||
// tableRow2
|
||||
//
|
||||
this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell2});
|
||||
this.tableRow2.Name = "tableRow2";
|
||||
this.tableRow2.Weight = 1D;
|
||||
//
|
||||
// tableCell2
|
||||
//
|
||||
this.tableCell2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label2,
|
||||
this.label3,
|
||||
this.label4,
|
||||
this.label9});
|
||||
this.tableCell2.Name = "tableCell2";
|
||||
this.tableCell2.Text = "tableCell2";
|
||||
this.tableCell2.Weight = 3D;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "VAT.ShortName")});
|
||||
this.label2.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(120F, 0F);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label2.StylePriority.UseFont = false;
|
||||
this.label2.StylePriority.UseTextAlignment = false;
|
||||
this.label2.Text = "label2";
|
||||
this.label2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ÁFA_alapösszeg", "{0:#,###0}")});
|
||||
this.label3.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label3.LocationFloat = new DevExpress.Utils.PointFloat(250F, 0F);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label3.SizeF = new System.Drawing.SizeF(107.2917F, 23F);
|
||||
this.label3.StylePriority.UseFont = false;
|
||||
this.label3.StylePriority.UseTextAlignment = false;
|
||||
this.label3.Text = "label3";
|
||||
this.label3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Áfa_összeg", "{0:#,###0}")});
|
||||
this.label4.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(375F, 0F);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label4.SizeF = new System.Drawing.SizeF(107.2917F, 23F);
|
||||
this.label4.StylePriority.UseFont = false;
|
||||
this.label4.StylePriority.UseTextAlignment = false;
|
||||
this.label4.Text = "label4";
|
||||
this.label4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label9
|
||||
//
|
||||
this.label9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Bruttó_összeg", "{0:#,###0}")});
|
||||
this.label9.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label9.LocationFloat = new DevExpress.Utils.PointFloat(530F, 0F);
|
||||
this.label9.Name = "label9";
|
||||
this.label9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label9.SizeF = new System.Drawing.SizeF(107.2917F, 23F);
|
||||
this.label9.StylePriority.UseFont = false;
|
||||
this.label9.StylePriority.UseTextAlignment = false;
|
||||
this.label9.Text = "label9";
|
||||
this.label9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// table1
|
||||
//
|
||||
this.table1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.table1.Name = "table1";
|
||||
this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow1});
|
||||
this.table1.SizeF = new System.Drawing.SizeF(777F, 30F);
|
||||
//
|
||||
// tableRow1
|
||||
//
|
||||
this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell1});
|
||||
this.tableRow1.Name = "tableRow1";
|
||||
this.tableRow1.Weight = 1D;
|
||||
//
|
||||
// tableCell1
|
||||
//
|
||||
this.tableCell1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label5,
|
||||
this.label6,
|
||||
this.label7,
|
||||
this.label8});
|
||||
this.tableCell1.Name = "tableCell1";
|
||||
this.tableCell1.Text = "tableCell1";
|
||||
this.tableCell1.Weight = 3D;
|
||||
//
|
||||
// label5
|
||||
//
|
||||
this.label5.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(120F, 0F);
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label5.SizeF = new System.Drawing.SizeF(46.875F, 30F);
|
||||
this.label5.StylePriority.UseFont = false;
|
||||
this.label5.StylePriority.UseTextAlignment = false;
|
||||
this.label5.Text = "VAT % ÁFA %";
|
||||
this.label5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(250F, 0F);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label6.SizeF = new System.Drawing.SizeF(120F, 30F);
|
||||
this.label6.StylePriority.UseFont = false;
|
||||
this.label6.StylePriority.UseTextAlignment = false;
|
||||
this.label6.Text = "VAT basis amount ÁFA alapösszeg";
|
||||
this.label6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label7
|
||||
//
|
||||
this.label7.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label7.LocationFloat = new DevExpress.Utils.PointFloat(400F, 0F);
|
||||
this.label7.Name = "label7";
|
||||
this.label7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label7.SizeF = new System.Drawing.SizeF(90F, 30F);
|
||||
this.label7.StylePriority.UseFont = false;
|
||||
this.label7.StylePriority.UseTextAlignment = false;
|
||||
this.label7.Text = "VAT amount ÁFA összeg";
|
||||
this.label7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label8
|
||||
//
|
||||
this.label8.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label8.LocationFloat = new DevExpress.Utils.PointFloat(550F, 0F);
|
||||
this.label8.Name = "label8";
|
||||
this.label8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label8.SizeF = new System.Drawing.SizeF(100F, 30F);
|
||||
this.label8.StylePriority.UseFont = false;
|
||||
this.label8.StylePriority.UseTextAlignment = false;
|
||||
this.label8.Text = "Gross amount Bruttó összeg";
|
||||
this.label8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// line2
|
||||
//
|
||||
this.line2.LocationFloat = new DevExpress.Utils.PointFloat(148.9582F, 0F);
|
||||
this.line2.Name = "line2";
|
||||
this.line2.SizeF = new System.Drawing.SizeF(550.0417F, 6.333365F);
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(120F, 10.50002F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label1.StylePriority.UseFont = false;
|
||||
this.label1.StylePriority.UseTextAlignment = false;
|
||||
this.label1.Text = "Összesen";
|
||||
this.label1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label10
|
||||
//
|
||||
this.label10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ÁFA_alapösszeg")});
|
||||
this.label10.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label10.LocationFloat = new DevExpress.Utils.PointFloat(223.9584F, 10.50005F);
|
||||
this.label10.Name = "label10";
|
||||
this.label10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label10.SizeF = new System.Drawing.SizeF(133.3333F, 23F);
|
||||
this.label10.StylePriority.UseFont = false;
|
||||
this.label10.StylePriority.UseTextAlignment = false;
|
||||
summary1.FormatString = "{0:#,###0}";
|
||||
summary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label10.Summary = summary1;
|
||||
this.label10.Text = "label10";
|
||||
this.label10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label11
|
||||
//
|
||||
this.label11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Áfa_összeg")});
|
||||
this.label11.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label11.LocationFloat = new DevExpress.Utils.PointFloat(357.2917F, 10.50005F);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label11.SizeF = new System.Drawing.SizeF(120F, 23F);
|
||||
this.label11.StylePriority.UseFont = false;
|
||||
this.label11.StylePriority.UseTextAlignment = false;
|
||||
summary2.FormatString = "{0:#,###0}";
|
||||
summary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label11.Summary = summary2;
|
||||
this.label11.Text = "label11";
|
||||
this.label11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label12
|
||||
//
|
||||
this.label12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Bruttó_összeg")});
|
||||
this.label12.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label12.LocationFloat = new DevExpress.Utils.PointFloat(516.4584F, 10.50005F);
|
||||
this.label12.Name = "label12";
|
||||
this.label12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label12.SizeF = new System.Drawing.SizeF(120.8333F, 23F);
|
||||
this.label12.StylePriority.UseFont = false;
|
||||
this.label12.StylePriority.UseTextAlignment = false;
|
||||
summary3.FormatString = "{0:#,###0}";
|
||||
summary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label12.Summary = summary3;
|
||||
this.label12.Text = "label12";
|
||||
this.label12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// formattingRule1
|
||||
//
|
||||
this.formattingRule1.Name = "formattingRule1";
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.White;
|
||||
this.Title.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.White;
|
||||
this.FieldCaption.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.White;
|
||||
this.PageInfo.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.White;
|
||||
this.DataField.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// ÁFA_alapösszeg
|
||||
//
|
||||
this.ÁFA_alapösszeg.Expression = "Iif( [InvoiceHeader.CurrencyName.ShortName]=\'HUF\',[AmountNettoHUF],[AmountNettoDE" +
|
||||
"V])";
|
||||
this.ÁFA_alapösszeg.Name = "ÁFA_alapösszeg";
|
||||
//
|
||||
// Áfa_összeg
|
||||
//
|
||||
this.Áfa_összeg.Expression = "Iif( [InvoiceHeader.CurrencyName.ShortName]=\'HUF\', iif(isnull([AmountVATHUF]),0,[" +
|
||||
"AmountVATHUF]), iif(isnull([AmountVATDEV]),0,[AmountVATDEV] ))";
|
||||
this.Áfa_összeg.Name = "Áfa_összeg";
|
||||
//
|
||||
// Bruttó_összeg
|
||||
//
|
||||
this.Bruttó_összeg.Expression = "Iif( [InvoiceHeader.CurrencyName.ShortName]=\'HUF\',[AmountBruttoHUF],[AmountBrutto" +
|
||||
"DEV])";
|
||||
this.Bruttó_összeg.Name = "Bruttó_összeg";
|
||||
//
|
||||
// xafReport1
|
||||
//
|
||||
this.BackColor = System.Drawing.Color.Silver;
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.reportHeaderBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.GroupFooter1});
|
||||
this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
|
||||
this.ÁFA_alapösszeg,
|
||||
this.Áfa_összeg,
|
||||
this.Bruttó_összeg});
|
||||
this.DisplayName = "C3C-Banknet Kimenő számla ÁFA";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
|
||||
this.formattingRule1});
|
||||
this.Margins = new System.Drawing.Printing.Margins(25, 25, 0, 0);
|
||||
this.Name = "xafReport1";
|
||||
this.PageColor = System.Drawing.Color.Transparent;
|
||||
this.PageHeight = 1169;
|
||||
this.PageWidth = 827;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "11.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
+501
@@ -0,0 +1,501 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v11.1, Version=11.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v11.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Xpo.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.Xpo.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraReports.v11.1.Extensions\11.1.8.0__b88d1754d700e49a\DevExpress.XtraReports.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraBars.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraBars.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Reports.v11.1.Designer\11.1.8.0__b88d1754d700e49a\DevExpress.Reports.v11.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraCharts.v11.1.Extensions\11.1.8.0__b88d1754d700e49a\DevExpress.XtraCharts.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraPrinting.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraPrinting.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraRichEdit.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraRichEdit.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.RichEdit.v11.1.Core\11.1.8.0__b88d1754d700e49a\DevExpress.RichEdit.v11.1.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraTreeList.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraTreeList.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraNavBar.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraNavBar.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraVerticalGrid.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraVerticalGrid.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.CodeParser.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.CodeParser.v11.1.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class xafReport1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table2;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow2;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label3;
|
||||
private DevExpress.XtraReports.UI.XRLabel label4;
|
||||
private DevExpress.XtraReports.UI.XRLabel label9;
|
||||
private DevExpress.XtraReports.UI.ReportHeaderBand reportHeaderBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table1;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label7;
|
||||
private DevExpress.XtraReports.UI.XRLabel label8;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1;
|
||||
private DevExpress.XtraReports.UI.XRLine line2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label10;
|
||||
private DevExpress.XtraReports.UI.XRLabel label11;
|
||||
private DevExpress.XtraReports.UI.XRLabel label12;
|
||||
private DevExpress.XtraReports.UI.FormattingRule formattingRule1;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public xafReport1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAGAAAAAAAAAFBBRFBBRFAFQIOWxnS43uPx3+CsE1HiAYdpRdUcG3krAAAAYwAAADwAAADJAAAAAAAAAJQAAADGAQAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQwBsAGEAcwBzAE4AYQBtAGUAAAAAAAxGAGkAbAB0AGUAcgAjAAAAIkYAaQBsAHQAZQByAEQAZQBzAGMAcgBpAHAAdABpAG8AbgAlAAAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlAHcAJwAAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQApAAAAFFIAZQBwAG8AcgB0AE4AYQBtAGUAKgAAAAEhU0lTQnVzaW5lc3MuTW9kdWxlLkludm9pY2VWQVRSb3dzAQABAAEAAAEgQzNDLUJhbmtuZXQgS2ltZW7FkSBzesOhbWxhIMOBRkE=";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
DevExpress.XtraReports.UI.XRSummary summary1 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary2 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary3 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.table2 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.table1 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line2 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.formattingRule1 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table2});
|
||||
this.detailBand1.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.detailBand1.HeightF = 23F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
this.detailBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// reportHeaderBand1
|
||||
//
|
||||
this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table1});
|
||||
this.reportHeaderBand1.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.reportHeaderBand1.HeightF = 30F;
|
||||
this.reportHeaderBand1.Name = "reportHeaderBand1";
|
||||
this.reportHeaderBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 0F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 0F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// GroupFooter1
|
||||
//
|
||||
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line2,
|
||||
this.label1,
|
||||
this.label10,
|
||||
this.label11,
|
||||
this.label12});
|
||||
this.GroupFooter1.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.GroupFooter1.HeightF = 33.50005F;
|
||||
this.GroupFooter1.Name = "GroupFooter1";
|
||||
this.GroupFooter1.StylePriority.UseFont = false;
|
||||
this.GroupFooter1.Visible = false;
|
||||
//
|
||||
// table2
|
||||
//
|
||||
this.table2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.table2.Name = "table2";
|
||||
this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow2});
|
||||
this.table2.SizeF = new System.Drawing.SizeF(777F, 23F);
|
||||
//
|
||||
// tableRow2
|
||||
//
|
||||
this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell2});
|
||||
this.tableRow2.Name = "tableRow2";
|
||||
this.tableRow2.Weight = 1D;
|
||||
//
|
||||
// tableCell2
|
||||
//
|
||||
this.tableCell2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label2,
|
||||
this.label3,
|
||||
this.label4,
|
||||
this.label9});
|
||||
this.tableCell2.Name = "tableCell2";
|
||||
this.tableCell2.Text = "tableCell2";
|
||||
this.tableCell2.Weight = 3D;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "VAT.ShortName")});
|
||||
this.label2.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(120F, 0F);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(46.875F, 23F);
|
||||
this.label2.StylePriority.UseFont = false;
|
||||
this.label2.StylePriority.UseTextAlignment = false;
|
||||
this.label2.Text = "label2";
|
||||
this.label2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountNettoHUF", "{0:#,###}")});
|
||||
this.label3.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label3.LocationFloat = new DevExpress.Utils.PointFloat(250F, 0F);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label3.SizeF = new System.Drawing.SizeF(107.2917F, 23F);
|
||||
this.label3.StylePriority.UseFont = false;
|
||||
this.label3.StylePriority.UseTextAlignment = false;
|
||||
this.label3.Text = "label3";
|
||||
this.label3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountVATHUF", "{0:#,###}")});
|
||||
this.label4.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(375F, 0F);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label4.SizeF = new System.Drawing.SizeF(107.2917F, 23F);
|
||||
this.label4.StylePriority.UseFont = false;
|
||||
this.label4.StylePriority.UseTextAlignment = false;
|
||||
this.label4.Text = "label4";
|
||||
this.label4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label9
|
||||
//
|
||||
this.label9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountBruttoHUF", "{0:#,###}")});
|
||||
this.label9.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label9.LocationFloat = new DevExpress.Utils.PointFloat(530F, 0F);
|
||||
this.label9.Name = "label9";
|
||||
this.label9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label9.SizeF = new System.Drawing.SizeF(107.2917F, 23F);
|
||||
this.label9.StylePriority.UseFont = false;
|
||||
this.label9.StylePriority.UseTextAlignment = false;
|
||||
this.label9.Text = "label9";
|
||||
this.label9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// table1
|
||||
//
|
||||
this.table1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.table1.Name = "table1";
|
||||
this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow1});
|
||||
this.table1.SizeF = new System.Drawing.SizeF(777F, 30F);
|
||||
//
|
||||
// tableRow1
|
||||
//
|
||||
this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell1});
|
||||
this.tableRow1.Name = "tableRow1";
|
||||
this.tableRow1.Weight = 1D;
|
||||
//
|
||||
// tableCell1
|
||||
//
|
||||
this.tableCell1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label5,
|
||||
this.label6,
|
||||
this.label7,
|
||||
this.label8});
|
||||
this.tableCell1.Name = "tableCell1";
|
||||
this.tableCell1.Text = "tableCell1";
|
||||
this.tableCell1.Weight = 3D;
|
||||
//
|
||||
// label5
|
||||
//
|
||||
this.label5.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(120F, 0F);
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label5.SizeF = new System.Drawing.SizeF(46.875F, 30F);
|
||||
this.label5.StylePriority.UseFont = false;
|
||||
this.label5.StylePriority.UseTextAlignment = false;
|
||||
this.label5.Text = "VAT % ÁFA %";
|
||||
this.label5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(250F, 0F);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label6.SizeF = new System.Drawing.SizeF(120F, 30F);
|
||||
this.label6.StylePriority.UseFont = false;
|
||||
this.label6.StylePriority.UseTextAlignment = false;
|
||||
this.label6.Text = "VAT basis amount ÁFA alapösszeg";
|
||||
this.label6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label7
|
||||
//
|
||||
this.label7.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label7.LocationFloat = new DevExpress.Utils.PointFloat(400F, 0F);
|
||||
this.label7.Name = "label7";
|
||||
this.label7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label7.SizeF = new System.Drawing.SizeF(90F, 30F);
|
||||
this.label7.StylePriority.UseFont = false;
|
||||
this.label7.StylePriority.UseTextAlignment = false;
|
||||
this.label7.Text = "VAT amount ÁFA összeg";
|
||||
this.label7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label8
|
||||
//
|
||||
this.label8.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label8.LocationFloat = new DevExpress.Utils.PointFloat(550F, 0F);
|
||||
this.label8.Name = "label8";
|
||||
this.label8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label8.SizeF = new System.Drawing.SizeF(100F, 30F);
|
||||
this.label8.StylePriority.UseFont = false;
|
||||
this.label8.StylePriority.UseTextAlignment = false;
|
||||
this.label8.Text = "Gross amount Bruttó összeg";
|
||||
this.label8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// line2
|
||||
//
|
||||
this.line2.LocationFloat = new DevExpress.Utils.PointFloat(148.9582F, 0F);
|
||||
this.line2.Name = "line2";
|
||||
this.line2.SizeF = new System.Drawing.SizeF(550.0417F, 6.333365F);
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(120F, 10.50002F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label1.StylePriority.UseFont = false;
|
||||
this.label1.StylePriority.UseTextAlignment = false;
|
||||
this.label1.Text = "Összesen";
|
||||
this.label1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label10
|
||||
//
|
||||
this.label10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountNettoHUF")});
|
||||
this.label10.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label10.LocationFloat = new DevExpress.Utils.PointFloat(223.9584F, 10.50005F);
|
||||
this.label10.Name = "label10";
|
||||
this.label10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label10.SizeF = new System.Drawing.SizeF(133.3333F, 23F);
|
||||
this.label10.StylePriority.UseFont = false;
|
||||
this.label10.StylePriority.UseTextAlignment = false;
|
||||
summary1.FormatString = "{0:#,##0}";
|
||||
summary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label10.Summary = summary1;
|
||||
this.label10.Text = "label10";
|
||||
this.label10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label11
|
||||
//
|
||||
this.label11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountVATHUF")});
|
||||
this.label11.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label11.LocationFloat = new DevExpress.Utils.PointFloat(357.2917F, 10.50005F);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label11.SizeF = new System.Drawing.SizeF(120F, 23F);
|
||||
this.label11.StylePriority.UseFont = false;
|
||||
this.label11.StylePriority.UseTextAlignment = false;
|
||||
summary2.FormatString = "{0:#,##0}";
|
||||
summary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label11.Summary = summary2;
|
||||
this.label11.Text = "label11";
|
||||
this.label11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label12
|
||||
//
|
||||
this.label12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountBruttoHUF")});
|
||||
this.label12.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label12.LocationFloat = new DevExpress.Utils.PointFloat(516.4584F, 10.50005F);
|
||||
this.label12.Name = "label12";
|
||||
this.label12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label12.SizeF = new System.Drawing.SizeF(120.8333F, 23F);
|
||||
this.label12.StylePriority.UseFont = false;
|
||||
this.label12.StylePriority.UseTextAlignment = false;
|
||||
summary3.FormatString = "{0:#,##0}";
|
||||
summary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label12.Summary = summary3;
|
||||
this.label12.Text = "label12";
|
||||
this.label12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// formattingRule1
|
||||
//
|
||||
this.formattingRule1.Name = "formattingRule1";
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.White;
|
||||
this.Title.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.White;
|
||||
this.FieldCaption.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.White;
|
||||
this.PageInfo.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.White;
|
||||
this.DataField.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// xafReport1
|
||||
//
|
||||
this.BackColor = System.Drawing.Color.Silver;
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.reportHeaderBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.GroupFooter1});
|
||||
this.DisplayName = "C3C-Banknet Kimenő számla ÁFA";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
|
||||
this.formattingRule1});
|
||||
this.Margins = new System.Drawing.Printing.Margins(25, 25, 0, 0);
|
||||
this.Name = "xafReport1";
|
||||
this.PageColor = System.Drawing.Color.Transparent;
|
||||
this.PageHeight = 1169;
|
||||
this.PageWidth = 827;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "11.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,529 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v11.1, Version=11.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v11.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Xpo.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.Xpo.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraReports.v11.1.Extensions\11.1.8.0__b88d1754d700e49a\DevExpress.XtraReports.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraBars.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraBars.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Reports.v11.1.Designer\11.1.8.0__b88d1754d700e49a\DevExpress.Reports.v11.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraCharts.v11.1.Extensions\11.1.8.0__b88d1754d700e49a\DevExpress.XtraCharts.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraPrinting.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraPrinting.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraRichEdit.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraRichEdit.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.RichEdit.v11.1.Core\11.1.8.0__b88d1754d700e49a\DevExpress.RichEdit.v11.1.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraTreeList.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraTreeList.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraNavBar.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraNavBar.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraVerticalGrid.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraVerticalGrid.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.CodeParser.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.CodeParser.v11.1.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class xafReport1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table2;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow2;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label3;
|
||||
private DevExpress.XtraReports.UI.XRLabel label4;
|
||||
private DevExpress.XtraReports.UI.XRLabel label9;
|
||||
private DevExpress.XtraReports.UI.ReportHeaderBand reportHeaderBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table1;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label7;
|
||||
private DevExpress.XtraReports.UI.XRLabel label8;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1;
|
||||
private DevExpress.XtraReports.UI.XRLine line2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label10;
|
||||
private DevExpress.XtraReports.UI.XRLabel label11;
|
||||
private DevExpress.XtraReports.UI.XRLabel label12;
|
||||
private DevExpress.XtraReports.UI.FormattingRule formattingRule1;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private DevExpress.XtraReports.UI.CalculatedField ÁFA_alapösszeg;
|
||||
private DevExpress.XtraReports.UI.CalculatedField Áfa_összeg;
|
||||
private DevExpress.XtraReports.UI.CalculatedField Bruttó_összeg;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public xafReport1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAGAAAAAAAAAFBBRFBBRFAFQIOWxnS43uPx3+CsE1HiAYdpRdUcG3krAAAAYwAAADwAAADJAAAAAAAAAJQAAADGAQAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQwBsAGEAcwBzAE4AYQBtAGUAAAAAAAxGAGkAbAB0AGUAcgAjAAAAIkYAaQBsAHQAZQByAEQAZQBzAGMAcgBpAHAAdABpAG8AbgAlAAAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlAHcAJwAAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQApAAAAFFIAZQBwAG8AcgB0AE4AYQBtAGUAKgAAAAEhU0lTQnVzaW5lc3MuTW9kdWxlLkludm9pY2VWQVRSb3dzAQABAAEAAAEgQzNDLUJhbmtuZXQgS2ltZW7FkSBzesOhbWxhIMOBRkE=";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
DevExpress.XtraReports.UI.XRSummary summary1 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary2 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary3 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.table2 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.table1 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line2 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.formattingRule1 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.ÁFA_alapösszeg = new DevExpress.XtraReports.UI.CalculatedField();
|
||||
this.Áfa_összeg = new DevExpress.XtraReports.UI.CalculatedField();
|
||||
this.Bruttó_összeg = new DevExpress.XtraReports.UI.CalculatedField();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table2});
|
||||
this.detailBand1.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.detailBand1.HeightF = 23F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
this.detailBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// reportHeaderBand1
|
||||
//
|
||||
this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table1});
|
||||
this.reportHeaderBand1.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.reportHeaderBand1.HeightF = 30F;
|
||||
this.reportHeaderBand1.Name = "reportHeaderBand1";
|
||||
this.reportHeaderBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 0F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 0F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// GroupFooter1
|
||||
//
|
||||
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line2,
|
||||
this.label1,
|
||||
this.label10,
|
||||
this.label11,
|
||||
this.label12});
|
||||
this.GroupFooter1.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.GroupFooter1.HeightF = 33.50005F;
|
||||
this.GroupFooter1.Name = "GroupFooter1";
|
||||
this.GroupFooter1.StylePriority.UseFont = false;
|
||||
this.GroupFooter1.Visible = false;
|
||||
//
|
||||
// table2
|
||||
//
|
||||
this.table2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.table2.Name = "table2";
|
||||
this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow2});
|
||||
this.table2.SizeF = new System.Drawing.SizeF(777F, 23F);
|
||||
//
|
||||
// tableRow2
|
||||
//
|
||||
this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell2});
|
||||
this.tableRow2.Name = "tableRow2";
|
||||
this.tableRow2.Weight = 1D;
|
||||
//
|
||||
// tableCell2
|
||||
//
|
||||
this.tableCell2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label2,
|
||||
this.label3,
|
||||
this.label4,
|
||||
this.label9});
|
||||
this.tableCell2.Name = "tableCell2";
|
||||
this.tableCell2.Text = "tableCell2";
|
||||
this.tableCell2.Weight = 3D;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "VAT.ShortName")});
|
||||
this.label2.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(120F, 0F);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(46.875F, 23F);
|
||||
this.label2.StylePriority.UseFont = false;
|
||||
this.label2.StylePriority.UseTextAlignment = false;
|
||||
this.label2.Text = "label2";
|
||||
this.label2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ÁFA_alapösszeg", "{0:#,###0.00}")});
|
||||
this.label3.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label3.LocationFloat = new DevExpress.Utils.PointFloat(250F, 0F);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label3.SizeF = new System.Drawing.SizeF(107.2917F, 23F);
|
||||
this.label3.StylePriority.UseFont = false;
|
||||
this.label3.StylePriority.UseTextAlignment = false;
|
||||
this.label3.Text = "label3";
|
||||
this.label3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Áfa_összeg", "{0:#,###0.00}")});
|
||||
this.label4.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(375F, 0F);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label4.SizeF = new System.Drawing.SizeF(107.2917F, 23F);
|
||||
this.label4.StylePriority.UseFont = false;
|
||||
this.label4.StylePriority.UseTextAlignment = false;
|
||||
this.label4.Text = "label4";
|
||||
this.label4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label9
|
||||
//
|
||||
this.label9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Bruttó_összeg", "{0:#,###0.00}")});
|
||||
this.label9.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label9.LocationFloat = new DevExpress.Utils.PointFloat(530F, 0F);
|
||||
this.label9.Name = "label9";
|
||||
this.label9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label9.SizeF = new System.Drawing.SizeF(107.2917F, 23F);
|
||||
this.label9.StylePriority.UseFont = false;
|
||||
this.label9.StylePriority.UseTextAlignment = false;
|
||||
this.label9.Text = "label9";
|
||||
this.label9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// table1
|
||||
//
|
||||
this.table1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.table1.Name = "table1";
|
||||
this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow1});
|
||||
this.table1.SizeF = new System.Drawing.SizeF(777F, 30F);
|
||||
//
|
||||
// tableRow1
|
||||
//
|
||||
this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell1});
|
||||
this.tableRow1.Name = "tableRow1";
|
||||
this.tableRow1.Weight = 1D;
|
||||
//
|
||||
// tableCell1
|
||||
//
|
||||
this.tableCell1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label5,
|
||||
this.label6,
|
||||
this.label7,
|
||||
this.label8});
|
||||
this.tableCell1.Name = "tableCell1";
|
||||
this.tableCell1.Text = "tableCell1";
|
||||
this.tableCell1.Weight = 3D;
|
||||
//
|
||||
// label5
|
||||
//
|
||||
this.label5.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(120F, 0F);
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label5.SizeF = new System.Drawing.SizeF(46.875F, 30F);
|
||||
this.label5.StylePriority.UseFont = false;
|
||||
this.label5.StylePriority.UseTextAlignment = false;
|
||||
this.label5.Text = "VAT % ÁFA %";
|
||||
this.label5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(250F, 0F);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label6.SizeF = new System.Drawing.SizeF(120F, 30F);
|
||||
this.label6.StylePriority.UseFont = false;
|
||||
this.label6.StylePriority.UseTextAlignment = false;
|
||||
this.label6.Text = "VAT basis amount ÁFA alapösszeg";
|
||||
this.label6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label7
|
||||
//
|
||||
this.label7.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label7.LocationFloat = new DevExpress.Utils.PointFloat(400F, 0F);
|
||||
this.label7.Name = "label7";
|
||||
this.label7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label7.SizeF = new System.Drawing.SizeF(90F, 30F);
|
||||
this.label7.StylePriority.UseFont = false;
|
||||
this.label7.StylePriority.UseTextAlignment = false;
|
||||
this.label7.Text = "VAT amount ÁFA összeg";
|
||||
this.label7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label8
|
||||
//
|
||||
this.label8.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label8.LocationFloat = new DevExpress.Utils.PointFloat(550F, 0F);
|
||||
this.label8.Name = "label8";
|
||||
this.label8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label8.SizeF = new System.Drawing.SizeF(100F, 30F);
|
||||
this.label8.StylePriority.UseFont = false;
|
||||
this.label8.StylePriority.UseTextAlignment = false;
|
||||
this.label8.Text = "Gross amount Bruttó összeg";
|
||||
this.label8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// line2
|
||||
//
|
||||
this.line2.LocationFloat = new DevExpress.Utils.PointFloat(148.9582F, 0F);
|
||||
this.line2.Name = "line2";
|
||||
this.line2.SizeF = new System.Drawing.SizeF(550.0417F, 6.333365F);
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(120F, 10.50002F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label1.StylePriority.UseFont = false;
|
||||
this.label1.StylePriority.UseTextAlignment = false;
|
||||
this.label1.Text = "Összesen";
|
||||
this.label1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label10
|
||||
//
|
||||
this.label10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ÁFA_alapösszeg")});
|
||||
this.label10.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label10.LocationFloat = new DevExpress.Utils.PointFloat(223.9584F, 10.50005F);
|
||||
this.label10.Name = "label10";
|
||||
this.label10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label10.SizeF = new System.Drawing.SizeF(133.3333F, 23F);
|
||||
this.label10.StylePriority.UseFont = false;
|
||||
this.label10.StylePriority.UseTextAlignment = false;
|
||||
summary1.FormatString = "{0:#,###0.00}";
|
||||
summary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label10.Summary = summary1;
|
||||
this.label10.Text = "label10";
|
||||
this.label10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label11
|
||||
//
|
||||
this.label11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Áfa_összeg")});
|
||||
this.label11.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label11.LocationFloat = new DevExpress.Utils.PointFloat(357.2917F, 10.50005F);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label11.SizeF = new System.Drawing.SizeF(120F, 23F);
|
||||
this.label11.StylePriority.UseFont = false;
|
||||
this.label11.StylePriority.UseTextAlignment = false;
|
||||
summary2.FormatString = "{0:#,###0.00}";
|
||||
summary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label11.Summary = summary2;
|
||||
this.label11.Text = "label11";
|
||||
this.label11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label12
|
||||
//
|
||||
this.label12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Bruttó_összeg")});
|
||||
this.label12.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label12.LocationFloat = new DevExpress.Utils.PointFloat(516.4584F, 10.50005F);
|
||||
this.label12.Name = "label12";
|
||||
this.label12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label12.SizeF = new System.Drawing.SizeF(120.8333F, 23F);
|
||||
this.label12.StylePriority.UseFont = false;
|
||||
this.label12.StylePriority.UseTextAlignment = false;
|
||||
summary3.FormatString = "{0:#,###0.00}";
|
||||
summary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label12.Summary = summary3;
|
||||
this.label12.Text = "label12";
|
||||
this.label12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// formattingRule1
|
||||
//
|
||||
this.formattingRule1.Name = "formattingRule1";
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.White;
|
||||
this.Title.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.White;
|
||||
this.FieldCaption.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.White;
|
||||
this.PageInfo.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.White;
|
||||
this.DataField.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// ÁFA_alapösszeg
|
||||
//
|
||||
this.ÁFA_alapösszeg.Expression = "Iif( [InvoiceHeader.CurrencyName.ShortName]=\'HUF\',[AmountNettoHUF],[AmountNettoDE" +
|
||||
"V])";
|
||||
this.ÁFA_alapösszeg.Name = "ÁFA_alapösszeg";
|
||||
//
|
||||
// Áfa_összeg
|
||||
//
|
||||
this.Áfa_összeg.Expression = "Iif( [InvoiceHeader.CurrencyName.ShortName]=\'HUF\', iif(isnull([AmountVATHUF]),0,[" +
|
||||
"AmountVATHUF]), iif(isnull([AmountVATDEV]),0,[AmountVATDEV] ))";
|
||||
this.Áfa_összeg.Name = "Áfa_összeg";
|
||||
//
|
||||
// Bruttó_összeg
|
||||
//
|
||||
this.Bruttó_összeg.Expression = "Iif( [InvoiceHeader.CurrencyName.ShortName]=\'HUF\',[AmountBruttoHUF],[AmountBrutto" +
|
||||
"DEV])";
|
||||
this.Bruttó_összeg.Name = "Bruttó_összeg";
|
||||
//
|
||||
// xafReport1
|
||||
//
|
||||
this.BackColor = System.Drawing.Color.Silver;
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.reportHeaderBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.GroupFooter1});
|
||||
this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
|
||||
this.ÁFA_alapösszeg,
|
||||
this.Áfa_összeg,
|
||||
this.Bruttó_összeg});
|
||||
this.DisplayName = "C3C-Banknet Kimenő számla ÁFA";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
|
||||
this.formattingRule1});
|
||||
this.Margins = new System.Drawing.Printing.Margins(25, 25, 0, 0);
|
||||
this.Name = "xafReport1";
|
||||
this.PageColor = System.Drawing.Color.Transparent;
|
||||
this.PageHeight = 1169;
|
||||
this.PageWidth = 827;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "11.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
+1830
File diff suppressed because it is too large
Load Diff
+742
@@ -0,0 +1,742 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v11.1, Version=11.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v11.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>en-US</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Xpo.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.Xpo.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraReports.v11.1.Extensions\11.1.8.0__b88d1754d700e49a\DevExpress.XtraReports.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraBars.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraBars.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Reports.v11.1.Designer\11.1.8.0__b88d1754d700e49a\DevExpress.Reports.v11.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraCharts.v11.1.Extensions\11.1.8.0__b88d1754d700e49a\DevExpress.XtraCharts.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraPrinting.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraPrinting.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraRichEdit.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraRichEdit.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.RichEdit.v11.1.Core\11.1.8.0__b88d1754d700e49a\DevExpress.RichEdit.v11.1.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraTreeList.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraTreeList.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraNavBar.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraNavBar.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraVerticalGrid.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraVerticalGrid.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.CodeParser.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.CodeParser.v11.1.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class xafReport1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label4;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label3;
|
||||
private DevExpress.XtraReports.UI.XRLabel label9;
|
||||
private DevExpress.XtraReports.UI.XRLine line5;
|
||||
private DevExpress.XtraReports.UI.XRTable table2;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow2;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell1;
|
||||
private DevExpress.XtraReports.UI.ReportHeaderBand reportHeaderBand1;
|
||||
private DevExpress.XtraReports.UI.XRLine line3;
|
||||
private DevExpress.XtraReports.UI.XRLine line1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label13;
|
||||
private DevExpress.XtraReports.UI.XRLabel label7;
|
||||
private DevExpress.XtraReports.UI.XRLabel label5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label8;
|
||||
private DevExpress.XtraReports.UI.XRTable table1;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell3;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter;
|
||||
private DevExpress.XtraReports.UI.XRLabel label20;
|
||||
private DevExpress.XtraReports.UI.XRLabel label21;
|
||||
private DevExpress.XtraReports.UI.XRLabel label19;
|
||||
private DevExpress.XtraReports.UI.XRLine line4;
|
||||
private DevExpress.XtraReports.UI.XRLabel label18;
|
||||
private DevExpress.XtraReports.UI.XRTable table4;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow4;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell2;
|
||||
private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader1;
|
||||
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label11;
|
||||
private DevExpress.XtraReports.UI.XRLine line7;
|
||||
private DevExpress.XtraReports.UI.XRLabel label12;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label10;
|
||||
private DevExpress.XtraReports.UI.XRTable table3;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow3;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell5;
|
||||
private DevExpress.XtraReports.UI.FormattingRule formattingRule1;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public xafReport1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAGAAAAAAAAAFBBRFBBRFAFQIOWxnS43uPx3+CsE1HiAYdpRdUcG3krAAAAYwAAADwAAADJAAAAAAAAAJQAAADGAQAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQwBsAGEAcwBzAE4AYQBtAGUAAAAAAAxGAGkAbAB0AGUAcgAjAAAAIkYAaQBsAHQAZQByAEQAZQBzAGMAcgBpAHAAdABpAG8AbgAlAAAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlAHcAJwAAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQApAAAAFFIAZQBwAG8AcgB0AE4AYQBtAGUAKgAAAAEhU0lTQnVzaW5lc3MuTW9kdWxlLkludm9pY2VWQVRSb3dzAQABAAEAAAEnQ2lwa2VyIEludGVncsOhdG9yIGtpbWVuxZEgc3rDoW1sYSDDgUZB";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
DevExpress.XtraReports.UI.XRSummary summary1 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary2 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary3 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary4 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary5 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary6 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
|
||||
this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line5 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.table2 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.line3 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.line1 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label13 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.table1 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label20 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label21 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label19 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line4 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label18 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.table4 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line7 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.table3 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.formattingRule1 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table4)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table3)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label4,
|
||||
this.label2,
|
||||
this.label3,
|
||||
this.label9,
|
||||
this.line5,
|
||||
this.table2});
|
||||
this.detailBand1.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.detailBand1.HeightF = 33F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
this.detailBand1.StylePriority.UseFont = false;
|
||||
this.detailBand1.Visible = false;
|
||||
//
|
||||
// reportHeaderBand1
|
||||
//
|
||||
this.reportHeaderBand1.BackColor = System.Drawing.Color.Transparent;
|
||||
this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line3,
|
||||
this.line1,
|
||||
this.label13,
|
||||
this.label7,
|
||||
this.label5,
|
||||
this.label6,
|
||||
this.label8,
|
||||
this.table1});
|
||||
this.reportHeaderBand1.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.reportHeaderBand1.HeightF = 86.00001F;
|
||||
this.reportHeaderBand1.Name = "reportHeaderBand1";
|
||||
this.reportHeaderBand1.StylePriority.UseBackColor = false;
|
||||
this.reportHeaderBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 0F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 1F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// ReportFooter
|
||||
//
|
||||
this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label20,
|
||||
this.label21,
|
||||
this.label19,
|
||||
this.line4,
|
||||
this.label18,
|
||||
this.table4});
|
||||
this.ReportFooter.HeightF = 35.83333F;
|
||||
this.ReportFooter.Name = "ReportFooter";
|
||||
//
|
||||
// GroupHeader1
|
||||
//
|
||||
this.GroupHeader1.Expanded = false;
|
||||
this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("VAT.ShortName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
|
||||
this.GroupHeader1.Name = "GroupHeader1";
|
||||
//
|
||||
// GroupFooter1
|
||||
//
|
||||
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label11,
|
||||
this.line7,
|
||||
this.label12,
|
||||
this.label1,
|
||||
this.label10,
|
||||
this.table3});
|
||||
this.GroupFooter1.HeightF = 33.00002F;
|
||||
this.GroupFooter1.Name = "GroupFooter1";
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountVATHUF", "{0:#,###}")});
|
||||
this.label4.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(537F, 0F);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label4.SizeF = new System.Drawing.SizeF(120F, 23F);
|
||||
this.label4.StylePriority.UseFont = false;
|
||||
this.label4.StylePriority.UseTextAlignment = false;
|
||||
this.label4.Text = "label4";
|
||||
this.label4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "VAT.ShortName")});
|
||||
this.label2.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(297.0001F, 0F);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(119.9999F, 23F);
|
||||
this.label2.StylePriority.UseFont = false;
|
||||
this.label2.StylePriority.UseTextAlignment = false;
|
||||
this.label2.Text = "label2";
|
||||
this.label2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountNettoHUF", "{0:#,###}")});
|
||||
this.label3.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label3.LocationFloat = new DevExpress.Utils.PointFloat(417.0001F, 0F);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label3.SizeF = new System.Drawing.SizeF(120F, 23F);
|
||||
this.label3.StylePriority.UseFont = false;
|
||||
this.label3.StylePriority.UseTextAlignment = false;
|
||||
this.label3.Text = "label3";
|
||||
this.label3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label9
|
||||
//
|
||||
this.label9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountBruttoHUF", "{0:#,###}")});
|
||||
this.label9.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label9.LocationFloat = new DevExpress.Utils.PointFloat(657F, 0F);
|
||||
this.label9.Name = "label9";
|
||||
this.label9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label9.SizeF = new System.Drawing.SizeF(118F, 23F);
|
||||
this.label9.StylePriority.UseFont = false;
|
||||
this.label9.StylePriority.UseTextAlignment = false;
|
||||
this.label9.Text = "label9";
|
||||
this.label9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// line5
|
||||
//
|
||||
this.line5.LocationFloat = new DevExpress.Utils.PointFloat(297F, 22.99999F);
|
||||
this.line5.Name = "line5";
|
||||
this.line5.SizeF = new System.Drawing.SizeF(480F, 10F);
|
||||
//
|
||||
// table2
|
||||
//
|
||||
this.table2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.table2.Name = "table2";
|
||||
this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow2});
|
||||
this.table2.SizeF = new System.Drawing.SizeF(777F, 33F);
|
||||
//
|
||||
// tableRow2
|
||||
//
|
||||
this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell1});
|
||||
this.tableRow2.Name = "tableRow2";
|
||||
this.tableRow2.Weight = 1D;
|
||||
//
|
||||
// tableCell1
|
||||
//
|
||||
this.tableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.tableCell1.Name = "tableCell1";
|
||||
this.tableCell1.StylePriority.UseBorders = false;
|
||||
this.tableCell1.Weight = 3D;
|
||||
//
|
||||
// line3
|
||||
//
|
||||
this.line3.LocationFloat = new DevExpress.Utils.PointFloat(297.0002F, 73.99999F);
|
||||
this.line3.Name = "line3";
|
||||
this.line3.SizeF = new System.Drawing.SizeF(479.9999F, 10F);
|
||||
//
|
||||
// line1
|
||||
//
|
||||
this.line1.LocationFloat = new DevExpress.Utils.PointFloat(297.0001F, 33.00001F);
|
||||
this.line1.Name = "line1";
|
||||
this.line1.SizeF = new System.Drawing.SizeF(479.9999F, 14.99999F);
|
||||
//
|
||||
// label13
|
||||
//
|
||||
this.label13.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label13.LocationFloat = new DevExpress.Utils.PointFloat(297.0001F, 10.00001F);
|
||||
this.label13.Name = "label13";
|
||||
this.label13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label13.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label13.StylePriority.UseFont = false;
|
||||
this.label13.StylePriority.UseTextAlignment = false;
|
||||
this.label13.Text = "Összesítés:";
|
||||
this.label13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label7
|
||||
//
|
||||
this.label7.BackColor = System.Drawing.Color.Transparent;
|
||||
this.label7.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label7.LocationFloat = new DevExpress.Utils.PointFloat(537F, 48F);
|
||||
this.label7.Name = "label7";
|
||||
this.label7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label7.SizeF = new System.Drawing.SizeF(120F, 26F);
|
||||
this.label7.StylePriority.UseBackColor = false;
|
||||
this.label7.StylePriority.UseFont = false;
|
||||
this.label7.StylePriority.UseTextAlignment = false;
|
||||
this.label7.Text = "ÁFA ÖSSZEG";
|
||||
this.label7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label5
|
||||
//
|
||||
this.label5.BackColor = System.Drawing.Color.Transparent;
|
||||
this.label5.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(297.0001F, 48F);
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label5.SizeF = new System.Drawing.SizeF(120F, 26F);
|
||||
this.label5.StylePriority.UseBackColor = false;
|
||||
this.label5.StylePriority.UseFont = false;
|
||||
this.label5.StylePriority.UseTextAlignment = false;
|
||||
this.label5.Text = "ÁFA KULCS";
|
||||
this.label5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.BackColor = System.Drawing.Color.Transparent;
|
||||
this.label6.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(417.0001F, 48F);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label6.SizeF = new System.Drawing.SizeF(120F, 26F);
|
||||
this.label6.StylePriority.UseBackColor = false;
|
||||
this.label6.StylePriority.UseFont = false;
|
||||
this.label6.StylePriority.UseTextAlignment = false;
|
||||
this.label6.Text = "NETTÓ ÖSSZEG";
|
||||
this.label6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label8
|
||||
//
|
||||
this.label8.BackColor = System.Drawing.Color.Transparent;
|
||||
this.label8.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label8.LocationFloat = new DevExpress.Utils.PointFloat(657F, 48F);
|
||||
this.label8.Name = "label8";
|
||||
this.label8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label8.SizeF = new System.Drawing.SizeF(118F, 26F);
|
||||
this.label8.StylePriority.UseBackColor = false;
|
||||
this.label8.StylePriority.UseFont = false;
|
||||
this.label8.StylePriority.UseTextAlignment = false;
|
||||
this.label8.Text = "BRUTTÓ ÖSSZEG";
|
||||
this.label8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// table1
|
||||
//
|
||||
this.table1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.table1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 3.000005F);
|
||||
this.table1.Name = "table1";
|
||||
this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow1});
|
||||
this.table1.SizeF = new System.Drawing.SizeF(777F, 83F);
|
||||
this.table1.StylePriority.UseBorders = false;
|
||||
//
|
||||
// tableRow1
|
||||
//
|
||||
this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell3});
|
||||
this.tableRow1.Name = "tableRow1";
|
||||
this.tableRow1.Weight = 1D;
|
||||
//
|
||||
// tableCell3
|
||||
//
|
||||
this.tableCell3.Name = "tableCell3";
|
||||
this.tableCell3.Weight = 3D;
|
||||
//
|
||||
// label20
|
||||
//
|
||||
this.label20.BackColor = System.Drawing.Color.Transparent;
|
||||
this.label20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountNettoHUF")});
|
||||
this.label20.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label20.LocationFloat = new DevExpress.Utils.PointFloat(417.0001F, 0F);
|
||||
this.label20.Name = "label20";
|
||||
this.label20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label20.SizeF = new System.Drawing.SizeF(120.0001F, 23F);
|
||||
this.label20.StylePriority.UseBackColor = false;
|
||||
this.label20.StylePriority.UseFont = false;
|
||||
this.label20.StylePriority.UseTextAlignment = false;
|
||||
summary1.FormatString = "{0:#,##0}";
|
||||
summary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
|
||||
this.label20.Summary = summary1;
|
||||
this.label20.Text = "label20";
|
||||
this.label20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label21
|
||||
//
|
||||
this.label21.BackColor = System.Drawing.Color.Transparent;
|
||||
this.label21.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label21.LocationFloat = new DevExpress.Utils.PointFloat(297.0001F, 0F);
|
||||
this.label21.Name = "label21";
|
||||
this.label21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label21.SizeF = new System.Drawing.SizeF(120.0001F, 23F);
|
||||
this.label21.StylePriority.UseBackColor = false;
|
||||
this.label21.StylePriority.UseFont = false;
|
||||
this.label21.StylePriority.UseTextAlignment = false;
|
||||
this.label21.Text = "Mindösszesen:";
|
||||
this.label21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label19
|
||||
//
|
||||
this.label19.BackColor = System.Drawing.Color.Transparent;
|
||||
this.label19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountVATHUF")});
|
||||
this.label19.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label19.LocationFloat = new DevExpress.Utils.PointFloat(537F, 0F);
|
||||
this.label19.Name = "label19";
|
||||
this.label19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label19.SizeF = new System.Drawing.SizeF(120F, 23F);
|
||||
this.label19.StylePriority.UseBackColor = false;
|
||||
this.label19.StylePriority.UseFont = false;
|
||||
this.label19.StylePriority.UseTextAlignment = false;
|
||||
summary2.FormatString = "{0:#,##0}";
|
||||
summary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
|
||||
this.label19.Summary = summary2;
|
||||
this.label19.Text = "label19";
|
||||
this.label19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// line4
|
||||
//
|
||||
this.line4.BackColor = System.Drawing.Color.Transparent;
|
||||
this.line4.LocationFloat = new DevExpress.Utils.PointFloat(297.0001F, 23.00002F);
|
||||
this.line4.Name = "line4";
|
||||
this.line4.SizeF = new System.Drawing.SizeF(480F, 10F);
|
||||
this.line4.StylePriority.UseBackColor = false;
|
||||
//
|
||||
// label18
|
||||
//
|
||||
this.label18.BackColor = System.Drawing.Color.Transparent;
|
||||
this.label18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountBruttoHUF")});
|
||||
this.label18.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label18.LocationFloat = new DevExpress.Utils.PointFloat(657F, 0F);
|
||||
this.label18.Name = "label18";
|
||||
this.label18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label18.SizeF = new System.Drawing.SizeF(118F, 23F);
|
||||
this.label18.StylePriority.UseBackColor = false;
|
||||
this.label18.StylePriority.UseFont = false;
|
||||
this.label18.StylePriority.UseTextAlignment = false;
|
||||
summary3.FormatString = "{0:#,##0}";
|
||||
summary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
|
||||
this.label18.Summary = summary3;
|
||||
this.label18.Text = "label18";
|
||||
this.label18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// table4
|
||||
//
|
||||
this.table4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.table4.Name = "table4";
|
||||
this.table4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow4});
|
||||
this.table4.SizeF = new System.Drawing.SizeF(777.0002F, 35.83333F);
|
||||
//
|
||||
// tableRow4
|
||||
//
|
||||
this.tableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell2});
|
||||
this.tableRow4.Name = "tableRow4";
|
||||
this.tableRow4.Weight = 1D;
|
||||
//
|
||||
// tableCell2
|
||||
//
|
||||
this.tableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell2.Name = "tableCell2";
|
||||
this.tableCell2.StylePriority.UseBorders = false;
|
||||
this.tableCell2.Weight = 3D;
|
||||
//
|
||||
// label11
|
||||
//
|
||||
this.label11.BackColor = System.Drawing.Color.Transparent;
|
||||
this.label11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountNettoHUF")});
|
||||
this.label11.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label11.LocationFloat = new DevExpress.Utils.PointFloat(416.9999F, 0F);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label11.SizeF = new System.Drawing.SizeF(120.0001F, 23F);
|
||||
this.label11.StylePriority.UseBackColor = false;
|
||||
this.label11.StylePriority.UseFont = false;
|
||||
this.label11.StylePriority.UseTextAlignment = false;
|
||||
summary4.FormatString = "{0:#,##0}";
|
||||
summary4.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label11.Summary = summary4;
|
||||
this.label11.Text = "label10";
|
||||
this.label11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// line7
|
||||
//
|
||||
this.line7.BackColor = System.Drawing.Color.Transparent;
|
||||
this.line7.LocationFloat = new DevExpress.Utils.PointFloat(296.9999F, 23.00002F);
|
||||
this.line7.Name = "line7";
|
||||
this.line7.SizeF = new System.Drawing.SizeF(480F, 10F);
|
||||
this.line7.StylePriority.UseBackColor = false;
|
||||
//
|
||||
// label12
|
||||
//
|
||||
this.label12.BackColor = System.Drawing.Color.Transparent;
|
||||
this.label12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "VAT.ShortName")});
|
||||
this.label12.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label12.LocationFloat = new DevExpress.Utils.PointFloat(296.9999F, 0F);
|
||||
this.label12.Name = "label12";
|
||||
this.label12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label12.SizeF = new System.Drawing.SizeF(120.0001F, 23F);
|
||||
this.label12.StylePriority.UseBackColor = false;
|
||||
this.label12.StylePriority.UseFont = false;
|
||||
this.label12.StylePriority.UseTextAlignment = false;
|
||||
this.label12.Text = "label1";
|
||||
this.label12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.BackColor = System.Drawing.Color.Transparent;
|
||||
this.label1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountBruttoHUF")});
|
||||
this.label1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(657F, 3.178914E-05F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.SizeF = new System.Drawing.SizeF(118F, 23F);
|
||||
this.label1.StylePriority.UseBackColor = false;
|
||||
this.label1.StylePriority.UseFont = false;
|
||||
this.label1.StylePriority.UseTextAlignment = false;
|
||||
summary5.FormatString = "{0:#,##0}";
|
||||
summary5.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label1.Summary = summary5;
|
||||
this.label1.Text = "label12";
|
||||
this.label1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label10
|
||||
//
|
||||
this.label10.BackColor = System.Drawing.Color.Transparent;
|
||||
this.label10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountVATHUF")});
|
||||
this.label10.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label10.LocationFloat = new DevExpress.Utils.PointFloat(537F, 0F);
|
||||
this.label10.Name = "label10";
|
||||
this.label10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label10.SizeF = new System.Drawing.SizeF(120F, 23F);
|
||||
this.label10.StylePriority.UseBackColor = false;
|
||||
this.label10.StylePriority.UseFont = false;
|
||||
this.label10.StylePriority.UseTextAlignment = false;
|
||||
summary6.FormatString = "{0:#,##0}";
|
||||
summary6.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label10.Summary = summary6;
|
||||
this.label10.Text = "label11";
|
||||
this.label10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// table3
|
||||
//
|
||||
this.table3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 3.178914E-05F);
|
||||
this.table3.Name = "table3";
|
||||
this.table3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow3});
|
||||
this.table3.SizeF = new System.Drawing.SizeF(777.0002F, 32.99999F);
|
||||
//
|
||||
// tableRow3
|
||||
//
|
||||
this.tableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell5});
|
||||
this.tableRow3.Name = "tableRow3";
|
||||
this.tableRow3.Weight = 1D;
|
||||
//
|
||||
// tableCell5
|
||||
//
|
||||
this.tableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.tableCell5.Name = "tableCell5";
|
||||
this.tableCell5.StylePriority.UseBorders = false;
|
||||
this.tableCell5.Weight = 3D;
|
||||
//
|
||||
// formattingRule1
|
||||
//
|
||||
this.formattingRule1.Name = "formattingRule1";
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.White;
|
||||
this.Title.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.White;
|
||||
this.FieldCaption.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.White;
|
||||
this.PageInfo.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.White;
|
||||
this.DataField.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// xafReport1
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.reportHeaderBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.ReportFooter,
|
||||
this.GroupHeader1,
|
||||
this.GroupFooter1});
|
||||
this.DisplayName = "Cipker Integrátor kimenő számla ÁFA";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
|
||||
this.formattingRule1});
|
||||
this.Margins = new System.Drawing.Printing.Margins(25, 25, 0, 1);
|
||||
this.Name = "xafReport1";
|
||||
this.PageColor = System.Drawing.Color.Transparent;
|
||||
this.PageHeight = 1169;
|
||||
this.PageWidth = 827;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "11.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table4)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table3)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,748 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v12.1, Version=12.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v12.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.ExpressApp.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Xpo.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.Xpo.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ComponentModel.DataAnnotations\v4.0_4.0.0.0__31bf3856ad364e35\System.ComponentModel.DataAnnotations.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Internals\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Internals.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Net.Http\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Net.Http.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraReports.v12.1.Extensions\12.1.7.0__b88d1754d700e49a\DevExpress.XtraReports.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Utils.v12.1.UI\12.1.7.0__b88d1754d700e49a\DevExpress.Utils.v12.1.UI.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraBars.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.XtraBars.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraTreeList.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.XtraTreeList.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraRichEdit.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.XtraRichEdit.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.RichEdit.v12.1.Core\12.1.7.0__b88d1754d700e49a\DevExpress.RichEdit.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Office.v12.1.Core\12.1.7.0__b88d1754d700e49a\DevExpress.Office.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraPrinting.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.XtraPrinting.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Reports.v12.1.Designer\12.1.7.0__b88d1754d700e49a\DevExpress.Reports.v12.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraCharts.v12.1.Extensions\12.1.7.0__b88d1754d700e49a\DevExpress.XtraCharts.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraNavBar.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.XtraNavBar.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraVerticalGrid.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.XtraVerticalGrid.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.CodeParser.v12.1\12.1.7.0__b88d1754d700e49a\DevExpress.CodeParser.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Client\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Client.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Design\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Entity\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Entity.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Channels\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Channels.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class xafReport1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label4;
|
||||
private DevExpress.XtraReports.UI.XRLabel label3;
|
||||
private DevExpress.XtraReports.UI.XRLine line1;
|
||||
private DevExpress.XtraReports.UI.PageFooterBand pageFooterBand1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label7;
|
||||
private DevExpress.XtraReports.UI.XRLabel label10;
|
||||
private DevExpress.XtraReports.UI.XRLine line3;
|
||||
private DevExpress.XtraReports.UI.XRLine line4;
|
||||
private DevExpress.XtraReports.UI.XRPageInfo pageInfo1;
|
||||
private DevExpress.XtraReports.UI.XRPageInfo pageInfo2;
|
||||
private DevExpress.XtraReports.UI.ReportHeaderBand reportHeaderBand1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label12;
|
||||
private DevExpress.XtraReports.UI.XRLabel label11;
|
||||
private DevExpress.XtraReports.UI.XRLabel label13;
|
||||
private DevExpress.XtraReports.UI.XRLabel label14;
|
||||
private DevExpress.XtraReports.UI.XRLabel label15;
|
||||
private DevExpress.XtraReports.UI.XRLabel label16;
|
||||
private DevExpress.XtraReports.UI.XRLabel label17;
|
||||
private DevExpress.XtraReports.UI.XRLabel label19;
|
||||
private DevExpress.XtraReports.UI.XRLabel label20;
|
||||
private DevExpress.XtraReports.UI.XRLabel label21;
|
||||
private DevExpress.XtraReports.UI.XRLabel NameOfCreator;
|
||||
private DevExpress.XtraReports.UI.XRLabel label8;
|
||||
private DevExpress.XtraReports.UI.XRLabel label9;
|
||||
private DevExpress.XtraReports.UI.XRLabel label42;
|
||||
private DevExpress.XtraReports.UI.XRLabel label18;
|
||||
private DevExpress.XtraReports.UI.XRLabel label23;
|
||||
private DevExpress.XtraReports.UI.XRLabel label31;
|
||||
private DevExpress.XtraReports.UI.XRLabel label33;
|
||||
private DevExpress.XtraReports.UI.XRLabel label45;
|
||||
private DevExpress.XtraReports.UI.XRLabel label29;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.XRPictureBox pictureBox1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader1;
|
||||
private DevExpress.XtraReports.UI.XRLine line5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.XRLine line2;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public xafReport1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = "zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJza" +
|
||||
"W9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4O" +
|
||||
"SNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAHAAAAAAAAAFBBRFBBRFAFQIOWS" +
|
||||
"F5ywcZ0uN7j8d/grBNR4gGHaUXVHBt5VgAAAAAAAACOAAAAZwAAAPQAAAArAAAAvwAAAPkBAAAmJAB0A" +
|
||||
"GgAaQBzAC4AUwBjAHIAaQBwAHQAcwBTAG8AdQByAGMAZQAAAAAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQ" +
|
||||
"wBsAGEAcwBzAE4AYQBtAGUABwkAAAxGAGkAbAB0AGUAcgAwCQAAIkYAaQBsAHQAZQByAEQAZQBzAGMAc" +
|
||||
"gBpAHAAdABpAG8AbgAyCQAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlA" +
|
||||
"HcANAkAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQA2CQAAF" +
|
||||
"FIAZQBwAG8AcgB0AE4AYQBtAGUANwkAAAGEElByaXZhdGUgU3ViIGxhYmVsMV9CZWZvcmVQcmludChCe" +
|
||||
"VZhbCBzZW5kZXIgQXMgT2JqZWN0LCBCeVZhbCBlIEFzIFN5c3RlbS5EcmF3aW5nLlByaW50aW5nLlBya" +
|
||||
"W50RXZlbnRBcmdzKQ0KCURpbSBfRml4ZWRBc3NldHNVc2luZ1Jvd3MgQXMgU2lzQnVzaW5lc3MuTW9kd" +
|
||||
"WxlLkZpeGVkQXNzZXRzVXNpbmdSb3dzID0gIFRyeUNhc3QoVHJ5Q2FzdChUcnlDYXN0KFRyeUNhc3QoV" +
|
||||
"HJ5Q2FzdChzZW5kZXIsIERldkV4cHJlc3MuWHRyYVJlcG9ydHMuVUkuWFJMYWJlbCkuUmVwb3J0LCBfI" +
|
||||
"A0KCQlEZXZFeHByZXNzLkV4cHJlc3NBcHAuUmVwb3J0cy5YYWZSZXBvcnQpLkRhdGFTb3VyY2UsIERld" +
|
||||
"kV4cHJlc3MuRXhwcmVzc0FwcC5Qcm94eUNvbGxlY3Rpb24pLk9yaWdpbmFsQ29sbGVjdGlvbiwgXyANC" +
|
||||
"gkJRGV2RXhwcmVzcy5YcG8uWFBDb2xsZWN0aW9uKSgwKSwgU2lzQnVzaW5lc3MuTW9kdWxlLkZpeGVkQ" +
|
||||
"XNzZXRzVXNpbmdSb3dzKQ0KCQ0KCWlmIF9GaXhlZEFzc2V0c1VzaW5nUm93cy5GaXhlZEFzc2V0c1Vza" +
|
||||
"W5nSGVhZGVyLkZpeGVkQXNzZXRzVXNpbmdNb3ZlVHlwZT0wIHRoZW4NCgkJbGFiZWwxLlRleHQ9IkVze" +
|
||||
"mvDtnogdmlzc3phdsOpdGVsIg0KCWVuZCBpZg0KCWlmIF9GaXhlZEFzc2V0c1VzaW5nUm93cy5GaXhlZ" +
|
||||
"EFzc2V0c1VzaW5nSGVhZGVyLkZpeGVkQXNzZXRzVXNpbmdNb3ZlVHlwZT0xIHRoZW4NCgkJbGFiZWwxL" +
|
||||
"lRleHQ9IkVzemvDtnoga2lhZMOhcyINCgllbmQgaWYNCg0KRW5kIFN1Yg0KDQpQcml2YXRlIFN1YiBsY" +
|
||||
"WJlbDExX0JlZm9yZVByaW50KEJ5VmFsIHNlbmRlciBBcyBPYmplY3QsIEJ5VmFsIGUgQXMgU3lzdGVtL" +
|
||||
"kRyYXdpbmcuUHJpbnRpbmcuUHJpbnRFdmVudEFyZ3MpDQoJRGltIF9GaXhlZEFzc2V0c1VzaW5nUm93c" +
|
||||
"yBBcyBTaXNCdXNpbmVzcy5Nb2R1bGUuRml4ZWRBc3NldHNVc2luZ1Jvd3MgPSAgVHJ5Q2FzdChUcnlDY" +
|
||||
"XN0KFRyeUNhc3QoVHJ5Q2FzdChUcnlDYXN0KHNlbmRlciwgRGV2RXhwcmVzcy5YdHJhUmVwb3J0cy5VS" +
|
||||
"S5YUkxhYmVsKS5SZXBvcnQsIF8gDQoJCURldkV4cHJlc3MuRXhwcmVzc0FwcC5SZXBvcnRzLlhhZlJlc" +
|
||||
"G9ydCkuRGF0YVNvdXJjZSwgRGV2RXhwcmVzcy5FeHByZXNzQXBwLlByb3h5Q29sbGVjdGlvbikuT3JpZ" +
|
||||
"2luYWxDb2xsZWN0aW9uLCBfIA0KCQlEZXZFeHByZXNzLlhwby5YUENvbGxlY3Rpb24pKDApLCBTaXNCd" +
|
||||
"XNpbmVzcy5Nb2R1bGUuRml4ZWRBc3NldHNVc2luZ1Jvd3MpDQoJDQoJaWYgX0ZpeGVkQXNzZXRzVXNpb" +
|
||||
"mdSb3dzLkZpeGVkQXNzZXRzVXNpbmdIZWFkZXIuRml4ZWRBc3NldHNVc2luZ1R5cGU9MSBUaGVuDQoJC" +
|
||||
"WxhYmVsMTEuVGV4dD1fRml4ZWRBc3NldHNVc2luZ1Jvd3MuRml4ZWRBc3NldHNVc2luZ0hlYWRlci5IU" +
|
||||
"lBlcnNvbi5GdWxsTmFtZQ0KCQlpZiBfRml4ZWRBc3NldHNVc2luZ1Jvd3MuRml4ZWRBc3NldHNVc2luZ" +
|
||||
"0hlYWRlci5IUlBlcnNvbi5Db250YWN0IGlzbm90IG5vdGhpbmcgVGhlbg0KCQkJaWYgX0ZpeGVkQXNzZ" +
|
||||
"XRzVXNpbmdSb3dzLkZpeGVkQXNzZXRzVXNpbmdIZWFkZXIuSFJQZXJzb24uQ29udGFjdC5DdXN0b21lc" +
|
||||
"nMgaXNub3Qgbm90aGluZyB0aGVuDQoJCQkJbGFiZWwxMi5UZXh0PV9GaXhlZEFzc2V0c1VzaW5nUm93c" +
|
||||
"y5GaXhlZEFzc2V0c1VzaW5nSGVhZGVyLkhSUGVyc29uLkNvbnRhY3QuQ3VzdG9tZXJzLkZ1bGxOYW1lD" +
|
||||
"QoJCQkJbGFiZWwyMS5UZXh0PV9GaXhlZEFzc2V0c1VzaW5nUm93cy5GaXhlZEFzc2V0c1VzaW5nSGVhZ" +
|
||||
"GVyLkhSUGVyc29uLkNvbnRhY3QuQ3VzdG9tZXJzLkFkZHJlc3MxLkZ1bGxBZGRyZXNzDQoNCgkJCWVsc" +
|
||||
"2UNCgkJCQlsYWJlbDEyLlZpc2libGU9RmFsc2UNCgkJCWVuZCBpZg0KCQllbHNlCQ0KCQkJbGFiZWwxM" +
|
||||
"i5WaXNpYmxlPUZhbHNlDQoJCWVuZCBpZg0KDQoJZW5kIGlmDQoJaWYgX0ZpeGVkQXNzZXRzVXNpbmdSb" +
|
||||
"3dzLkZpeGVkQXNzZXRzVXNpbmdIZWFkZXIuRml4ZWRBc3NldHNVc2luZ1R5cGU9MCBUaGVuDQoJCWxhY" +
|
||||
"mVsMTEuVGV4dD1fRml4ZWRBc3NldHNVc2luZ1Jvd3MuRml4ZWRBc3NldHNVc2luZ0hlYWRlci5DdXN0b" +
|
||||
"21lcnMuRnVsbE5hbWUNCgkJbGFiZWwyMS5UZXh0PV9GaXhlZEFzc2V0c1VzaW5nUm93cy5GaXhlZEFzc" +
|
||||
"2V0c1VzaW5nSGVhZGVyLkN1c3RvbWVycy5BZGRyZXNzMS5GdWxsQWRkcmVzcw0KDQoJZW5kIGlmDQoJa" +
|
||||
"WYgX0ZpeGVkQXNzZXRzVXNpbmdSb3dzLkZpeGVkQXNzZXRzVXNpbmdIZWFkZXIuRml4ZWRBc3NldHNVc" +
|
||||
"2luZ1R5cGU9MiBUaGVuDQoJCWxhYmVsMTEuVGV4dD1fRml4ZWRBc3NldHNVc2luZ1Jvd3MuRml4ZWRBc" +
|
||||
"3NldHNVc2luZ0hlYWRlci5Db3N0SG9sZGVyLk5hbWUNCg0KCWVuZCBpZg0KRW5kIFN1Yg0KDQoBJ1NJU" +
|
||||
"0J1c2luZXNzLk1vZHVsZS5GaXhlZEFzc2V0c1VzaW5nUm93cwEAAQABAAABHEVzemvDtnoga2lhZMOhc" +
|
||||
"y92aXNzemF2w6l0ZWw=";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.pageFooterBand1 = new DevExpress.XtraReports.UI.PageFooterBand();
|
||||
this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line1 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line3 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.line4 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.pageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo();
|
||||
this.pageInfo2 = new DevExpress.XtraReports.UI.XRPageInfo();
|
||||
this.label12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label13 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label14 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label15 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label16 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label17 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label19 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label20 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label21 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.NameOfCreator = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label42 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label18 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label23 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label31 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label33 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label45 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label29 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.pictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line5 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line2 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label6,
|
||||
this.label5,
|
||||
this.label4,
|
||||
this.label3,
|
||||
this.line1});
|
||||
this.detailBand1.HeightF = 113.5417F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
//
|
||||
// pageFooterBand1
|
||||
//
|
||||
this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label7,
|
||||
this.label10,
|
||||
this.line3,
|
||||
this.line4,
|
||||
this.pageInfo1,
|
||||
this.pageInfo2});
|
||||
this.pageFooterBand1.HeightF = 107.3495F;
|
||||
this.pageFooterBand1.Name = "pageFooterBand1";
|
||||
//
|
||||
// reportHeaderBand1
|
||||
//
|
||||
this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label12,
|
||||
this.label11,
|
||||
this.label13,
|
||||
this.label14,
|
||||
this.label15,
|
||||
this.label16,
|
||||
this.label17,
|
||||
this.label19,
|
||||
this.label20,
|
||||
this.label21,
|
||||
this.NameOfCreator,
|
||||
this.label8,
|
||||
this.label9,
|
||||
this.label42,
|
||||
this.label18,
|
||||
this.label23,
|
||||
this.label31,
|
||||
this.label33,
|
||||
this.label45,
|
||||
this.label29});
|
||||
this.reportHeaderBand1.HeightF = 140.5F;
|
||||
this.reportHeaderBand1.Name = "reportHeaderBand1";
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.pictureBox1,
|
||||
this.label1});
|
||||
this.topMarginBand1.HeightF = 117.7083F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// GroupHeader1
|
||||
//
|
||||
this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line5,
|
||||
this.label2,
|
||||
this.line2});
|
||||
this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("FixedAssets.FixedAssetsGroup1.ShortName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
|
||||
this.GroupHeader1.HeightF = 21.16669F;
|
||||
this.GroupHeader1.Name = "GroupHeader1";
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(136.0416F, 0F);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label6.SizeF = new System.Drawing.SizeF(131.6667F, 16.74999F);
|
||||
this.label6.StylePriority.UseFont = false;
|
||||
this.label6.Text = "Leírás";
|
||||
//
|
||||
// label5
|
||||
//
|
||||
this.label5.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 0F);
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label5.SizeF = new System.Drawing.SizeF(130.0416F, 16.74999F);
|
||||
this.label5.StylePriority.UseFont = false;
|
||||
this.label5.Text = "Megnevezés";
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FixedAssets.Description")});
|
||||
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(136.0416F, 18.75F);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label4.SizeF = new System.Drawing.SizeF(131.6667F, 16.66667F);
|
||||
this.label4.Text = "label4";
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FixedAssets.ShortName")});
|
||||
this.label3.LocationFloat = new DevExpress.Utils.PointFloat(4.374949F, 18.75F);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label3.SizeF = new System.Drawing.SizeF(131.6667F, 16.66667F);
|
||||
this.label3.Text = "label3";
|
||||
//
|
||||
// line1
|
||||
//
|
||||
this.line1.LocationFloat = new DevExpress.Utils.PointFloat(4.374949F, 16.75002F);
|
||||
this.line1.Name = "line1";
|
||||
this.line1.SizeF = new System.Drawing.SizeF(638F, 2F);
|
||||
//
|
||||
// label7
|
||||
//
|
||||
this.label7.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label7.LocationFloat = new DevExpress.Utils.PointFloat(42.18432F, 51.64115F);
|
||||
this.label7.Name = "label7";
|
||||
this.label7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label7.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label7.StylePriority.UseFont = false;
|
||||
this.label7.StylePriority.UseTextAlignment = false;
|
||||
this.label7.Text = "Átadó";
|
||||
this.label7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// label10
|
||||
//
|
||||
this.label10.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label10.LocationFloat = new DevExpress.Utils.PointFloat(498.4036F, 51.64115F);
|
||||
this.label10.Name = "label10";
|
||||
this.label10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label10.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label10.StylePriority.UseFont = false;
|
||||
this.label10.StylePriority.UseTextAlignment = false;
|
||||
this.label10.Text = "Átvevő";
|
||||
this.label10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// line3
|
||||
//
|
||||
this.line3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 39.58333F);
|
||||
this.line3.Name = "line3";
|
||||
this.line3.SizeF = new System.Drawing.SizeF(201.9231F, 2.006409F);
|
||||
//
|
||||
// line4
|
||||
//
|
||||
this.line4.LocationFloat = new DevExpress.Utils.PointFloat(446.6933F, 39.58333F);
|
||||
this.line4.Name = "line4";
|
||||
this.line4.SizeF = new System.Drawing.SizeF(200.7856F, 2.40382F);
|
||||
//
|
||||
// pageInfo1
|
||||
//
|
||||
this.pageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(1.999919F, 84.3495F);
|
||||
this.pageInfo1.Name = "pageInfo1";
|
||||
this.pageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.pageInfo1.PageInfo = DevExpress.XtraPrinting.PageInfo.DateTime;
|
||||
this.pageInfo1.SizeF = new System.Drawing.SizeF(313F, 23F);
|
||||
this.pageInfo1.StyleName = "PageInfo";
|
||||
//
|
||||
// pageInfo2
|
||||
//
|
||||
this.pageInfo2.Format = "{0}/{1} oldal";
|
||||
this.pageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(326.9999F, 84.3495F);
|
||||
this.pageInfo2.Name = "pageInfo2";
|
||||
this.pageInfo2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.pageInfo2.SizeF = new System.Drawing.SizeF(313F, 23F);
|
||||
this.pageInfo2.StyleName = "PageInfo";
|
||||
this.pageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label12
|
||||
//
|
||||
this.label12.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label12.LocationFloat = new DevExpress.Utils.PointFloat(395.3955F, 19.58335F);
|
||||
this.label12.Name = "label12";
|
||||
this.label12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label12.SizeF = new System.Drawing.SizeF(252.0833F, 17.70833F);
|
||||
this.label12.StylePriority.UseFont = false;
|
||||
this.label12.StylePriority.UseTextAlignment = false;
|
||||
this.label12.Text = "label11";
|
||||
this.label12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label11
|
||||
//
|
||||
this.label11.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label11.LocationFloat = new DevExpress.Utils.PointFloat(395.3955F, 1.875019F);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label11.SizeF = new System.Drawing.SizeF(252.0833F, 17.70833F);
|
||||
this.label11.StylePriority.UseFont = false;
|
||||
this.label11.StylePriority.UseTextAlignment = false;
|
||||
this.label11.Text = "label11";
|
||||
this.label11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label13
|
||||
//
|
||||
this.label13.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label13.LocationFloat = new DevExpress.Utils.PointFloat(303.1039F, 110.2083F);
|
||||
this.label13.Name = "label13";
|
||||
this.label13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label13.SizeF = new System.Drawing.SizeF(108.3333F, 16.74999F);
|
||||
this.label13.StylePriority.UseFont = false;
|
||||
this.label13.Text = "Készítette:";
|
||||
//
|
||||
// label14
|
||||
//
|
||||
this.label14.LocationFloat = new DevExpress.Utils.PointFloat(413.104F, 67.84725F);
|
||||
this.label14.Name = "label14";
|
||||
this.label14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label14.SizeF = new System.Drawing.SizeF(234.3749F, 16.74998F);
|
||||
this.label14.Text = "label29";
|
||||
//
|
||||
// label15
|
||||
//
|
||||
this.label15.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label15.LocationFloat = new DevExpress.Utils.PointFloat(303.1039F, 89.02779F);
|
||||
this.label15.Name = "label15";
|
||||
this.label15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label15.SizeF = new System.Drawing.SizeF(108.3333F, 16.74999F);
|
||||
this.label15.StylePriority.UseFont = false;
|
||||
this.label15.Text = "Bankszámlaszám:";
|
||||
//
|
||||
// label16
|
||||
//
|
||||
this.label16.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label16.LocationFloat = new DevExpress.Utils.PointFloat(303.1039F, 46.66669F);
|
||||
this.label16.Name = "label16";
|
||||
this.label16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label16.SizeF = new System.Drawing.SizeF(108.3333F, 16.74999F);
|
||||
this.label16.StylePriority.UseFont = false;
|
||||
this.label16.Text = "Adószám:";
|
||||
//
|
||||
// label17
|
||||
//
|
||||
this.label17.LocationFloat = new DevExpress.Utils.PointFloat(413.104F, 110.2083F);
|
||||
this.label17.Name = "label17";
|
||||
this.label17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label17.Scripts.OnBeforePrint = "NameOfCreator_BeforePrint";
|
||||
this.label17.SizeF = new System.Drawing.SizeF(234.3748F, 16.74998F);
|
||||
this.label17.Text = "NameOfCreator";
|
||||
//
|
||||
// label19
|
||||
//
|
||||
this.label19.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label19.LocationFloat = new DevExpress.Utils.PointFloat(303.1039F, 67.84725F);
|
||||
this.label19.Name = "label19";
|
||||
this.label19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label19.SizeF = new System.Drawing.SizeF(108.3333F, 16.74999F);
|
||||
this.label19.StylePriority.UseFont = false;
|
||||
this.label19.Text = "Közösségi adószám:";
|
||||
//
|
||||
// label20
|
||||
//
|
||||
this.label20.LocationFloat = new DevExpress.Utils.PointFloat(413.104F, 89.02779F);
|
||||
this.label20.Name = "label20";
|
||||
this.label20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label20.SizeF = new System.Drawing.SizeF(234.3749F, 16.74998F);
|
||||
this.label20.StylePriority.UseTextAlignment = false;
|
||||
this.label20.Text = "label33";
|
||||
this.label20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// label21
|
||||
//
|
||||
this.label21.LocationFloat = new DevExpress.Utils.PointFloat(413.1039F, 46.66669F);
|
||||
this.label21.Name = "label21";
|
||||
this.label21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label21.SizeF = new System.Drawing.SizeF(234.375F, 16.74999F);
|
||||
this.label21.Text = "label42";
|
||||
//
|
||||
// NameOfCreator
|
||||
//
|
||||
this.NameOfCreator.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "UserCreated.FullName")});
|
||||
this.NameOfCreator.LocationFloat = new DevExpress.Utils.PointFloat(114.3751F, 110.2083F);
|
||||
this.NameOfCreator.Name = "NameOfCreator";
|
||||
this.NameOfCreator.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.NameOfCreator.Scripts.OnBeforePrint = "NameOfCreator_BeforePrint";
|
||||
this.NameOfCreator.SizeF = new System.Drawing.SizeF(234.3748F, 16.74998F);
|
||||
this.NameOfCreator.Text = "NameOfCreator";
|
||||
//
|
||||
// label8
|
||||
//
|
||||
this.label8.AutoWidth = true;
|
||||
this.label8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FixedAssetsUsingHeader.CustomersFrom.FullName")});
|
||||
this.label8.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label8.LocationFloat = new DevExpress.Utils.PointFloat(4.374949F, 1.875019F);
|
||||
this.label8.Multiline = true;
|
||||
this.label8.Name = "label8";
|
||||
this.label8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label8.SizeF = new System.Drawing.SizeF(300F, 20F);
|
||||
this.label8.StylePriority.UseFont = false;
|
||||
this.label8.Text = "label8";
|
||||
//
|
||||
// label9
|
||||
//
|
||||
this.label9.AutoWidth = true;
|
||||
this.label9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FixedAssetsUsingHeader.CustomersFrom.Address1.FullAddress")});
|
||||
this.label9.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label9.LocationFloat = new DevExpress.Utils.PointFloat(4.374949F, 21.875F);
|
||||
this.label9.Multiline = true;
|
||||
this.label9.Name = "label9";
|
||||
this.label9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label9.SizeF = new System.Drawing.SizeF(300F, 20F);
|
||||
this.label9.StylePriority.UseFont = false;
|
||||
this.label9.StylePriority.UseTextAlignment = false;
|
||||
this.label9.Text = "label9";
|
||||
this.label9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopJustify;
|
||||
//
|
||||
// label42
|
||||
//
|
||||
this.label42.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FixedAssetsUsingHeader.CustomersFrom.VATNumber")});
|
||||
this.label42.LocationFloat = new DevExpress.Utils.PointFloat(114.3749F, 46.66669F);
|
||||
this.label42.Name = "label42";
|
||||
this.label42.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label42.SizeF = new System.Drawing.SizeF(234.375F, 16.74999F);
|
||||
this.label42.Text = "label42";
|
||||
//
|
||||
// label18
|
||||
//
|
||||
this.label18.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label18.LocationFloat = new DevExpress.Utils.PointFloat(4.374949F, 46.66669F);
|
||||
this.label18.Name = "label18";
|
||||
this.label18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label18.SizeF = new System.Drawing.SizeF(108.3333F, 16.74999F);
|
||||
this.label18.StylePriority.UseFont = false;
|
||||
this.label18.Text = "Adószám:";
|
||||
//
|
||||
// label23
|
||||
//
|
||||
this.label23.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label23.LocationFloat = new DevExpress.Utils.PointFloat(4.374949F, 67.84725F);
|
||||
this.label23.Name = "label23";
|
||||
this.label23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label23.SizeF = new System.Drawing.SizeF(108.3333F, 16.74999F);
|
||||
this.label23.StylePriority.UseFont = false;
|
||||
this.label23.Text = "Közösségi adószám:";
|
||||
//
|
||||
// label31
|
||||
//
|
||||
this.label31.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label31.LocationFloat = new DevExpress.Utils.PointFloat(4.374949F, 89.02779F);
|
||||
this.label31.Name = "label31";
|
||||
this.label31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label31.SizeF = new System.Drawing.SizeF(108.3333F, 16.74999F);
|
||||
this.label31.StylePriority.UseFont = false;
|
||||
this.label31.Text = "Bankszámlaszám:";
|
||||
//
|
||||
// label33
|
||||
//
|
||||
this.label33.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FixedAssetsUsingHeader.CustomersFrom.CustomerBankAccounts.AccountNumber")});
|
||||
this.label33.LocationFloat = new DevExpress.Utils.PointFloat(114.3751F, 89.02779F);
|
||||
this.label33.Name = "label33";
|
||||
this.label33.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label33.SizeF = new System.Drawing.SizeF(234.3749F, 16.74998F);
|
||||
this.label33.StylePriority.UseTextAlignment = false;
|
||||
this.label33.Text = "label33";
|
||||
this.label33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// label45
|
||||
//
|
||||
this.label45.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label45.LocationFloat = new DevExpress.Utils.PointFloat(4.374949F, 110.2083F);
|
||||
this.label45.Name = "label45";
|
||||
this.label45.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label45.SizeF = new System.Drawing.SizeF(108.3333F, 16.74999F);
|
||||
this.label45.StylePriority.UseFont = false;
|
||||
this.label45.Text = "Készítette:";
|
||||
//
|
||||
// label29
|
||||
//
|
||||
this.label29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FixedAssetsUsingHeader.CustomersFrom.VATNumberEU")});
|
||||
this.label29.LocationFloat = new DevExpress.Utils.PointFloat(114.3751F, 67.84725F);
|
||||
this.label29.Name = "label29";
|
||||
this.label29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label29.SizeF = new System.Drawing.SizeF(234.3749F, 16.74998F);
|
||||
this.label29.Text = "label29";
|
||||
//
|
||||
// pictureBox1
|
||||
//
|
||||
this.pictureBox1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Image", null, "FixedAssetsUsingHeader.CustomersFrom.Photo")});
|
||||
this.pictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 20.41667F);
|
||||
this.pictureBox1.Name = "pictureBox1";
|
||||
this.pictureBox1.SizeF = new System.Drawing.SizeF(209.375F, 88.62499F);
|
||||
this.pictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.ForeColor = System.Drawing.Color.Black;
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(48.70834F, 20.41667F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.Scripts.OnBeforePrint = "label1_BeforePrint";
|
||||
this.label1.SizeF = new System.Drawing.SizeF(572.375F, 33F);
|
||||
this.label1.StyleName = "Title";
|
||||
this.label1.StylePriority.UseForeColor = false;
|
||||
this.label1.StylePriority.UseTextAlignment = false;
|
||||
this.label1.Text = "Eszköz kiadás / visszavétel";
|
||||
this.label1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// line5
|
||||
//
|
||||
this.line5.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 19.16669F);
|
||||
this.line5.Name = "line5";
|
||||
this.line5.SizeF = new System.Drawing.SizeF(638F, 2F);
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.BackColor = System.Drawing.Color.Transparent;
|
||||
this.label2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FixedAssets.FixedAssetsGroup1.ShortName")});
|
||||
this.label2.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(4.374949F, 2.499994F);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(639.6251F, 16.66667F);
|
||||
this.label2.StylePriority.UseBackColor = false;
|
||||
this.label2.StylePriority.UseFont = false;
|
||||
this.label2.Text = "label2";
|
||||
//
|
||||
// line2
|
||||
//
|
||||
this.line2.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 0F);
|
||||
this.line2.Name = "line2";
|
||||
this.line2.SizeF = new System.Drawing.SizeF(638F, 2F);
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.Transparent;
|
||||
this.Title.BorderColor = System.Drawing.Color.Black;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
|
||||
this.FieldCaption.BorderColor = System.Drawing.Color.Black;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.Transparent;
|
||||
this.PageInfo.BorderColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.Transparent;
|
||||
this.DataField.BorderColor = System.Drawing.Color.Black;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.Color.Black;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// xafReport1
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.pageFooterBand1,
|
||||
this.reportHeaderBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.GroupHeader1});
|
||||
this.DisplayName = "Eszköz kiadás/visszavétel";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Margins = new System.Drawing.Printing.Margins(100, 100, 118, 100);
|
||||
this.Name = "xafReport1";
|
||||
this.PageHeight = 1100;
|
||||
this.PageWidth = 850;
|
||||
this.ScriptLanguage = DevExpress.XtraReports.ScriptLanguage.VisualBasic;
|
||||
this.ScriptsSource = resources.GetString("$this.ScriptsSource");
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "12.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,755 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v12.1, Version=12.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Users\richard.szenner\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Users\richard.szenner\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\richard.szenner\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\richard.szenner\AppData\Roaming\SIS\Active\DevExpress.Xpo.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Users\richard.szenner\AppData\Roaming\SIS\Active\DevExpress.XtraReports.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\richard.szenner\AppData\Roaming\SIS\Active\DevExpress.Utils.v12.1.UI.dll" />
|
||||
/// <Reference Path="C:\Users\richard.szenner\AppData\Roaming\SIS\Active\DevExpress.XtraBars.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\richard.szenner\AppData\Roaming\SIS\Active\DevExpress.XtraTreeList.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\richard.szenner\AppData\Roaming\SIS\Active\DevExpress.XtraRichEdit.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\richard.szenner\AppData\Roaming\SIS\Active\DevExpress.RichEdit.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\richard.szenner\AppData\Roaming\SIS\Active\DevExpress.Office.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\richard.szenner\AppData\Roaming\SIS\Active\DevExpress.XtraPrinting.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\richard.szenner\AppData\Roaming\SIS\Active\DevExpress.Reports.v12.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Users\richard.szenner\AppData\Roaming\SIS\Active\DevExpress.XtraCharts.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\richard.szenner\AppData\Roaming\SIS\Active\DevExpress.XtraNavBar.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\richard.szenner\AppData\Roaming\SIS\Active\DevExpress.XtraVerticalGrid.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\richard.szenner\AppData\Roaming\SIS\Active\DevExpress.CodeParser.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Client\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Client.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Design\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Entity\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Entity.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class xafReport1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label4;
|
||||
private DevExpress.XtraReports.UI.XRLabel label3;
|
||||
private DevExpress.XtraReports.UI.XRLine line1;
|
||||
private DevExpress.XtraReports.UI.PageFooterBand pageFooterBand1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label7;
|
||||
private DevExpress.XtraReports.UI.XRLabel label10;
|
||||
private DevExpress.XtraReports.UI.XRLine line3;
|
||||
private DevExpress.XtraReports.UI.XRLine line4;
|
||||
private DevExpress.XtraReports.UI.XRPageInfo pageInfo1;
|
||||
private DevExpress.XtraReports.UI.XRPageInfo pageInfo2;
|
||||
private DevExpress.XtraReports.UI.ReportHeaderBand reportHeaderBand1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label12;
|
||||
private DevExpress.XtraReports.UI.XRLabel label11;
|
||||
private DevExpress.XtraReports.UI.XRLabel label13;
|
||||
private DevExpress.XtraReports.UI.XRLabel label14;
|
||||
private DevExpress.XtraReports.UI.XRLabel label15;
|
||||
private DevExpress.XtraReports.UI.XRLabel label16;
|
||||
private DevExpress.XtraReports.UI.XRLabel label17;
|
||||
private DevExpress.XtraReports.UI.XRLabel label19;
|
||||
private DevExpress.XtraReports.UI.XRLabel label20;
|
||||
private DevExpress.XtraReports.UI.XRLabel label21;
|
||||
private DevExpress.XtraReports.UI.XRLabel NameOfCreator;
|
||||
private DevExpress.XtraReports.UI.XRLabel label8;
|
||||
private DevExpress.XtraReports.UI.XRLabel label9;
|
||||
private DevExpress.XtraReports.UI.XRLabel label42;
|
||||
private DevExpress.XtraReports.UI.XRLabel label18;
|
||||
private DevExpress.XtraReports.UI.XRLabel label23;
|
||||
private DevExpress.XtraReports.UI.XRLabel label31;
|
||||
private DevExpress.XtraReports.UI.XRLabel label33;
|
||||
private DevExpress.XtraReports.UI.XRLabel label45;
|
||||
private DevExpress.XtraReports.UI.XRLabel label29;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.XRPictureBox pictureBox1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader1;
|
||||
private DevExpress.XtraReports.UI.XRLine line5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.XRLine line2;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public xafReport1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = "zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJza" +
|
||||
"W9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4O" +
|
||||
"SNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAHAAAAAAAAAFBBRFBBRFAFQIOWS" +
|
||||
"F5ywcZ0uN7j8d/grBNR4gGHaUXVHBt5VgAAAAAAAACOAAAAZwAAAPQAAAArAAAAvwAAAPkBAAAmJAB0A" +
|
||||
"GgAaQBzAC4AUwBjAHIAaQBwAHQAcwBTAG8AdQByAGMAZQAAAAAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQ" +
|
||||
"wBsAGEAcwBzAE4AYQBtAGUAhAsAAAxGAGkAbAB0AGUAcgCtCwAAIkYAaQBsAHQAZQByAEQAZQBzAGMAc" +
|
||||
"gBpAHAAdABpAG8AbgCvCwAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlA" +
|
||||
"HcAsQsAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQCzCwAAF" +
|
||||
"FIAZQBwAG8AcgB0AE4AYQBtAGUAtAsAAAGBF1ByaXZhdGUgU3ViIGxhYmVsMV9CZWZvcmVQcmludChCe" +
|
||||
"VZhbCBzZW5kZXIgQXMgT2JqZWN0LCBCeVZhbCBlIEFzIFN5c3RlbS5EcmF3aW5nLlByaW50aW5nLlBya" +
|
||||
"W50RXZlbnRBcmdzKQ0KCURpbSBfRml4ZWRBc3NldHNVc2luZ1Jvd3MgQXMgU2lzQnVzaW5lc3MuTW9kd" +
|
||||
"WxlLkZpeGVkQXNzZXRzVXNpbmdSb3dzID0gIFRyeUNhc3QoVHJ5Q2FzdChUcnlDYXN0KFRyeUNhc3QoV" +
|
||||
"HJ5Q2FzdChzZW5kZXIsIERldkV4cHJlc3MuWHRyYVJlcG9ydHMuVUkuWFJMYWJlbCkuUmVwb3J0LCBfI" +
|
||||
"A0KCQlEZXZFeHByZXNzLkV4cHJlc3NBcHAuUmVwb3J0cy5YYWZSZXBvcnQpLkRhdGFTb3VyY2UsIERld" +
|
||||
"kV4cHJlc3MuRXhwcmVzc0FwcC5Qcm94eUNvbGxlY3Rpb24pLk9yaWdpbmFsQ29sbGVjdGlvbiwgXyANC" +
|
||||
"gkJRGV2RXhwcmVzcy5YcG8uWFBDb2xsZWN0aW9uKSgwKSwgU2lzQnVzaW5lc3MuTW9kdWxlLkZpeGVkQ" +
|
||||
"XNzZXRzVXNpbmdSb3dzKQ0KCQ0KCWlmIF9GaXhlZEFzc2V0c1VzaW5nUm93cy5GaXhlZEFzc2V0c1Vza" +
|
||||
"W5nSGVhZGVyLkZpeGVkQXNzZXRzVXNpbmdNb3ZlVHlwZT0wIHRoZW4NCgkJbGFiZWwxLlRleHQ9IkVze" +
|
||||
"mvDtnogdmlzc3phdsOpdGVsIg0KCWVuZCBpZg0KCWlmIF9GaXhlZEFzc2V0c1VzaW5nUm93cy5GaXhlZ" +
|
||||
"EFzc2V0c1VzaW5nSGVhZGVyLkZpeGVkQXNzZXRzVXNpbmdNb3ZlVHlwZT0xIHRoZW4NCgkJbGFiZWwxL" +
|
||||
"lRleHQ9IkVzemvDtnoga2lhZMOhcyINCgllbmQgaWYNCg0KRW5kIFN1Yg0KDQpQcml2YXRlIFN1YiBsY" +
|
||||
"WJlbDExX0JlZm9yZVByaW50KEJ5VmFsIHNlbmRlciBBcyBPYmplY3QsIEJ5VmFsIGUgQXMgU3lzdGVtL" +
|
||||
"kRyYXdpbmcuUHJpbnRpbmcuUHJpbnRFdmVudEFyZ3MpDQoJRGltIF9GaXhlZEFzc2V0c1VzaW5nUm93c" +
|
||||
"yBBcyBTaXNCdXNpbmVzcy5Nb2R1bGUuRml4ZWRBc3NldHNVc2luZ1Jvd3MgPSAgVHJ5Q2FzdChUcnlDY" +
|
||||
"XN0KFRyeUNhc3QoVHJ5Q2FzdChUcnlDYXN0KHNlbmRlciwgRGV2RXhwcmVzcy5YdHJhUmVwb3J0cy5VS" +
|
||||
"S5YUkxhYmVsKS5SZXBvcnQsIF8gDQoJCURldkV4cHJlc3MuRXhwcmVzc0FwcC5SZXBvcnRzLlhhZlJlc" +
|
||||
"G9ydCkuRGF0YVNvdXJjZSwgRGV2RXhwcmVzcy5FeHByZXNzQXBwLlByb3h5Q29sbGVjdGlvbikuT3JpZ" +
|
||||
"2luYWxDb2xsZWN0aW9uLCBfIA0KCQlEZXZFeHByZXNzLlhwby5YUENvbGxlY3Rpb24pKDApLCBTaXNCd" +
|
||||
"XNpbmVzcy5Nb2R1bGUuRml4ZWRBc3NldHNVc2luZ1Jvd3MpDQoJDQoJaWYgX0ZpeGVkQXNzZXRzVXNpb" +
|
||||
"mdSb3dzLkZpeGVkQXNzZXRzVXNpbmdIZWFkZXIuRml4ZWRBc3NldHNVc2luZ1R5cGU9MSBUaGVuDQoJC" +
|
||||
"WxhYmVsMTEuVGV4dD1fRml4ZWRBc3NldHNVc2luZ1Jvd3MuRml4ZWRBc3NldHNVc2luZ0hlYWRlci5IU" +
|
||||
"lBlcnNvbi5GdWxsTmFtZQ0KCQlpZiBfRml4ZWRBc3NldHNVc2luZ1Jvd3MuRml4ZWRBc3NldHNVc2luZ" +
|
||||
"0hlYWRlci5IUlBlcnNvbi5Db250YWN0IGlzbm90IG5vdGhpbmcgVGhlbg0KCQkJaWYgX0ZpeGVkQXNzZ" +
|
||||
"XRzVXNpbmdSb3dzLkZpeGVkQXNzZXRzVXNpbmdIZWFkZXIuSFJQZXJzb24uQ29udGFjdC5DdXN0b21lc" +
|
||||
"nMgaXNub3Qgbm90aGluZyB0aGVuDQoJCQkJbGFiZWwxMi5UZXh0PV9GaXhlZEFzc2V0c1VzaW5nUm93c" +
|
||||
"y5GaXhlZEFzc2V0c1VzaW5nSGVhZGVyLkhSUGVyc29uLkNvbnRhY3QuQ3VzdG9tZXJzLkZ1bGxOYW1lD" +
|
||||
"QoJCQkJbGFiZWwyMS5UZXh0PV9GaXhlZEFzc2V0c1VzaW5nUm93cy5GaXhlZEFzc2V0c1VzaW5nSGVhZ" +
|
||||
"GVyLkhSUGVyc29uLkNvbnRhY3QuQ3VzdG9tZXJzLkFkZHJlc3MxLkZ1bGxBZGRyZXNzDQoNCgkJCWVsc" +
|
||||
"2UNCgkJCQlsYWJlbDEyLlZpc2libGU9RmFsc2UNCgkJCWVuZCBpZg0KCQllbHNlCQ0KCQkJbGFiZWwxM" +
|
||||
"i5WaXNpYmxlPUZhbHNlDQoJCWVuZCBpZg0KCQlsYWJlbDE1LlZpc2libGU9RmFsc2UNCgkJbGFiZWwxM" +
|
||||
"y5WaXNpYmxlPUZhbHNlDQoJCWxhYmVsMTQuVmlzaWJsZT1GYWxzZQ0KCQlsYWJlbDE5LlZpc2libGU9R" +
|
||||
"mFsc2UNCgkJbGFiZWwyMC5WaXNpYmxlPUZhbHNlDQoJCWxhYmVsMTcuVmlzaWJsZT1GYWxzZQ0KCWVuZ" +
|
||||
"CBpZg0KCWlmIF9GaXhlZEFzc2V0c1VzaW5nUm93cy5GaXhlZEFzc2V0c1VzaW5nSGVhZGVyLkZpeGVkQ" +
|
||||
"XNzZXRzVXNpbmdUeXBlPTAgVGhlbg0KCQlsYWJlbDExLlRleHQ9X0ZpeGVkQXNzZXRzVXNpbmdSb3dzL" +
|
||||
"kZpeGVkQXNzZXRzVXNpbmdIZWFkZXIuQ3VzdG9tZXJzLkZ1bGxOYW1lDQoJCWxhYmVsMTIuVGV4dD1fR" +
|
||||
"ml4ZWRBc3NldHNVc2luZ1Jvd3MuRml4ZWRBc3NldHNVc2luZ0hlYWRlci5DdXN0b21lcnMuQWRkcmVzc" +
|
||||
"zEuRnVsbEFkZHJlc3MNCgkJbGFiZWwyMS5UZXh0PV9GaXhlZEFzc2V0c1VzaW5nUm93cy5GaXhlZEFzc" +
|
||||
"2V0c1VzaW5nSGVhZGVyLkN1c3RvbWVycy5WQVROdW1iZXINCgkJbGFiZWwxNC5UZXh0PV9GaXhlZEFzc" +
|
||||
"2V0c1VzaW5nUm93cy5GaXhlZEFzc2V0c1VzaW5nSGVhZGVyLkN1c3RvbWVycy5WQVROdW1iZXJFVQ0KC" +
|
||||
"QlsYWJlbDE1LlZpc2libGU9RmFsc2UNCgkJbGFiZWwxMy5WaXNpYmxlPUZhbHNlDQoJCWxhYmVsMjAuV" +
|
||||
"mlzaWJsZT1GYWxzZQ0KCQlsYWJlbDE3LlZpc2libGU9RmFsc2UNCgllbmQgaWYNCglpZiBfRml4ZWRBc" +
|
||||
"3NldHNVc2luZ1Jvd3MuRml4ZWRBc3NldHNVc2luZ0hlYWRlci5GaXhlZEFzc2V0c1VzaW5nVHlwZT0yI" +
|
||||
"FRoZW4NCgkJbGFiZWwxMS5UZXh0PV9GaXhlZEFzc2V0c1VzaW5nUm93cy5GaXhlZEFzc2V0c1VzaW5nS" +
|
||||
"GVhZGVyLkNvc3RIb2xkZXIuTmFtZQ0KCQlsYWJlbDEyLlZpc2libGU9RmFsc2UNCg0KCQlsYWJlbDE1L" +
|
||||
"lZpc2libGU9RmFsc2UNCgkJbGFiZWwxMy5WaXNpYmxlPUZhbHNlDQoJCWxhYmVsMTYuVmlzaWJsZT1GY" +
|
||||
"WxzZQ0KCQlsYWJlbDE5LlZpc2libGU9RmFsc2UNCg0KCQlsYWJlbDIwLlZpc2libGU9RmFsc2UNCgkJb" +
|
||||
"GFiZWwxNy5WaXNpYmxlPUZhbHNlDQoJCWxhYmVsMjEuVmlzaWJsZT1GYWxzZQ0KCQlsYWJlbDE0LlZpc" +
|
||||
"2libGU9RmFsc2UNCgllbmQgaWYNCkVuZCBTdWINCg0KASdTSVNCdXNpbmVzcy5Nb2R1bGUuRml4ZWRBc" +
|
||||
"3NldHNVc2luZ1Jvd3MBAAEAAQAAARxFc3prw7Z6IGtpYWTDoXMvdmlzc3phdsOpdGVs";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.pageFooterBand1 = new DevExpress.XtraReports.UI.PageFooterBand();
|
||||
this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line1 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line3 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.line4 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.pageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo();
|
||||
this.pageInfo2 = new DevExpress.XtraReports.UI.XRPageInfo();
|
||||
this.label12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label13 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label14 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label15 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label16 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label17 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label19 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label20 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label21 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.NameOfCreator = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label42 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label18 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label23 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label31 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label33 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label45 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label29 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.pictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line5 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line2 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label6,
|
||||
this.label5,
|
||||
this.label4,
|
||||
this.label3,
|
||||
this.line1});
|
||||
this.detailBand1.HeightF = 113.5417F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
//
|
||||
// pageFooterBand1
|
||||
//
|
||||
this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label7,
|
||||
this.label10,
|
||||
this.line3,
|
||||
this.line4,
|
||||
this.pageInfo1,
|
||||
this.pageInfo2});
|
||||
this.pageFooterBand1.HeightF = 107.3495F;
|
||||
this.pageFooterBand1.Name = "pageFooterBand1";
|
||||
//
|
||||
// reportHeaderBand1
|
||||
//
|
||||
this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label12,
|
||||
this.label11,
|
||||
this.label13,
|
||||
this.label14,
|
||||
this.label15,
|
||||
this.label16,
|
||||
this.label17,
|
||||
this.label19,
|
||||
this.label20,
|
||||
this.label21,
|
||||
this.NameOfCreator,
|
||||
this.label8,
|
||||
this.label9,
|
||||
this.label42,
|
||||
this.label18,
|
||||
this.label23,
|
||||
this.label31,
|
||||
this.label33,
|
||||
this.label45,
|
||||
this.label29});
|
||||
this.reportHeaderBand1.HeightF = 140.5F;
|
||||
this.reportHeaderBand1.Name = "reportHeaderBand1";
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.pictureBox1,
|
||||
this.label1});
|
||||
this.topMarginBand1.HeightF = 117.7083F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// GroupHeader1
|
||||
//
|
||||
this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line5,
|
||||
this.label2,
|
||||
this.line2});
|
||||
this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("FixedAssets.FixedAssetsGroup1.ShortName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
|
||||
this.GroupHeader1.HeightF = 21.16669F;
|
||||
this.GroupHeader1.Name = "GroupHeader1";
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(136.0416F, 0F);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label6.SizeF = new System.Drawing.SizeF(131.6667F, 16.74999F);
|
||||
this.label6.StylePriority.UseFont = false;
|
||||
this.label6.Text = "Leírás";
|
||||
//
|
||||
// label5
|
||||
//
|
||||
this.label5.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 0F);
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label5.SizeF = new System.Drawing.SizeF(130.0416F, 16.74999F);
|
||||
this.label5.StylePriority.UseFont = false;
|
||||
this.label5.Text = "Megnevezés";
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FixedAssets.Description")});
|
||||
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(136.0416F, 18.75F);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label4.SizeF = new System.Drawing.SizeF(131.6667F, 16.66667F);
|
||||
this.label4.Text = "label4";
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FixedAssets.ShortName")});
|
||||
this.label3.LocationFloat = new DevExpress.Utils.PointFloat(4.374949F, 18.75F);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label3.SizeF = new System.Drawing.SizeF(131.6667F, 16.66667F);
|
||||
this.label3.Text = "label3";
|
||||
//
|
||||
// line1
|
||||
//
|
||||
this.line1.LocationFloat = new DevExpress.Utils.PointFloat(4.374949F, 16.75002F);
|
||||
this.line1.Name = "line1";
|
||||
this.line1.SizeF = new System.Drawing.SizeF(638F, 2F);
|
||||
//
|
||||
// label7
|
||||
//
|
||||
this.label7.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label7.LocationFloat = new DevExpress.Utils.PointFloat(42.18432F, 51.64115F);
|
||||
this.label7.Name = "label7";
|
||||
this.label7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label7.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label7.StylePriority.UseFont = false;
|
||||
this.label7.StylePriority.UseTextAlignment = false;
|
||||
this.label7.Text = "Átadó";
|
||||
this.label7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// label10
|
||||
//
|
||||
this.label10.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label10.LocationFloat = new DevExpress.Utils.PointFloat(498.4036F, 51.64115F);
|
||||
this.label10.Name = "label10";
|
||||
this.label10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label10.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label10.StylePriority.UseFont = false;
|
||||
this.label10.StylePriority.UseTextAlignment = false;
|
||||
this.label10.Text = "Átvevő";
|
||||
this.label10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// line3
|
||||
//
|
||||
this.line3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 39.58333F);
|
||||
this.line3.Name = "line3";
|
||||
this.line3.SizeF = new System.Drawing.SizeF(201.9231F, 2.006409F);
|
||||
//
|
||||
// line4
|
||||
//
|
||||
this.line4.LocationFloat = new DevExpress.Utils.PointFloat(446.6933F, 39.58333F);
|
||||
this.line4.Name = "line4";
|
||||
this.line4.SizeF = new System.Drawing.SizeF(200.7856F, 2.40382F);
|
||||
//
|
||||
// pageInfo1
|
||||
//
|
||||
this.pageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(1.999919F, 84.3495F);
|
||||
this.pageInfo1.Name = "pageInfo1";
|
||||
this.pageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.pageInfo1.PageInfo = DevExpress.XtraPrinting.PageInfo.DateTime;
|
||||
this.pageInfo1.SizeF = new System.Drawing.SizeF(313F, 23F);
|
||||
this.pageInfo1.StyleName = "PageInfo";
|
||||
//
|
||||
// pageInfo2
|
||||
//
|
||||
this.pageInfo2.Format = "{0}/{1} oldal";
|
||||
this.pageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(326.9999F, 84.3495F);
|
||||
this.pageInfo2.Name = "pageInfo2";
|
||||
this.pageInfo2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.pageInfo2.SizeF = new System.Drawing.SizeF(313F, 23F);
|
||||
this.pageInfo2.StyleName = "PageInfo";
|
||||
this.pageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label12
|
||||
//
|
||||
this.label12.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label12.LocationFloat = new DevExpress.Utils.PointFloat(395.3955F, 19.58335F);
|
||||
this.label12.Name = "label12";
|
||||
this.label12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label12.SizeF = new System.Drawing.SizeF(252.0833F, 17.70833F);
|
||||
this.label12.StylePriority.UseFont = false;
|
||||
this.label12.StylePriority.UseTextAlignment = false;
|
||||
this.label12.Text = "label11";
|
||||
this.label12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label11
|
||||
//
|
||||
this.label11.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label11.LocationFloat = new DevExpress.Utils.PointFloat(395.3955F, 1.875019F);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label11.SizeF = new System.Drawing.SizeF(252.0833F, 17.70833F);
|
||||
this.label11.StylePriority.UseFont = false;
|
||||
this.label11.StylePriority.UseTextAlignment = false;
|
||||
this.label11.Text = "label11";
|
||||
this.label11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label13
|
||||
//
|
||||
this.label13.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label13.LocationFloat = new DevExpress.Utils.PointFloat(303.1039F, 110.2083F);
|
||||
this.label13.Name = "label13";
|
||||
this.label13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label13.SizeF = new System.Drawing.SizeF(108.3333F, 16.74999F);
|
||||
this.label13.StylePriority.UseFont = false;
|
||||
this.label13.Text = "Készítette:";
|
||||
//
|
||||
// label14
|
||||
//
|
||||
this.label14.LocationFloat = new DevExpress.Utils.PointFloat(413.104F, 67.84725F);
|
||||
this.label14.Name = "label14";
|
||||
this.label14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label14.SizeF = new System.Drawing.SizeF(234.3749F, 16.74998F);
|
||||
this.label14.Text = "label29";
|
||||
//
|
||||
// label15
|
||||
//
|
||||
this.label15.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label15.LocationFloat = new DevExpress.Utils.PointFloat(303.1039F, 89.02779F);
|
||||
this.label15.Name = "label15";
|
||||
this.label15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label15.SizeF = new System.Drawing.SizeF(108.3333F, 16.74999F);
|
||||
this.label15.StylePriority.UseFont = false;
|
||||
this.label15.Text = "Bankszámlaszám:";
|
||||
//
|
||||
// label16
|
||||
//
|
||||
this.label16.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label16.LocationFloat = new DevExpress.Utils.PointFloat(303.1039F, 46.66669F);
|
||||
this.label16.Name = "label16";
|
||||
this.label16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label16.SizeF = new System.Drawing.SizeF(108.3333F, 16.74999F);
|
||||
this.label16.StylePriority.UseFont = false;
|
||||
this.label16.Text = "Adószám:";
|
||||
//
|
||||
// label17
|
||||
//
|
||||
this.label17.LocationFloat = new DevExpress.Utils.PointFloat(413.104F, 110.2083F);
|
||||
this.label17.Name = "label17";
|
||||
this.label17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label17.Scripts.OnBeforePrint = "NameOfCreator_BeforePrint";
|
||||
this.label17.SizeF = new System.Drawing.SizeF(234.3748F, 16.74998F);
|
||||
this.label17.Text = "NameOfCreator";
|
||||
//
|
||||
// label19
|
||||
//
|
||||
this.label19.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label19.LocationFloat = new DevExpress.Utils.PointFloat(303.1039F, 67.84725F);
|
||||
this.label19.Name = "label19";
|
||||
this.label19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label19.SizeF = new System.Drawing.SizeF(108.3333F, 16.74999F);
|
||||
this.label19.StylePriority.UseFont = false;
|
||||
this.label19.Text = "Közösségi adószám:";
|
||||
//
|
||||
// label20
|
||||
//
|
||||
this.label20.LocationFloat = new DevExpress.Utils.PointFloat(413.104F, 89.02779F);
|
||||
this.label20.Name = "label20";
|
||||
this.label20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label20.SizeF = new System.Drawing.SizeF(234.3749F, 16.74998F);
|
||||
this.label20.StylePriority.UseTextAlignment = false;
|
||||
this.label20.Text = "label33";
|
||||
this.label20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// label21
|
||||
//
|
||||
this.label21.LocationFloat = new DevExpress.Utils.PointFloat(413.1039F, 46.66669F);
|
||||
this.label21.Name = "label21";
|
||||
this.label21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label21.SizeF = new System.Drawing.SizeF(234.375F, 16.74999F);
|
||||
this.label21.Text = "label42";
|
||||
//
|
||||
// NameOfCreator
|
||||
//
|
||||
this.NameOfCreator.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "UserCreated.FullName")});
|
||||
this.NameOfCreator.LocationFloat = new DevExpress.Utils.PointFloat(114.3751F, 110.2083F);
|
||||
this.NameOfCreator.Name = "NameOfCreator";
|
||||
this.NameOfCreator.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.NameOfCreator.Scripts.OnBeforePrint = "NameOfCreator_BeforePrint";
|
||||
this.NameOfCreator.SizeF = new System.Drawing.SizeF(234.3748F, 16.74998F);
|
||||
this.NameOfCreator.Text = "NameOfCreator";
|
||||
//
|
||||
// label8
|
||||
//
|
||||
this.label8.AutoWidth = true;
|
||||
this.label8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FixedAssetsUsingHeader.CustomersFrom.FullName")});
|
||||
this.label8.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label8.LocationFloat = new DevExpress.Utils.PointFloat(4.374949F, 1.875019F);
|
||||
this.label8.Multiline = true;
|
||||
this.label8.Name = "label8";
|
||||
this.label8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label8.SizeF = new System.Drawing.SizeF(300F, 20F);
|
||||
this.label8.StylePriority.UseFont = false;
|
||||
this.label8.Text = "label8";
|
||||
//
|
||||
// label9
|
||||
//
|
||||
this.label9.AutoWidth = true;
|
||||
this.label9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FixedAssetsUsingHeader.CustomersFrom.Address1.FullAddress")});
|
||||
this.label9.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label9.LocationFloat = new DevExpress.Utils.PointFloat(4.374949F, 21.875F);
|
||||
this.label9.Multiline = true;
|
||||
this.label9.Name = "label9";
|
||||
this.label9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label9.SizeF = new System.Drawing.SizeF(300F, 20F);
|
||||
this.label9.StylePriority.UseFont = false;
|
||||
this.label9.StylePriority.UseTextAlignment = false;
|
||||
this.label9.Text = "label9";
|
||||
this.label9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopJustify;
|
||||
//
|
||||
// label42
|
||||
//
|
||||
this.label42.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FixedAssetsUsingHeader.CustomersFrom.VATNumber")});
|
||||
this.label42.LocationFloat = new DevExpress.Utils.PointFloat(114.3749F, 46.66669F);
|
||||
this.label42.Name = "label42";
|
||||
this.label42.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label42.SizeF = new System.Drawing.SizeF(234.375F, 16.74999F);
|
||||
this.label42.Text = "label42";
|
||||
//
|
||||
// label18
|
||||
//
|
||||
this.label18.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label18.LocationFloat = new DevExpress.Utils.PointFloat(4.374949F, 46.66669F);
|
||||
this.label18.Name = "label18";
|
||||
this.label18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label18.SizeF = new System.Drawing.SizeF(108.3333F, 16.74999F);
|
||||
this.label18.StylePriority.UseFont = false;
|
||||
this.label18.Text = "Adószám:";
|
||||
//
|
||||
// label23
|
||||
//
|
||||
this.label23.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label23.LocationFloat = new DevExpress.Utils.PointFloat(4.374949F, 67.84725F);
|
||||
this.label23.Name = "label23";
|
||||
this.label23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label23.SizeF = new System.Drawing.SizeF(108.3333F, 16.74999F);
|
||||
this.label23.StylePriority.UseFont = false;
|
||||
this.label23.Text = "Közösségi adószám:";
|
||||
//
|
||||
// label31
|
||||
//
|
||||
this.label31.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label31.LocationFloat = new DevExpress.Utils.PointFloat(4.374949F, 89.02779F);
|
||||
this.label31.Name = "label31";
|
||||
this.label31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label31.SizeF = new System.Drawing.SizeF(108.3333F, 16.74999F);
|
||||
this.label31.StylePriority.UseFont = false;
|
||||
this.label31.Text = "Bankszámlaszám:";
|
||||
//
|
||||
// label33
|
||||
//
|
||||
this.label33.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FixedAssetsUsingHeader.CustomersFrom.CustomerBankAccounts.AccountNumber")});
|
||||
this.label33.LocationFloat = new DevExpress.Utils.PointFloat(114.3751F, 89.02779F);
|
||||
this.label33.Name = "label33";
|
||||
this.label33.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label33.SizeF = new System.Drawing.SizeF(234.3749F, 16.74998F);
|
||||
this.label33.StylePriority.UseTextAlignment = false;
|
||||
this.label33.Text = "label33";
|
||||
this.label33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// label45
|
||||
//
|
||||
this.label45.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label45.LocationFloat = new DevExpress.Utils.PointFloat(4.374949F, 110.2083F);
|
||||
this.label45.Name = "label45";
|
||||
this.label45.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label45.SizeF = new System.Drawing.SizeF(108.3333F, 16.74999F);
|
||||
this.label45.StylePriority.UseFont = false;
|
||||
this.label45.Text = "Készítette:";
|
||||
//
|
||||
// label29
|
||||
//
|
||||
this.label29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FixedAssetsUsingHeader.CustomersFrom.VATNumberEU")});
|
||||
this.label29.LocationFloat = new DevExpress.Utils.PointFloat(114.3751F, 67.84725F);
|
||||
this.label29.Name = "label29";
|
||||
this.label29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label29.SizeF = new System.Drawing.SizeF(234.3749F, 16.74998F);
|
||||
this.label29.Text = "label29";
|
||||
//
|
||||
// pictureBox1
|
||||
//
|
||||
this.pictureBox1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Image", null, "FixedAssetsUsingHeader.CustomersFrom.Photo")});
|
||||
this.pictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 20.41667F);
|
||||
this.pictureBox1.Name = "pictureBox1";
|
||||
this.pictureBox1.SizeF = new System.Drawing.SizeF(209.375F, 88.62499F);
|
||||
this.pictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.ForeColor = System.Drawing.Color.Black;
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(48.70834F, 20.41667F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.Scripts.OnBeforePrint = "label1_BeforePrint";
|
||||
this.label1.SizeF = new System.Drawing.SizeF(572.375F, 33F);
|
||||
this.label1.StyleName = "Title";
|
||||
this.label1.StylePriority.UseForeColor = false;
|
||||
this.label1.StylePriority.UseTextAlignment = false;
|
||||
this.label1.Text = "Eszköz kiadás / visszavétel";
|
||||
this.label1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// line5
|
||||
//
|
||||
this.line5.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 19.16669F);
|
||||
this.line5.Name = "line5";
|
||||
this.line5.SizeF = new System.Drawing.SizeF(638F, 2F);
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.BackColor = System.Drawing.Color.Transparent;
|
||||
this.label2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FixedAssets.FixedAssetsGroup1.ShortName")});
|
||||
this.label2.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(4.374949F, 2.499994F);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(639.6251F, 16.66667F);
|
||||
this.label2.StylePriority.UseBackColor = false;
|
||||
this.label2.StylePriority.UseFont = false;
|
||||
this.label2.Text = "label2";
|
||||
//
|
||||
// line2
|
||||
//
|
||||
this.line2.LocationFloat = new DevExpress.Utils.PointFloat(6.00001F, 0F);
|
||||
this.line2.Name = "line2";
|
||||
this.line2.SizeF = new System.Drawing.SizeF(638F, 2F);
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.Transparent;
|
||||
this.Title.BorderColor = System.Drawing.Color.Black;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
|
||||
this.FieldCaption.BorderColor = System.Drawing.Color.Black;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.Transparent;
|
||||
this.PageInfo.BorderColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.Transparent;
|
||||
this.DataField.BorderColor = System.Drawing.Color.Black;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.Color.Black;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// xafReport1
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.pageFooterBand1,
|
||||
this.reportHeaderBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.GroupHeader1});
|
||||
this.DisplayName = "Eszköz kiadás/visszavétel";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Margins = new System.Drawing.Printing.Margins(100, 100, 118, 100);
|
||||
this.Name = "xafReport1";
|
||||
this.PageHeight = 1100;
|
||||
this.PageWidth = 850;
|
||||
this.ScriptLanguage = DevExpress.XtraReports.ScriptLanguage.VisualBasic;
|
||||
this.ScriptsSource = resources.GetString("$this.ScriptsSource");
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "12.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
+1085
File diff suppressed because it is too large
Load Diff
+559
@@ -0,0 +1,559 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v12.1, Version=12.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Xpo.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraReports.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Utils.v12.1.UI.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraBars.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraTreeList.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraRichEdit.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.RichEdit.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Office.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraPrinting.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Reports.v12.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraCharts.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraNavBar.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraVerticalGrid.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.CodeParser.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Client\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Client.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Design\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Entity\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Entity.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class xafReport1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table1;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow5;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell9;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell10;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell11;
|
||||
private DevExpress.XtraReports.UI.ReportHeaderBand reportHeaderBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table2;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow2;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell19;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow3;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell4;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell5;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell3;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label3;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label4;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private DevExpress.XtraReports.UI.CalculatedField Year_minus_2;
|
||||
private DevExpress.XtraReports.UI.CalculatedField Year_minus_1;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public xafReport1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = "zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJza" +
|
||||
"W9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4O" +
|
||||
"SNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAHAAAAAAAAAFBBRFBBRFAFQIOWS" +
|
||||
"F5ywcZ0uN7j8d/grBNR4gGHaUXVHBt5VgAAAAAAAACOAAAAZwAAAPQAAAArAAAAvwAAAPkBAAAmJAB0A" +
|
||||
"GgAaQBzAC4AUwBjAHIAaQBwAHQAcwBTAG8AdQByAGMAZQAAAAAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQ" +
|
||||
"wBsAGEAcwBzAE4AYQBtAGUApAQAAAxGAGkAbAB0AGUAcgDiBAAAIkYAaQBsAHQAZQByAEQAZQBzAGMAc" +
|
||||
"gBpAHAAdABpAG8AbgDkBAAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlA" +
|
||||
"HcA5gQAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQDoBAAAF" +
|
||||
"FIAZQBwAG8AcgB0AE4AYQBtAGUA6QQAAAGhCQ0KUHJpdmF0ZSBTdWIgdGFibGVDZWxsM19CZWZvcmVQc" +
|
||||
"mludChCeVZhbCBzZW5kZXIgQXMgT2JqZWN0LCBCeVZhbCBlIEFzIFN5c3RlbS5EcmF3aW5nLlByaW50a" +
|
||||
"W5nLlByaW50RXZlbnRBcmdzKQ0KJ3RhYmxlQ2VsbDMuVGV4dA0KDQoNCg0KICdkaW0geWVhciBhcyBkY" +
|
||||
"XRlID0gY3R5cGUoQVBDU2hlZXRIZWFkZXIuT2JqZWN0Q3JlYXRlZCwgRGF0ZSkuWWVhcg0KDQpkaW0gW" +
|
||||
"FJMYWJlbCBhcyBEZXZFeHByZXNzLlh0cmFSZXBvcnRzLlVJLlhSTGFiZWwgPSBUcnlDYXN0KHNlbmRlc" +
|
||||
"iwgRGV2RXhwcmVzcy5YdHJhUmVwb3J0cy5VSS5YUkxhYmVsKQ0KZGltIFhhZlJlcG9ydCBhcyBEZXZFe" +
|
||||
"HByZXNzLkV4cHJlc3NBcHAuUmVwb3J0cy5YYWZSZXBvcnQgPSBUcnlDYXN0KFhSTGFiZWwuUmVwb3J0L" +
|
||||
"CBEZXZFeHByZXNzLkV4cHJlc3NBcHAuUmVwb3J0cy5YYWZSZXBvcnQpDQpkaW0gUHJveHlDb2xsZWN0a" +
|
||||
"W9uIGFzIERldkV4cHJlc3MuRXhwcmVzc0FwcC5Qcm94eUNvbGxlY3Rpb24gPSBUcnlDYXN0KFhhZlJlc" +
|
||||
"G9ydC5EYXRhU291cmNlLCBEZXZFeHByZXNzLkV4cHJlc3NBcHAuUHJveHlDb2xsZWN0aW9uKQ0KZGltI" +
|
||||
"FhQQ29sbGVjdGlvbiBhcyBEZXZFeHByZXNzLlhwby5YUENvbGxlY3Rpb24gPSBUcnlDYXN0KFByb3h5Q" +
|
||||
"29sbGVjdGlvbi5PcmlnaW5hbENvbGxlY3Rpb24sIERldkV4cHJlc3MuWHBvLlhQQ29sbGVjdGlvbikNC" +
|
||||
"kRpbSBBUENTQ0NGUiBBcyBTaXNCdXNpbmVzcy5Nb2R1bGUuQVBDU2hlZXRDcmVkaXRDbGFzc2lmaWNhd" +
|
||||
"GlvbkZpbmFuY2lhbFJvd3M9IFRyeUNhc3QoWFBDb2xsZWN0aW9uKDApLCBTaXNCdXNpbmVzcy5Nb2R1b" +
|
||||
"GUuQVBDU2hlZXRDcmVkaXRDbGFzc2lmaWNhdGlvbkZpbmFuY2lhbFJvd3MpDQoNCmRpbSBBUENTaGVld" +
|
||||
"EhlYWRlciBhcyBTaXNCdXNpbmVzcy5Nb2R1bGUuQVBDU2hlZXRIZWFkZXIgPSB0cnljYXN0KEFQQ1NDQ" +
|
||||
"0ZSLkFQQ1NoZWV0SGVhZGVyLCBTaXNCdXNpbmVzcy5Nb2R1bGUuQVBDU2hlZXRIZWFkZXIpDQpkaW0gW" +
|
||||
"WVhciBhcyBkYXRlID0gY3R5cGUoQVBDU2hlZXRIZWFkZXIuT2JqZWN0Q3JlYXRlZCwgRGF0ZSkNCg0KR" +
|
||||
"W5kIFN1Yg0KDQpQcml2YXRlIFN1YiB0YWJsZUNlbGwyX0JlZm9yZVByaW50KEJ5VmFsIHNlbmRlciBBc" +
|
||||
"yBPYmplY3QsIEJ5VmFsIGUgQXMgU3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuUHJpbnRFdmVudEFyZ3MpD" +
|
||||
"QoNCkVuZCBTdWINCgE8U0lTQnVzaW5lc3MuTW9kdWxlLkFQQ1NoZWV0Q3JlZGl0Q2xhc3NpZmljYXRpb" +
|
||||
"25GaW5hbmNpYWxSb3dzAQABAAEAAAFER2F6ZGFzw6FnaSBhZGF0b2sgYWTDs21pbsWRc8OtdMOpc2hle" +
|
||||
"iAtIHDDqW56w7xneWkgYWRhdG9rIC0gYWxyaXBvcnQ=";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.table1 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.table2 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.Year_minus_2 = new DevExpress.XtraReports.UI.CalculatedField();
|
||||
this.Year_minus_1 = new DevExpress.XtraReports.UI.CalculatedField();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table1});
|
||||
this.detailBand1.HeightF = 24F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
this.detailBand1.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("RowIndex", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
|
||||
//
|
||||
// reportHeaderBand1
|
||||
//
|
||||
this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table2});
|
||||
this.reportHeaderBand1.HeightF = 60F;
|
||||
this.reportHeaderBand1.Name = "reportHeaderBand1";
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 0F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 0F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// table1
|
||||
//
|
||||
this.table1.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.table1.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.table1.LocationFloat = new DevExpress.Utils.PointFloat(12.5F, 0F);
|
||||
this.table1.Name = "table1";
|
||||
this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow5});
|
||||
this.table1.SizeF = new System.Drawing.SizeF(728.9999F, 24F);
|
||||
this.table1.StylePriority.UseBorders = false;
|
||||
this.table1.StylePriority.UseFont = false;
|
||||
//
|
||||
// tableRow5
|
||||
//
|
||||
this.tableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell9,
|
||||
this.tableCell10,
|
||||
this.tableCell1,
|
||||
this.tableCell11});
|
||||
this.tableRow5.Name = "tableRow5";
|
||||
this.tableRow5.Weight = 0.96000036621107721D;
|
||||
//
|
||||
// tableCell9
|
||||
//
|
||||
this.tableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "RowIndex")});
|
||||
this.tableCell9.Name = "tableCell9";
|
||||
this.tableCell9.StylePriority.UseBorders = false;
|
||||
this.tableCell9.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell9.Text = "tableCell9";
|
||||
this.tableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell9.Weight = 0.20130790582197877D;
|
||||
//
|
||||
// tableCell10
|
||||
//
|
||||
this.tableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ShortName")});
|
||||
this.tableCell10.Name = "tableCell10";
|
||||
this.tableCell10.StylePriority.UseBorders = false;
|
||||
this.tableCell10.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell10.Text = "tableCell10";
|
||||
this.tableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.tableCell10.Weight = 1.3930093248589619D;
|
||||
//
|
||||
// tableCell1
|
||||
//
|
||||
this.tableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountHUF2", "{0:#,#}")});
|
||||
this.tableCell1.Name = "tableCell1";
|
||||
this.tableCell1.StylePriority.UseBorders = false;
|
||||
this.tableCell1.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell1.Text = "tableCell1";
|
||||
this.tableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.tableCell1.Weight = 0.70284138465952972D;
|
||||
//
|
||||
// tableCell11
|
||||
//
|
||||
this.tableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountHUF1", "{0:#,#}")});
|
||||
this.tableCell11.Name = "tableCell11";
|
||||
this.tableCell11.StylePriority.UseBorders = false;
|
||||
this.tableCell11.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell11.Text = "tableCell11";
|
||||
this.tableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.tableCell11.Weight = 0.70284138465952972D;
|
||||
//
|
||||
// table2
|
||||
//
|
||||
this.table2.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.table2.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.table2.LocationFloat = new DevExpress.Utils.PointFloat(12.5F, 0F);
|
||||
this.table2.Name = "table2";
|
||||
this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow2,
|
||||
this.tableRow3});
|
||||
this.table2.SizeF = new System.Drawing.SizeF(728.9999F, 60F);
|
||||
this.table2.StylePriority.UseBorders = false;
|
||||
this.table2.StylePriority.UseFont = false;
|
||||
//
|
||||
// tableRow2
|
||||
//
|
||||
this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell19});
|
||||
this.tableRow2.Name = "tableRow2";
|
||||
this.tableRow2.Weight = 1.0000004476285749D;
|
||||
//
|
||||
// tableRow3
|
||||
//
|
||||
this.tableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell4,
|
||||
this.tableCell5,
|
||||
this.tableCell3,
|
||||
this.tableCell2});
|
||||
this.tableRow3.Name = "tableRow3";
|
||||
this.tableRow3.Weight = 1.4000008324769071D;
|
||||
//
|
||||
// tableCell19
|
||||
//
|
||||
this.tableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.tableCell19.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.tableCell19.Name = "tableCell19";
|
||||
this.tableCell19.StylePriority.UseBorders = false;
|
||||
this.tableCell19.StylePriority.UseFont = false;
|
||||
this.tableCell19.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell19.Text = " II.1. Pénzügyi adatok könyvelés alapján:";
|
||||
this.tableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.tableCell19.Weight = 3.0000000000000004D;
|
||||
//
|
||||
// tableCell4
|
||||
//
|
||||
this.tableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell4.Name = "tableCell4";
|
||||
this.tableCell4.StylePriority.UseBorders = false;
|
||||
this.tableCell4.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell4.Text = "Sorszám";
|
||||
this.tableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell4.Weight = 0.20130790582197877D;
|
||||
//
|
||||
// tableCell5
|
||||
//
|
||||
this.tableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell5.Name = "tableCell5";
|
||||
this.tableCell5.StylePriority.UseBorders = false;
|
||||
this.tableCell5.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell5.Text = " Megnevezés";
|
||||
this.tableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.tableCell5.Weight = 1.3930093248589619D;
|
||||
//
|
||||
// tableCell3
|
||||
//
|
||||
this.tableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label1,
|
||||
this.label2,
|
||||
this.label3});
|
||||
this.tableCell3.Multiline = true;
|
||||
this.tableCell3.Name = "tableCell3";
|
||||
this.tableCell3.Scripts.OnBeforePrint = "tableCell3_BeforePrint";
|
||||
this.tableCell3.StylePriority.UseBorders = false;
|
||||
this.tableCell3.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell3.Weight = 0.70284138465952972D;
|
||||
//
|
||||
// tableCell2
|
||||
//
|
||||
this.tableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label6,
|
||||
this.label5,
|
||||
this.label4});
|
||||
this.tableCell2.Multiline = true;
|
||||
this.tableCell2.Name = "tableCell2";
|
||||
this.tableCell2.Scripts.OnBeforePrint = "tableCell2_BeforePrint";
|
||||
this.tableCell2.StylePriority.UseBorders = false;
|
||||
this.tableCell2.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell2.Weight = 0.70284138465952972D;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "APCSheetHeader.EconomyPreviousYear")});
|
||||
this.label1.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(39.9094F, 0F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.SizeF = new System.Drawing.SizeF(57.21069F, 17.5F);
|
||||
this.label1.StylePriority.UseBorders = false;
|
||||
this.label1.StylePriority.UseFont = false;
|
||||
this.label1.StylePriority.UseTextAlignment = false;
|
||||
this.label1.Text = "label1";
|
||||
this.label1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label2.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(97.12009F, 0F);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(22.30396F, 17.5F);
|
||||
this.label2.StylePriority.UseBorders = false;
|
||||
this.label2.StylePriority.UseFont = false;
|
||||
this.label2.StylePriority.UseTextAlignment = false;
|
||||
this.label2.Text = ". év";
|
||||
this.label2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomCenter;
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label3.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label3.LocationFloat = new DevExpress.Utils.PointFloat(56.45351F, 17.5F);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label3.SizeF = new System.Drawing.SizeF(79.51465F, 17.5F);
|
||||
this.label3.StylePriority.UseBorders = false;
|
||||
this.label3.StylePriority.UseFont = false;
|
||||
this.label3.StylePriority.UseTextAlignment = false;
|
||||
this.label3.Text = "(ezer forintban)";
|
||||
this.label3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label6.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(56.3275F, 17.5F);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label6.SizeF = new System.Drawing.SizeF(79.51465F, 17.5F);
|
||||
this.label6.StylePriority.UseBorders = false;
|
||||
this.label6.StylePriority.UseFont = false;
|
||||
this.label6.StylePriority.UseTextAlignment = false;
|
||||
this.label6.Text = "(ezer forintban)";
|
||||
this.label6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// label5
|
||||
//
|
||||
this.label5.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label5.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(96.99409F, 0F);
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label5.SizeF = new System.Drawing.SizeF(22.30396F, 17.5F);
|
||||
this.label5.StylePriority.UseBorders = false;
|
||||
this.label5.StylePriority.UseFont = false;
|
||||
this.label5.StylePriority.UseTextAlignment = false;
|
||||
this.label5.Text = ". év";
|
||||
this.label5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomCenter;
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "APCSheetHeader.EconomyActualYear")});
|
||||
this.label4.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(39.78342F, 0F);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label4.SizeF = new System.Drawing.SizeF(57.21069F, 17.5F);
|
||||
this.label4.StylePriority.UseBorders = false;
|
||||
this.label4.StylePriority.UseFont = false;
|
||||
this.label4.StylePriority.UseTextAlignment = false;
|
||||
this.label4.Text = "label4";
|
||||
this.label4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.Transparent;
|
||||
this.Title.BorderColor = System.Drawing.Color.Black;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
|
||||
this.FieldCaption.BorderColor = System.Drawing.Color.Black;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.Transparent;
|
||||
this.PageInfo.BorderColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.Transparent;
|
||||
this.DataField.BorderColor = System.Drawing.Color.Black;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.Color.Black;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// Year_minus_2
|
||||
//
|
||||
this.Year_minus_2.Expression = "AddYears(now(),-2 )";
|
||||
this.Year_minus_2.Name = "Year_minus_2";
|
||||
//
|
||||
// Year_minus_1
|
||||
//
|
||||
this.Year_minus_1.Expression = "AddYears(now(),-1 )";
|
||||
this.Year_minus_1.Name = "Year_minus_1";
|
||||
//
|
||||
// xafReport1
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.reportHeaderBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1});
|
||||
this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
|
||||
this.Year_minus_2,
|
||||
this.Year_minus_1});
|
||||
this.DisplayName = "Gazdasági adatok adóminősítéshez - pénzügyi adatok - alriport";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Margins = new System.Drawing.Printing.Margins(50, 50, 0, 0);
|
||||
this.Name = "xafReport1";
|
||||
this.PageHeight = 1100;
|
||||
this.PageWidth = 850;
|
||||
this.ScriptLanguage = DevExpress.XtraReports.ScriptLanguage.VisualBasic;
|
||||
this.ScriptsSource = resources.GetString("$this.ScriptsSource");
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "12.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
+521
@@ -0,0 +1,521 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v12.1, Version=12.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Xpo.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraReports.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Utils.v12.1.UI.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraBars.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraTreeList.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraRichEdit.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.RichEdit.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Office.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraPrinting.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Reports.v12.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraCharts.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraNavBar.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraVerticalGrid.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.CodeParser.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Client\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Client.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Design\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Entity\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Entity.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class xafReport1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table1;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow5;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell9;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell10;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell11;
|
||||
private DevExpress.XtraReports.UI.ReportHeaderBand reportHeaderBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table2;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow2;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell19;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow3;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell4;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell5;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell3;
|
||||
private DevExpress.XtraReports.UI.XRLabel label3;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label4;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private DevExpress.XtraReports.UI.CalculatedField Year_Now;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public xafReport1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAGAAAAAAAAAFBBRFBBRFAFQIOWxnS43uPx3+CsE1HiAYdpRdUcG3krAAAAYwAAADwAAADJAAAAAAAAAJQAAADGAQAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQwBsAGEAcwBzAE4AYQBtAGUAAAAAAAxGAGkAbAB0AGUAcgA7AAAAIkYAaQBsAHQAZQByAEQAZQBzAGMAcgBpAHAAdABpAG8AbgA9AAAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlAHcAPwAAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQBBAAAAFFIAZQBwAG8AcgB0AE4AYQBtAGUAQgAAAAE5U0lTQnVzaW5lc3MuTW9kdWxlLkFQQ1NoZWV0Q3JlZGl0Q2xhc3NpZmljYXRpb25BbmltYWxSb3dzAQABAAEAAAFFR2F6ZGFzw6FnaSBhZGF0b2sgYWTDs21pbsWRc8OtdMOpc2hleiAtIMOhbGxhdHRlbnnDqXN6dMOpcyAtIGFscmlwb3J0";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.table1 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.table2 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.Year_Now = new DevExpress.XtraReports.UI.CalculatedField();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table1});
|
||||
this.detailBand1.HeightF = 24F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
this.detailBand1.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("RowIndex", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
|
||||
//
|
||||
// reportHeaderBand1
|
||||
//
|
||||
this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table2});
|
||||
this.reportHeaderBand1.HeightF = 60F;
|
||||
this.reportHeaderBand1.Name = "reportHeaderBand1";
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 0F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 0F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// table1
|
||||
//
|
||||
this.table1.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.table1.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.table1.LocationFloat = new DevExpress.Utils.PointFloat(12.5F, 0F);
|
||||
this.table1.Name = "table1";
|
||||
this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow5});
|
||||
this.table1.SizeF = new System.Drawing.SizeF(728.9999F, 24F);
|
||||
this.table1.StylePriority.UseBorders = false;
|
||||
this.table1.StylePriority.UseFont = false;
|
||||
//
|
||||
// tableRow5
|
||||
//
|
||||
this.tableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell9,
|
||||
this.tableCell10,
|
||||
this.tableCell1,
|
||||
this.tableCell11});
|
||||
this.tableRow5.Name = "tableRow5";
|
||||
this.tableRow5.Weight = 0.96000036621107721D;
|
||||
//
|
||||
// tableCell9
|
||||
//
|
||||
this.tableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "RowIndex")});
|
||||
this.tableCell9.Name = "tableCell9";
|
||||
this.tableCell9.StylePriority.UseBorders = false;
|
||||
this.tableCell9.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell9.Text = "tableCell9";
|
||||
this.tableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell9.Weight = 0.20130790582197877D;
|
||||
//
|
||||
// tableCell10
|
||||
//
|
||||
this.tableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell10.Name = "tableCell10";
|
||||
this.tableCell10.StylePriority.UseBorders = false;
|
||||
this.tableCell10.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell10.Text = "[ShortName]";
|
||||
this.tableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.tableCell10.Weight = 1.3930093248589619D;
|
||||
//
|
||||
// tableCell1
|
||||
//
|
||||
this.tableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "QTT", "{0:#,#}")});
|
||||
this.tableCell1.Name = "tableCell1";
|
||||
this.tableCell1.StylePriority.UseBorders = false;
|
||||
this.tableCell1.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell1.Text = "tableCell1";
|
||||
this.tableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell1.Weight = 0.70284138465952972D;
|
||||
//
|
||||
// tableCell11
|
||||
//
|
||||
this.tableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EstimatedWeight", "{0:#,#}")});
|
||||
this.tableCell11.Name = "tableCell11";
|
||||
this.tableCell11.StylePriority.UseBorders = false;
|
||||
this.tableCell11.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell11.Text = "tableCell11";
|
||||
this.tableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell11.Weight = 0.70284138465952972D;
|
||||
//
|
||||
// table2
|
||||
//
|
||||
this.table2.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.table2.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.table2.LocationFloat = new DevExpress.Utils.PointFloat(12.5F, 0F);
|
||||
this.table2.Name = "table2";
|
||||
this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow2,
|
||||
this.tableRow3});
|
||||
this.table2.SizeF = new System.Drawing.SizeF(728.9999F, 60F);
|
||||
this.table2.StylePriority.UseBorders = false;
|
||||
this.table2.StylePriority.UseFont = false;
|
||||
//
|
||||
// tableRow2
|
||||
//
|
||||
this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell19});
|
||||
this.tableRow2.Name = "tableRow2";
|
||||
this.tableRow2.Weight = 1.0000004476285749D;
|
||||
//
|
||||
// tableRow3
|
||||
//
|
||||
this.tableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell4,
|
||||
this.tableCell5,
|
||||
this.tableCell3,
|
||||
this.tableCell2});
|
||||
this.tableRow3.Name = "tableRow3";
|
||||
this.tableRow3.Weight = 1.4000006866457837D;
|
||||
//
|
||||
// tableCell19
|
||||
//
|
||||
this.tableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.tableCell19.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.tableCell19.Name = "tableCell19";
|
||||
this.tableCell19.StylePriority.UseBorders = false;
|
||||
this.tableCell19.StylePriority.UseFont = false;
|
||||
this.tableCell19.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell19.Text = " II.3. Állattenyésztéshez adatok:";
|
||||
this.tableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.tableCell19.Weight = 3.0000000000000004D;
|
||||
//
|
||||
// tableCell4
|
||||
//
|
||||
this.tableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell4.Name = "tableCell4";
|
||||
this.tableCell4.StylePriority.UseBorders = false;
|
||||
this.tableCell4.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell4.Text = "Sorszám";
|
||||
this.tableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell4.Weight = 0.20130790582197877D;
|
||||
//
|
||||
// tableCell5
|
||||
//
|
||||
this.tableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell5.Name = "tableCell5";
|
||||
this.tableCell5.StylePriority.UseBorders = false;
|
||||
this.tableCell5.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell5.Text = " Állatfajta megnevezése";
|
||||
this.tableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.tableCell5.Weight = 1.3930093248589619D;
|
||||
//
|
||||
// tableCell3
|
||||
//
|
||||
this.tableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label3,
|
||||
this.label2,
|
||||
this.label1});
|
||||
this.tableCell3.Multiline = true;
|
||||
this.tableCell3.Name = "tableCell3";
|
||||
this.tableCell3.StylePriority.UseBorders = false;
|
||||
this.tableCell3.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell3.Weight = 0.70284138465952972D;
|
||||
//
|
||||
// tableCell2
|
||||
//
|
||||
this.tableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label6,
|
||||
this.label5,
|
||||
this.label4});
|
||||
this.tableCell2.Multiline = true;
|
||||
this.tableCell2.Name = "tableCell2";
|
||||
this.tableCell2.StylePriority.UseBorders = false;
|
||||
this.tableCell2.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell2.Weight = 0.70284138465952972D;
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label3.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label3.LocationFloat = new DevExpress.Utils.PointFloat(75.57434F, 0F);
|
||||
this.label3.Multiline = true;
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label3.SizeF = new System.Drawing.SizeF(72.43515F, 17.5F);
|
||||
this.label3.StylePriority.UseBorders = false;
|
||||
this.label3.StylePriority.UseFont = false;
|
||||
this.label3.StylePriority.UseTextAlignment = false;
|
||||
this.label3.Text = "-ben tervezett";
|
||||
this.label3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomCenter;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label2.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(55.08034F, 17.5F);
|
||||
this.label2.Multiline = true;
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(77.34064F, 17.5F);
|
||||
this.label2.StylePriority.UseBorders = false;
|
||||
this.label2.StylePriority.UseFont = false;
|
||||
this.label2.StylePriority.UseTextAlignment = false;
|
||||
this.label2.Text = "állattartás (db)";
|
||||
this.label2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "APCSheetHeader.MaxExpirationDate", "{0:yyyy}")});
|
||||
this.label1.Font = new System.Drawing.Font("Arial Narrow", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(26.616F, 0F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.Scripts.OnBeforePrint = "label1_BeforePrint";
|
||||
this.label1.SizeF = new System.Drawing.SizeF(48.95834F, 17.5F);
|
||||
this.label1.StylePriority.UseBorders = false;
|
||||
this.label1.StylePriority.UseFont = false;
|
||||
this.label1.StylePriority.UseTextAlignment = false;
|
||||
this.label1.Text = "label1";
|
||||
this.label1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomRight;
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label6.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(2.377489F, 17.5F);
|
||||
this.label6.Multiline = true;
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label6.SizeF = new System.Drawing.SizeF(168.4129F, 17.5F);
|
||||
this.label6.StylePriority.UseBorders = false;
|
||||
this.label6.StylePriority.UseFont = false;
|
||||
this.label6.StylePriority.UseTextAlignment = false;
|
||||
this.label6.Text = "súlya az adott állatnak (kg)";
|
||||
this.label6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// label5
|
||||
//
|
||||
this.label5.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label5.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(43.71328F, 0F);
|
||||
this.label5.Multiline = true;
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label5.SizeF = new System.Drawing.SizeF(119.4545F, 17.5F);
|
||||
this.label5.StylePriority.UseBorders = false;
|
||||
this.label5.StylePriority.UseFont = false;
|
||||
this.label5.StylePriority.UseTextAlignment = false;
|
||||
this.label5.Text = "-ben az átlagos becsült";
|
||||
this.label5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomCenter;
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "APCSheetHeader.MaxExpirationDate", "{0:yyyy}")});
|
||||
this.label4.Font = new System.Drawing.Font("Arial Narrow", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(2.377489F, 1.059638E-05F);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label4.SizeF = new System.Drawing.SizeF(41.33582F, 17.5F);
|
||||
this.label4.StylePriority.UseBorders = false;
|
||||
this.label4.StylePriority.UseFont = false;
|
||||
this.label4.StylePriority.UseTextAlignment = false;
|
||||
this.label4.Text = "label4";
|
||||
this.label4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomRight;
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.Transparent;
|
||||
this.Title.BorderColor = System.Drawing.Color.Black;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
|
||||
this.FieldCaption.BorderColor = System.Drawing.Color.Black;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.Transparent;
|
||||
this.PageInfo.BorderColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.Transparent;
|
||||
this.DataField.BorderColor = System.Drawing.Color.Black;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.Color.Black;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// Year_Now
|
||||
//
|
||||
this.Year_Now.Expression = "Now()";
|
||||
this.Year_Now.Name = "Year_Now";
|
||||
//
|
||||
// xafReport1
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.reportHeaderBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1});
|
||||
this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
|
||||
this.Year_Now});
|
||||
this.DisplayName = "Gazdasági adatok adóminősítéshez - állattenyésztés - alriport";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Margins = new System.Drawing.Printing.Margins(50, 50, 0, 0);
|
||||
this.Name = "xafReport1";
|
||||
this.PageHeight = 1100;
|
||||
this.PageWidth = 850;
|
||||
this.ScriptLanguage = DevExpress.XtraReports.ScriptLanguage.VisualBasic;
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "12.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
+842
@@ -0,0 +1,842 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v12.1, Version=12.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Xpo.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraReports.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Utils.v12.1.UI.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraBars.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraTreeList.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraRichEdit.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.RichEdit.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Office.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraPrinting.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Reports.v12.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraCharts.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraNavBar.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraVerticalGrid.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.CodeParser.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Client\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Client.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Design\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Entity\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Entity.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class Page4 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label5;
|
||||
private DevExpress.XtraReports.UI.XRTable table2;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow2;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell19;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow3;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell4;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell5;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell2;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow4;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell6;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell7;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow5;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell8;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell9;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell10;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow6;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell11;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell12;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell13;
|
||||
private DevExpress.XtraReports.UI.XRSubreport subreport2;
|
||||
private DevExpress.XtraReports.UI.XRSubreport subreport1;
|
||||
private DevExpress.XtraReports.UI.PageFooterBand pageFooterBand1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label14;
|
||||
private DevExpress.XtraReports.UI.XRLabel label4;
|
||||
private DevExpress.XtraReports.UI.XRLabel label3;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.ReportHeaderBand reportHeaderBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table3;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow9;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell18;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell21;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow10;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell22;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell24;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow11;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell25;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell27;
|
||||
private DevExpress.XtraReports.UI.XRTable table1;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell3;
|
||||
private DevExpress.XtraReports.UI.XRLabel label11;
|
||||
private DevExpress.XtraReports.UI.XRLabel label12;
|
||||
private DevExpress.XtraReports.UI.XRLabel label13;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public Page4() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = "zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJza" +
|
||||
"W9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4O" +
|
||||
"SNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAIAAAAAAAAAFBBRFBBRFAFQIOW4" +
|
||||
"hO3uUhecsHGdLje4/Hf4KwTUeIBh2lF1RwbeVYAAAANAQAAAAAAAI4AAABnAAAA9AAAACsAAAC/AAAAH" +
|
||||
"AIAACYkAHQAaABpAHMALgBTAGMAcgBpAHAAdABzAFMAbwB1AHIAYwBlAAAAAAAmRABhAHQAYQBTAG8Ad" +
|
||||
"QByAGMAZQBDAGwAYQBzAHMATgBhAG0AZQAqBAAADEYAaQBsAHQAZQByAE0EAAAiRgBpAGwAdABlAHIAR" +
|
||||
"ABlAHMAYwByAGkAcAB0AGkAbwBuAE8EAAAsRgBpAGwAdABlAHIARgBvAHIARABlAHMAaQBnAG4AUAByA" +
|
||||
"GUAdgBpAGUAdwBRBAAAMFAAYQByAGEAbQBlAHQAZQByAHMATwBiAGoAZQBjAHQAVAB5AHAAZQBOAGEAb" +
|
||||
"QBlAFMEAAAUUgBlAHAAbwByAHQATgBhAG0AZQBUBAAAFmwAYQBiAGUAbAAyAC4AVABlAHgAdAB7BAAAA" +
|
||||
"acIDQpQcml2YXRlIFN1YiBzdWJyZXBvcnQxX0JlZm9yZVByaW50KEJ5VmFsIHNlbmRlciBBcyBPYmplY" +
|
||||
"3QsIEJ5VmFsIGUgQXMgU3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuUHJpbnRFdmVudEFyZ3MpDQoJQ1R5c" +
|
||||
"GUoc2VuZGVyLCBYUlN1YnJlcG9ydCkuUmVwb3J0U291cmNlLkZpbHRlclN0cmluZyA9IkFQQ1NoZWV0S" +
|
||||
"GVhZGVyLk9pZD0nIiAmIGxhYmVsNS5UZXh0LlRvU3RyaW5nICYgIiciDQpFbmQgU3ViDQoNClByaXZhd" +
|
||||
"GUgU3ViIHN1YnJlcG9ydDJfQmVmb3JlUHJpbnQoQnlWYWwgc2VuZGVyIEFzIE9iamVjdCwgQnlWYWwgZ" +
|
||||
"SBBcyBTeXN0ZW0uRHJhd2luZy5QcmludGluZy5QcmludEV2ZW50QXJncykNCglDVHlwZShzZW5kZXIsI" +
|
||||
"FhSU3VicmVwb3J0KS5SZXBvcnRTb3VyY2UuRmlsdGVyU3RyaW5nID0iQVBDU2hlZXRIZWFkZXIuT2lkP" +
|
||||
"SciICYgbGFiZWw1LlRleHQuVG9TdHJpbmcgJiAiJyINCkVuZCBTdWINCg0KUHJpdmF0ZSBTdWIgdGFib" +
|
||||
"GVDZWxsMjdfQmVmb3JlUHJpbnQoQnlWYWwgc2VuZGVyIEFzIE9iamVjdCwgQnlWYWwgZSBBcyBTeXN0Z" +
|
||||
"W0uRHJhd2luZy5QcmludGluZy5QcmludEV2ZW50QXJncykNCg0KRW5kIFN1Yg0KDQpQcml2YXRlIFN1Y" +
|
||||
"iB0YWJsZUNlbGw3X0JlZm9yZVByaW50KEJ5VmFsIHNlbmRlciBBcyBPYmplY3QsIEJ5VmFsIGUgQXMgU" +
|
||||
"3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuUHJpbnRFdmVudEFyZ3MpDQppZiBsYWJlbDYuVGV4dD0gIiBUc" +
|
||||
"nVlIiB0aGVuDQoJdGFibGVDZWxsNy5UZXh0ID0gIklnZW4iDQplbmQgaWYNCmlmIGxhYmVsNi5UZXh0I" +
|
||||
"D0gIiBGYWxzZSINCgl0YWJsZUNlbGw3LlRleHQgPSAiTmVtIg0KZW5kIGlmDQpFbmQgU3ViDQoNClBya" +
|
||||
"XZhdGUgU3ViIGxhYmVsNl9CZWZvcmVQcmludChCeVZhbCBzZW5kZXIgQXMgT2JqZWN0LCBCeVZhbCBlI" +
|
||||
"EFzIFN5c3RlbS5EcmF3aW5nLlByaW50aW5nLlByaW50RXZlbnRBcmdzKQ0KCWlmIGxhYmVsNi5UZXh0P" +
|
||||
"SJUcnVlIiB0aGVuIHRhYmxlQ2VsbDcuVGV4dCA9ICIgSWdlbiINCglpZiBsYWJlbDYuVGV4dD0iRmFsc" +
|
||||
"2UiIHRoZW4gdGFibGVDZWxsNy5UZXh0ID0gIiBOZW0iDQoNCkVuZCBTdWINCgEhU0lTQnVzaW5lc3MuT" +
|
||||
"W9kdWxlLkFQQ1NoZWV0SGVhZGVyAQABAAEAAAElR2F6ZGFzw6FnaSBhZGF0b2sgYWTDs21pbsWRc8Otd" +
|
||||
"MOpc2hlegGkAkFsdWzDrXJvdHQgaWfDqW55bMWRIHR1ZG9tw6FzdWwgdmVzemVtLCBob2d5IGF6IGlnw" +
|
||||
"6lueWzDqXMgw6F0dsOpdGVsZSBuZW0gamVsZW50IMOtZ8OpcmV0ZXQgYSBrw7ZsY3PDtm4gZW5nZWTDq" +
|
||||
"Wx5ZXrDqXPDqXJlLCBhIFRha2Fyw6lrc3rDtnZldGtlemV0IGpvZ29zdWx0IGEgaGl0ZWxrw6lyZWxtZ" +
|
||||
"XQgLSBpbmRva2zDoXNpIGvDtnRlbGV6ZXR0c8OpZyBuw6lsa8O8bCAtIGVsdXRhc8OtdGFuaSwgdmFne" +
|
||||
"SBheiBpZ8OpbnllbHRuw6lsIGFsYWNzb255YWJiIGhpdGVsw7Zzc3plZ2V0IG1lZ8OhbGxhcMOtdGFua" +
|
||||
"S4=";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.pageFooterBand1 = new DevExpress.XtraReports.UI.PageFooterBand();
|
||||
this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.table2 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.subreport2 = new DevExpress.XtraReports.UI.XRSubreport();
|
||||
this.subreport1 = new DevExpress.XtraReports.UI.XRSubreport();
|
||||
this.tableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label14 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.table3 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.table1 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.label11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label13 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.tableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableRow10 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableRow11 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table3)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label5,
|
||||
this.table2,
|
||||
this.subreport2,
|
||||
this.subreport1});
|
||||
this.detailBand1.HeightF = 675.0901F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
//
|
||||
// pageFooterBand1
|
||||
//
|
||||
this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label14,
|
||||
this.label4,
|
||||
this.label3,
|
||||
this.label2,
|
||||
this.label1});
|
||||
this.pageFooterBand1.HeightF = 144.2778F;
|
||||
this.pageFooterBand1.Name = "pageFooterBand1";
|
||||
//
|
||||
// reportHeaderBand1
|
||||
//
|
||||
this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table3,
|
||||
this.table1,
|
||||
this.label11,
|
||||
this.label12,
|
||||
this.label13,
|
||||
this.label6});
|
||||
this.reportHeaderBand1.HeightF = 126F;
|
||||
this.reportHeaderBand1.Name = "reportHeaderBand1";
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 25.00001F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 23.94443F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// label5
|
||||
//
|
||||
this.label5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Oid")});
|
||||
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(597.5378F, 31.25F);
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label5.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label5.Text = "label5";
|
||||
this.label5.Visible = false;
|
||||
//
|
||||
// table2
|
||||
//
|
||||
this.table2.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.table2.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.table2.LocationFloat = new DevExpress.Utils.PointFloat(12.50007F, 329.6018F);
|
||||
this.table2.Name = "table2";
|
||||
this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow2,
|
||||
this.tableRow3,
|
||||
this.tableRow4,
|
||||
this.tableRow5,
|
||||
this.tableRow6});
|
||||
this.table2.SizeF = new System.Drawing.SizeF(728.9999F, 122F);
|
||||
this.table2.StylePriority.UseBorders = false;
|
||||
this.table2.StylePriority.UseFont = false;
|
||||
//
|
||||
// subreport2
|
||||
//
|
||||
this.subreport2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 222.504F);
|
||||
this.subreport2.Name = "subreport2";
|
||||
this.subreport2.ReportSourceUrl = "Gazdasági adatok adóminősítéshez - állattenyésztés - alriport";
|
||||
this.subreport2.Scripts.OnBeforePrint = "subreport2_BeforePrint";
|
||||
this.subreport2.SizeF = new System.Drawing.SizeF(729F, 107.0978F);
|
||||
//
|
||||
// subreport1
|
||||
//
|
||||
this.subreport1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.subreport1.Name = "subreport1";
|
||||
this.subreport1.ReportSourceUrl = "Gazdasági adatok adóminősítéshez - pénzügyi adatok - alriport";
|
||||
this.subreport1.Scripts.OnBeforePrint = "subreport1_BeforePrint";
|
||||
this.subreport1.SizeF = new System.Drawing.SizeF(729F, 222.504F);
|
||||
//
|
||||
// tableRow2
|
||||
//
|
||||
this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell19});
|
||||
this.tableRow2.Name = "tableRow2";
|
||||
this.tableRow2.Weight = 1.0000003776774489D;
|
||||
//
|
||||
// tableRow3
|
||||
//
|
||||
this.tableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell4,
|
||||
this.tableCell5,
|
||||
this.tableCell2});
|
||||
this.tableRow3.Name = "tableRow3";
|
||||
this.tableRow3.Weight = 1.0000004441220607D;
|
||||
//
|
||||
// tableRow4
|
||||
//
|
||||
this.tableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell1,
|
||||
this.tableCell6,
|
||||
this.tableCell7});
|
||||
this.tableRow4.Name = "tableRow4";
|
||||
this.tableRow4.Weight = 0.96000042749908709D;
|
||||
//
|
||||
// tableRow5
|
||||
//
|
||||
this.tableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell8,
|
||||
this.tableCell9,
|
||||
this.tableCell10});
|
||||
this.tableRow5.Name = "tableRow5";
|
||||
this.tableRow5.Weight = 0.960000427499087D;
|
||||
//
|
||||
// tableRow6
|
||||
//
|
||||
this.tableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell11,
|
||||
this.tableCell12,
|
||||
this.tableCell13});
|
||||
this.tableRow6.Name = "tableRow6";
|
||||
this.tableRow6.Weight = 0.96000035120511007D;
|
||||
//
|
||||
// tableCell19
|
||||
//
|
||||
this.tableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.tableCell19.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.tableCell19.Name = "tableCell19";
|
||||
this.tableCell19.StylePriority.UseBorders = false;
|
||||
this.tableCell19.StylePriority.UseFont = false;
|
||||
this.tableCell19.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell19.Text = " III. Egyéb adatok:";
|
||||
this.tableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.tableCell19.Weight = 3.0000000000000004D;
|
||||
//
|
||||
// tableCell4
|
||||
//
|
||||
this.tableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)));
|
||||
this.tableCell4.Name = "tableCell4";
|
||||
this.tableCell4.StylePriority.UseBorders = false;
|
||||
this.tableCell4.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell4.Text = "Sorszám";
|
||||
this.tableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell4.Weight = 0.20130790582197877D;
|
||||
//
|
||||
// tableCell5
|
||||
//
|
||||
this.tableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)));
|
||||
this.tableCell5.Name = "tableCell5";
|
||||
this.tableCell5.StylePriority.UseBorders = false;
|
||||
this.tableCell5.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell5.Text = " Megnevezés";
|
||||
this.tableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.tableCell5.Weight = 1.3930093248589619D;
|
||||
//
|
||||
// tableCell2
|
||||
//
|
||||
this.tableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.tableCell2.Name = "tableCell2";
|
||||
this.tableCell2.StylePriority.UseBorders = false;
|
||||
this.tableCell2.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell2.Text = "Válaszok";
|
||||
this.tableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell2.Weight = 1.4056827693190594D;
|
||||
//
|
||||
// tableCell1
|
||||
//
|
||||
this.tableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)));
|
||||
this.tableCell1.Name = "tableCell1";
|
||||
this.tableCell1.StylePriority.UseBorders = false;
|
||||
this.tableCell1.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell1.Text = "1";
|
||||
this.tableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell1.Weight = 0.20130790582197877D;
|
||||
//
|
||||
// tableCell6
|
||||
//
|
||||
this.tableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)));
|
||||
this.tableCell6.Name = "tableCell6";
|
||||
this.tableCell6.StylePriority.UseBorders = false;
|
||||
this.tableCell6.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell6.Text = " Magánszemélyként rendelkezik-e hitel típusú tartozással:";
|
||||
this.tableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.tableCell6.Weight = 1.3930093248589619D;
|
||||
//
|
||||
// tableCell7
|
||||
//
|
||||
this.tableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.tableCell7.Name = "tableCell7";
|
||||
this.tableCell7.Scripts.OnBeforePrint = "tableCell7_BeforePrint";
|
||||
this.tableCell7.StylePriority.UseBorders = false;
|
||||
this.tableCell7.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell7.Text = "tableCell7";
|
||||
this.tableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell7.Weight = 1.4056827693190594D;
|
||||
//
|
||||
// tableCell8
|
||||
//
|
||||
this.tableCell8.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)));
|
||||
this.tableCell8.Name = "tableCell8";
|
||||
this.tableCell8.StylePriority.UseBorders = false;
|
||||
this.tableCell8.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell8.Text = "2";
|
||||
this.tableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell8.Weight = 0.20130790582197877D;
|
||||
//
|
||||
// tableCell9
|
||||
//
|
||||
this.tableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)));
|
||||
this.tableCell9.Name = "tableCell9";
|
||||
this.tableCell9.StylePriority.UseBorders = false;
|
||||
this.tableCell9.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell9.Text = " Ha van hitel típusú tartozása, mekkora összeg (Ft):";
|
||||
this.tableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.tableCell9.Weight = 1.3930093248589619D;
|
||||
//
|
||||
// tableCell10
|
||||
//
|
||||
this.tableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.tableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "IsPrivateCreditAmountHUF", "{0:#,# Ft}")});
|
||||
this.tableCell10.Name = "tableCell10";
|
||||
this.tableCell10.StylePriority.UseBorders = false;
|
||||
this.tableCell10.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell10.Text = "tableCell10";
|
||||
this.tableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell10.Weight = 1.4056827693190594D;
|
||||
//
|
||||
// tableCell11
|
||||
//
|
||||
this.tableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell11.Name = "tableCell11";
|
||||
this.tableCell11.StylePriority.UseBorders = false;
|
||||
this.tableCell11.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell11.Text = "3";
|
||||
this.tableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell11.Weight = 0.20130790582197877D;
|
||||
//
|
||||
// tableCell12
|
||||
//
|
||||
this.tableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell12.Name = "tableCell12";
|
||||
this.tableCell12.StylePriority.UseBorders = false;
|
||||
this.tableCell12.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell12.Text = " Egyéb vállalkozásnak tagja-e, ha igen melyik(ek)nek:";
|
||||
this.tableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.tableCell12.Weight = 1.3930093248589619D;
|
||||
//
|
||||
// tableCell13
|
||||
//
|
||||
this.tableCell13.BackColor = System.Drawing.Color.Transparent;
|
||||
this.tableCell13.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "OtherCompanyInfo")});
|
||||
this.tableCell13.Name = "tableCell13";
|
||||
this.tableCell13.StylePriority.UseBackColor = false;
|
||||
this.tableCell13.StylePriority.UseBorders = false;
|
||||
this.tableCell13.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell13.Text = "tableCell13";
|
||||
this.tableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell13.Weight = 1.4056827693190594D;
|
||||
//
|
||||
// label14
|
||||
//
|
||||
this.label14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DateSigned", "{0:yyyy.MM.dd.}")});
|
||||
this.label14.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label14.LocationFloat = new DevExpress.Utils.PointFloat(68.22916F, 112.5F);
|
||||
this.label14.Name = "label14";
|
||||
this.label14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label14.SizeF = new System.Drawing.SizeF(105.2289F, 15.83854F);
|
||||
this.label14.StylePriority.UseFont = false;
|
||||
this.label14.StylePriority.UseTextAlignment = false;
|
||||
this.label14.Text = "label14";
|
||||
this.label14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(426.3889F, 112.5F);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label4.SizeF = new System.Drawing.SizeF(92.53473F, 15.83854F);
|
||||
this.label4.StylePriority.UseFont = false;
|
||||
this.label4.StylePriority.UseTextAlignment = false;
|
||||
this.label4.Text = "Termelő aláírása:";
|
||||
this.label4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label3.LocationFloat = new DevExpress.Utils.PointFloat(12.5F, 112.5F);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label3.SizeF = new System.Drawing.SizeF(55.72917F, 15.83854F);
|
||||
this.label3.StylePriority.UseFont = false;
|
||||
this.label3.StylePriority.UseTextAlignment = false;
|
||||
this.label3.Text = "Dátum:";
|
||||
this.label3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.Font = new System.Drawing.Font("Arial Narrow", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(12.5F, 39.94443F);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(729F, 29.94444F);
|
||||
this.label2.StylePriority.UseFont = false;
|
||||
this.label2.Text = resources.GetString("label2.Text");
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(12.5F, 9.999994F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.SizeF = new System.Drawing.SizeF(729F, 29.94444F);
|
||||
this.label1.StylePriority.UseFont = false;
|
||||
this.label1.Text = "Polgárjogi és büntetőjogi felellőségem tudatában kijelentem, hogy a Partner adatl" +
|
||||
"ap, Partner előszűrés, Termelési terv és jelen Gazdálkodási adatlapon feltüntete" +
|
||||
"tt adatok a valóságnak megfelelnek.";
|
||||
//
|
||||
// table3
|
||||
//
|
||||
this.table3.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.table3.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.table3.LocationFloat = new DevExpress.Utils.PointFloat(12.50004F, 51.00001F);
|
||||
this.table3.Name = "table3";
|
||||
this.table3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow9,
|
||||
this.tableRow10,
|
||||
this.tableRow11});
|
||||
this.table3.SizeF = new System.Drawing.SizeF(728.9999F, 75F);
|
||||
this.table3.StylePriority.UseBorders = false;
|
||||
this.table3.StylePriority.UseFont = false;
|
||||
//
|
||||
// table1
|
||||
//
|
||||
this.table1.LocationFloat = new DevExpress.Utils.PointFloat(12.5F, 23.22F);
|
||||
this.table1.Name = "table1";
|
||||
this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow1});
|
||||
this.table1.SizeF = new System.Drawing.SizeF(729F, 27.78F);
|
||||
//
|
||||
// label11
|
||||
//
|
||||
this.label11.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label11.LocationFloat = new DevExpress.Utils.PointFloat(317.8847F, 0F);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label11.SizeF = new System.Drawing.SizeF(100F, 16.42036F);
|
||||
this.label11.StylePriority.UseFont = false;
|
||||
this.label11.StylePriority.UseTextAlignment = false;
|
||||
this.label11.Text = "4. számú melléklet";
|
||||
this.label11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label12
|
||||
//
|
||||
this.label12.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label12.LocationFloat = new DevExpress.Utils.PointFloat(490.5475F, 0F);
|
||||
this.label12.Name = "label12";
|
||||
this.label12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label12.SizeF = new System.Drawing.SizeF(53.86908F, 16.42036F);
|
||||
this.label12.StylePriority.UseFont = false;
|
||||
this.label12.StylePriority.UseTextAlignment = false;
|
||||
this.label12.Text = "Hatályos:";
|
||||
this.label12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label13
|
||||
//
|
||||
this.label13.BackColor = System.Drawing.Color.Transparent;
|
||||
this.label13.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label13.LocationFloat = new DevExpress.Utils.PointFloat(549.7028F, 0F);
|
||||
this.label13.Name = "label13";
|
||||
this.label13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label13.SizeF = new System.Drawing.SizeF(128.2458F, 16.42036F);
|
||||
this.label13.StylePriority.UseBackColor = false;
|
||||
this.label13.StylePriority.UseFont = false;
|
||||
this.label13.StylePriority.UseTextAlignment = false;
|
||||
this.label13.Text = "2012. augusztus 27-től";
|
||||
this.label13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "IsPrivateCredit")});
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(40.4583F, 0.7953644F);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label6.Scripts.OnBeforePrint = "label6_BeforePrint";
|
||||
this.label6.SizeF = new System.Drawing.SizeF(90.625F, 15.625F);
|
||||
this.label6.Text = "label6";
|
||||
this.label6.Visible = false;
|
||||
//
|
||||
// tableRow9
|
||||
//
|
||||
this.tableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell18,
|
||||
this.tableCell21});
|
||||
this.tableRow9.Name = "tableRow9";
|
||||
this.tableRow9.Weight = 1.0000003814698721D;
|
||||
//
|
||||
// tableRow10
|
||||
//
|
||||
this.tableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell22,
|
||||
this.tableCell24});
|
||||
this.tableRow10.Name = "tableRow10";
|
||||
this.tableRow10.Weight = 1.0000003814698721D;
|
||||
//
|
||||
// tableRow11
|
||||
//
|
||||
this.tableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell25,
|
||||
this.tableCell27});
|
||||
this.tableRow11.Name = "tableRow11";
|
||||
this.tableRow11.Weight = 1.0000003814698721D;
|
||||
//
|
||||
// tableCell18
|
||||
//
|
||||
this.tableCell18.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)));
|
||||
this.tableCell18.Name = "tableCell18";
|
||||
this.tableCell18.StylePriority.UseBorders = false;
|
||||
this.tableCell18.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell18.Text = " Partner neve:";
|
||||
this.tableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.tableCell18.Weight = 0.73000042036534452D;
|
||||
//
|
||||
// tableCell21
|
||||
//
|
||||
this.tableCell21.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.tableCell21.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Customers.FullName")});
|
||||
this.tableCell21.Name = "tableCell21";
|
||||
this.tableCell21.StylePriority.UseBorders = false;
|
||||
this.tableCell21.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell21.Text = "tableCell21";
|
||||
this.tableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell21.Weight = 2.2699995796346557D;
|
||||
//
|
||||
// tableCell22
|
||||
//
|
||||
this.tableCell22.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)));
|
||||
this.tableCell22.Name = "tableCell22";
|
||||
this.tableCell22.StylePriority.UseBorders = false;
|
||||
this.tableCell22.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell22.Text = " Tevékenység:";
|
||||
this.tableCell22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.tableCell22.Weight = 0.73000031047692748D;
|
||||
//
|
||||
// tableCell24
|
||||
//
|
||||
this.tableCell24.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.tableCell24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Activity")});
|
||||
this.tableCell24.Name = "tableCell24";
|
||||
this.tableCell24.StylePriority.UseBorders = false;
|
||||
this.tableCell24.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell24.Text = "tableCell24";
|
||||
this.tableCell24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell24.Weight = 2.2699996895230727D;
|
||||
//
|
||||
// tableCell25
|
||||
//
|
||||
this.tableCell25.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell25.Name = "tableCell25";
|
||||
this.tableCell25.StylePriority.UseBorders = false;
|
||||
this.tableCell25.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell25.Text = " Tevékenység kezdete (év):";
|
||||
this.tableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.tableCell25.Weight = 0.73000018489016516D;
|
||||
//
|
||||
// tableCell27
|
||||
//
|
||||
this.tableCell27.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ActivityStartDate", "{0:yyyy.MM.dd.}")});
|
||||
this.tableCell27.Name = "tableCell27";
|
||||
this.tableCell27.Scripts.OnBeforePrint = "tableCell27_BeforePrint";
|
||||
this.tableCell27.StylePriority.UseBorders = false;
|
||||
this.tableCell27.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell27.Text = "tableCell27";
|
||||
this.tableCell27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell27.Weight = 2.2699998151098351D;
|
||||
//
|
||||
// tableRow1
|
||||
//
|
||||
this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell3});
|
||||
this.tableRow1.Name = "tableRow1";
|
||||
this.tableRow1.Weight = 1.1112000274658203D;
|
||||
//
|
||||
// tableCell3
|
||||
//
|
||||
this.tableCell3.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.tableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell3.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.tableCell3.Name = "tableCell3";
|
||||
this.tableCell3.StylePriority.UseBackColor = false;
|
||||
this.tableCell3.StylePriority.UseBorders = false;
|
||||
this.tableCell3.StylePriority.UseFont = false;
|
||||
this.tableCell3.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell3.Text = "Gazdasági adatok SZJA szerinti adóminősítéshez";
|
||||
this.tableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell3.Weight = 7.29D;
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.Transparent;
|
||||
this.Title.BorderColor = System.Drawing.Color.Black;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
|
||||
this.FieldCaption.BorderColor = System.Drawing.Color.Black;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.Transparent;
|
||||
this.PageInfo.BorderColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.Transparent;
|
||||
this.DataField.BorderColor = System.Drawing.Color.Black;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.Color.Black;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// Page4
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.pageFooterBand1,
|
||||
this.reportHeaderBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1});
|
||||
this.DisplayName = "Gazdasági adatok adóminősítéshez";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Margins = new System.Drawing.Printing.Margins(50, 50, 25, 24);
|
||||
this.Name = "Page4";
|
||||
this.PageHeight = 1100;
|
||||
this.PageWidth = 850;
|
||||
this.ScriptLanguage = DevExpress.XtraReports.ScriptLanguage.VisualBasic;
|
||||
this.ScriptsSource = resources.GetString("$this.ScriptsSource");
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "12.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table3)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
+1557
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,454 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v12.1, Version=12.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Xpo.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraReports.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Utils.v12.1.UI.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraBars.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraTreeList.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraRichEdit.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.RichEdit.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Office.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraPrinting.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Reports.v12.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraCharts.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraNavBar.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraVerticalGrid.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.CodeParser.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Client\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Client.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Design\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Entity\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Entity.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class xafReport1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label9;
|
||||
private DevExpress.XtraReports.UI.XRLabel label4;
|
||||
private DevExpress.XtraReports.UI.XRLabel label3;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.PageFooterBand pageFooterBand1;
|
||||
private DevExpress.XtraReports.UI.ReportHeaderBand reportHeaderBand1;
|
||||
private DevExpress.XtraReports.UI.XRLine line1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label8;
|
||||
private DevExpress.XtraReports.UI.XRLabel label7;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label5;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1;
|
||||
private DevExpress.XtraReports.UI.XRLine line2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label10;
|
||||
private DevExpress.XtraReports.UI.XRLabel label11;
|
||||
private DevExpress.XtraReports.UI.XRLabel label12;
|
||||
private DevExpress.XtraReports.UI.FormattingRule formattingRule1;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public xafReport1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAGAAAAAAAAAFBBRFBBRFAFQIOWxnS43uPx3+CsE1HiAYdpRdUcG3krAAAAYwAAADwAAADJAAAAAAAAAJQAAADGAQAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQwBsAGEAcwBzAE4AYQBtAGUAAAAAAAxGAGkAbAB0AGUAcgAjAAAAIkYAaQBsAHQAZQByAEQAZQBzAGMAcgBpAHAAdABpAG8AbgAlAAAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlAHcAJwAAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQApAAAAFFIAZQBwAG8AcgB0AE4AYQBtAGUAKgAAAAEhU0lTQnVzaW5lc3MuTW9kdWxlLkludm9pY2VWQVRSb3dzAQABAAEAAAEUS2ltZW7FkSBzesOhbWxhIMOBRkE=";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
DevExpress.XtraReports.UI.XRSummary summary1 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary2 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary3 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.pageFooterBand1 = new DevExpress.XtraReports.UI.PageFooterBand();
|
||||
this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.label9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line1 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line2 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.formattingRule1 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label9,
|
||||
this.label4,
|
||||
this.label3,
|
||||
this.label2});
|
||||
this.detailBand1.HeightF = 18F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
//
|
||||
// pageFooterBand1
|
||||
//
|
||||
this.pageFooterBand1.Expanded = false;
|
||||
this.pageFooterBand1.HeightF = 0F;
|
||||
this.pageFooterBand1.Name = "pageFooterBand1";
|
||||
//
|
||||
// reportHeaderBand1
|
||||
//
|
||||
this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line1,
|
||||
this.label8,
|
||||
this.label7,
|
||||
this.label6,
|
||||
this.label5});
|
||||
this.reportHeaderBand1.HeightF = 20.16668F;
|
||||
this.reportHeaderBand1.Name = "reportHeaderBand1";
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 0F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 0F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// GroupFooter1
|
||||
//
|
||||
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line2,
|
||||
this.label1,
|
||||
this.label10,
|
||||
this.label11,
|
||||
this.label12});
|
||||
this.GroupFooter1.HeightF = 28.50005F;
|
||||
this.GroupFooter1.Name = "GroupFooter1";
|
||||
//
|
||||
// label9
|
||||
//
|
||||
this.label9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountBruttoHUF", "{0:#,#}")});
|
||||
this.label9.Font = new System.Drawing.Font("Arial", 9.75F);
|
||||
this.label9.LocationFloat = new DevExpress.Utils.PointFloat(591.7083F, 0F);
|
||||
this.label9.Name = "label9";
|
||||
this.label9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label9.SizeF = new System.Drawing.SizeF(107.2917F, 18F);
|
||||
this.label9.StylePriority.UseFont = false;
|
||||
this.label9.StylePriority.UseTextAlignment = false;
|
||||
this.label9.Text = "label9";
|
||||
this.label9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountVATHUF", "{0:#,#}")});
|
||||
this.label4.Font = new System.Drawing.Font("Arial", 9.75F);
|
||||
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(460.4167F, 0F);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label4.SizeF = new System.Drawing.SizeF(107.2917F, 18F);
|
||||
this.label4.StylePriority.UseFont = false;
|
||||
this.label4.StylePriority.UseTextAlignment = false;
|
||||
this.label4.Text = "label4";
|
||||
this.label4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountNettoHUF", "{0:#,#}")});
|
||||
this.label3.Font = new System.Drawing.Font("Arial", 9.75F);
|
||||
this.label3.LocationFloat = new DevExpress.Utils.PointFloat(303.125F, 0F);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label3.SizeF = new System.Drawing.SizeF(107.2917F, 18F);
|
||||
this.label3.StylePriority.UseFont = false;
|
||||
this.label3.StylePriority.UseTextAlignment = false;
|
||||
this.label3.Text = "label3";
|
||||
this.label3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "VAT.ShortName")});
|
||||
this.label2.Font = new System.Drawing.Font("Arial", 9.75F);
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(148.9583F, 0F);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(100F, 18F);
|
||||
this.label2.StylePriority.UseFont = false;
|
||||
this.label2.StylePriority.UseTextAlignment = false;
|
||||
this.label2.Text = "label2";
|
||||
this.label2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// line1
|
||||
//
|
||||
this.line1.LocationFloat = new DevExpress.Utils.PointFloat(148.9583F, 18F);
|
||||
this.line1.Name = "line1";
|
||||
this.line1.SizeF = new System.Drawing.SizeF(550.0416F, 2.166679F);
|
||||
//
|
||||
// label8
|
||||
//
|
||||
this.label8.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.label8.LocationFloat = new DevExpress.Utils.PointFloat(591.7083F, 0F);
|
||||
this.label8.Name = "label8";
|
||||
this.label8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label8.SizeF = new System.Drawing.SizeF(107.2917F, 18F);
|
||||
this.label8.StylePriority.UseFont = false;
|
||||
this.label8.StylePriority.UseTextAlignment = false;
|
||||
this.label8.Text = "Bruttó összeg";
|
||||
this.label8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// label7
|
||||
//
|
||||
this.label7.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.label7.LocationFloat = new DevExpress.Utils.PointFloat(460.4167F, 0F);
|
||||
this.label7.Name = "label7";
|
||||
this.label7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label7.SizeF = new System.Drawing.SizeF(107.2917F, 18F);
|
||||
this.label7.StylePriority.UseFont = false;
|
||||
this.label7.StylePriority.UseTextAlignment = false;
|
||||
this.label7.Text = "ÁFA összeg";
|
||||
this.label7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(303.125F, 0F);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label6.SizeF = new System.Drawing.SizeF(107.2917F, 18F);
|
||||
this.label6.StylePriority.UseFont = false;
|
||||
this.label6.StylePriority.UseTextAlignment = false;
|
||||
this.label6.Text = "Nettó összeg";
|
||||
this.label6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// label5
|
||||
//
|
||||
this.label5.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(148.9583F, 0F);
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label5.SizeF = new System.Drawing.SizeF(100F, 18F);
|
||||
this.label5.StylePriority.UseFont = false;
|
||||
this.label5.Text = "ÁFA kód";
|
||||
//
|
||||
// line2
|
||||
//
|
||||
this.line2.LocationFloat = new DevExpress.Utils.PointFloat(148.9582F, 0F);
|
||||
this.line2.Name = "line2";
|
||||
this.line2.SizeF = new System.Drawing.SizeF(550.0417F, 6.333365F);
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(148.9583F, 10.50002F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.SizeF = new System.Drawing.SizeF(100F, 18F);
|
||||
this.label1.StylePriority.UseFont = false;
|
||||
this.label1.StylePriority.UseTextAlignment = false;
|
||||
this.label1.Text = "Összesen";
|
||||
this.label1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// label10
|
||||
//
|
||||
this.label10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountNettoHUF")});
|
||||
this.label10.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label10.LocationFloat = new DevExpress.Utils.PointFloat(277.0834F, 10.50005F);
|
||||
this.label10.Name = "label10";
|
||||
this.label10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label10.SizeF = new System.Drawing.SizeF(133.3333F, 18F);
|
||||
this.label10.StylePriority.UseFont = false;
|
||||
this.label10.StylePriority.UseTextAlignment = false;
|
||||
summary1.FormatString = "{0:#,#}";
|
||||
summary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label10.Summary = summary1;
|
||||
this.label10.Text = "label10";
|
||||
this.label10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label11
|
||||
//
|
||||
this.label11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountVATHUF")});
|
||||
this.label11.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label11.LocationFloat = new DevExpress.Utils.PointFloat(436.4584F, 10.50005F);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label11.SizeF = new System.Drawing.SizeF(131.25F, 18F);
|
||||
this.label11.StylePriority.UseFont = false;
|
||||
this.label11.StylePriority.UseTextAlignment = false;
|
||||
summary2.FormatString = "{0:#,#}";
|
||||
summary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label11.Summary = summary2;
|
||||
this.label11.Text = "label11";
|
||||
this.label11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label12
|
||||
//
|
||||
this.label12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountBruttoHUF")});
|
||||
this.label12.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label12.LocationFloat = new DevExpress.Utils.PointFloat(578.1667F, 10.50005F);
|
||||
this.label12.Name = "label12";
|
||||
this.label12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label12.SizeF = new System.Drawing.SizeF(120.8333F, 18F);
|
||||
this.label12.StylePriority.UseFont = false;
|
||||
this.label12.StylePriority.UseTextAlignment = false;
|
||||
summary3.FormatString = "{0:#,#}";
|
||||
summary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label12.Summary = summary3;
|
||||
this.label12.Text = "label12";
|
||||
this.label12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// formattingRule1
|
||||
//
|
||||
this.formattingRule1.Name = "formattingRule1";
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.White;
|
||||
this.Title.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.White;
|
||||
this.FieldCaption.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.White;
|
||||
this.PageInfo.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.White;
|
||||
this.DataField.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// xafReport1
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.pageFooterBand1,
|
||||
this.reportHeaderBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.GroupFooter1});
|
||||
this.DisplayName = "Kimenő számla ÁFA";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
|
||||
this.formattingRule1});
|
||||
this.Margins = new System.Drawing.Printing.Margins(100, 28, 0, 0);
|
||||
this.Name = "xafReport1";
|
||||
this.PageHeight = 1169;
|
||||
this.PageWidth = 827;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "12.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
+269
@@ -0,0 +1,269 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v12.1, Version=12.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Xpo.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraReports.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Utils.v12.1.UI.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraBars.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraTreeList.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraRichEdit.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.RichEdit.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Office.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraPrinting.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Reports.v12.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraCharts.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraNavBar.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraVerticalGrid.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.CodeParser.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Client\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Client.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Design\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Entity\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Entity.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class I_kategoria : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter;
|
||||
private DevExpress.XtraReports.UI.XRTable table1;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell3;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell4;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public I_kategoria() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAGAAAAAAAAAFBBRFBBRFAFQIOWxnS43uPx3+CsE1HiAYdpRdUcG3krAAAAYwAAADwAAADJAAAAAAAAAJQAAADGAQAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQwBsAGEAcwBzAE4AYQBtAGUAAAAAAAxGAGkAbAB0AGUAcgAoAAAAIkYAaQBsAHQAZQByAEQAZQBzAGMAcgBpAHAAdABpAG8AbgCbAAAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlAHcAnQAAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQAQAQAAFFIAZQBwAG8AcgB0AE4AYQBtAGUAEQEAAAEmU0lTQnVzaW5lc3MuTW9kdWxlLkRlbGl2ZXJ5Tm90ZU91dFJvd3MBcVtTdG9yYWdlT3V0Um93c0luUm93cy5TdG9yYWdlSW5Sb3dzLlByb2R1Y3RzLkFEUlBhY2tpbmdVbml0XSA9ICMjRW51bSNTSVNCdXNpbmVzcy5Nb2R1bGUuZUFEUlBhY2tpbmdVbml0LGVVbml0X0kjAQABcVtTdG9yYWdlT3V0Um93c0luUm93cy5TdG9yYWdlSW5Sb3dzLlByb2R1Y3RzLkFEUlBhY2tpbmdVbml0XSA9ICMjRW51bSNTSVNCdXNpbmVzcy5Nb2R1bGUuZUFEUlBhY2tpbmdVbml0LGVVbml0X0kjAAEyU3rDoWxsw610w7NsZXbDqWwgLSBraW1lbsWRIC0gRnJpbnB1dCAtIGFscmlwb3J0XzE=";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
DevExpress.XtraReports.UI.XRSummary summary1 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
|
||||
this.table1 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.HeightF = 0F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 0F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 0F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// ReportFooter
|
||||
//
|
||||
this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table1});
|
||||
this.ReportFooter.HeightF = 25F;
|
||||
this.ReportFooter.Name = "ReportFooter";
|
||||
//
|
||||
// table1
|
||||
//
|
||||
this.table1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.table1.LocationFloat = new DevExpress.Utils.PointFloat(4.768372E-06F, 0F);
|
||||
this.table1.Name = "table1";
|
||||
this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow1});
|
||||
this.table1.SizeF = new System.Drawing.SizeF(300F, 25F);
|
||||
this.table1.StylePriority.UseFont = false;
|
||||
this.table1.StylePriority.UseTextAlignment = false;
|
||||
this.table1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// tableRow1
|
||||
//
|
||||
this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell1,
|
||||
this.tableCell3,
|
||||
this.tableCell4});
|
||||
this.tableRow1.Name = "tableRow1";
|
||||
this.tableRow1.Weight = 1D;
|
||||
//
|
||||
// tableCell1
|
||||
//
|
||||
this.tableCell1.Name = "tableCell1";
|
||||
this.tableCell1.Text = " 1. szállítási kategória =";
|
||||
this.tableCell1.Weight = 1.3541665649414063D;
|
||||
//
|
||||
// tableCell3
|
||||
//
|
||||
this.tableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ADRNumber")});
|
||||
this.tableCell3.Name = "tableCell3";
|
||||
this.tableCell3.StylePriority.UseTextAlignment = false;
|
||||
summary1.FormatString = "{0:n}";
|
||||
summary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
|
||||
this.tableCell3.Summary = summary1;
|
||||
this.tableCell3.Text = "tableCell7";
|
||||
this.tableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell3.Weight = 0.82291671752929685D;
|
||||
//
|
||||
// tableCell4
|
||||
//
|
||||
this.tableCell4.Name = "tableCell4";
|
||||
this.tableCell4.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell4.Text = "ADR pont";
|
||||
this.tableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell4.Weight = 0.82291671752929685D;
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.Transparent;
|
||||
this.Title.BorderColor = System.Drawing.Color.Black;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
|
||||
this.FieldCaption.BorderColor = System.Drawing.Color.Black;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.Transparent;
|
||||
this.PageInfo.BorderColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.Transparent;
|
||||
this.DataField.BorderColor = System.Drawing.Color.Black;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.Color.Black;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// I_kategoria
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.ReportFooter});
|
||||
this.DisplayName = "Szállítólevél - kimenő - Frinput - alriport_1";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.FilterString = "[StorageOutRowsInRows.StorageInRows.Products.ADRPackingUnit] = ##Enum#Nuvolar" +
|
||||
".Module.eADRPackingUnit,eUnit_I#";
|
||||
this.Margins = new System.Drawing.Printing.Margins(0, 0, 0, 0);
|
||||
this.Name = "I_kategoria";
|
||||
this.PageHeight = 1100;
|
||||
this.PageWidth = 850;
|
||||
this.ScriptLanguage = DevExpress.XtraReports.ScriptLanguage.VisualBasic;
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "12.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
+269
@@ -0,0 +1,269 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v12.1, Version=12.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Xpo.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraReports.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Utils.v12.1.UI.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraBars.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraTreeList.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraRichEdit.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.RichEdit.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Office.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraPrinting.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Reports.v12.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraCharts.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraNavBar.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraVerticalGrid.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.CodeParser.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Client\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Client.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Design\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Entity\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Entity.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class II_kategoria : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter;
|
||||
private DevExpress.XtraReports.UI.XRTable table5;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow5;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell2;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell7;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell35;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public II_kategoria() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAGAAAAAAAAAFBBRFBBRFAFQIOWxnS43uPx3+CsE1HiAYdpRdUcG3krAAAAYwAAADwAAADJAAAAAAAAAJQAAADGAQAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQwBsAGEAcwBzAE4AYQBtAGUAAAAAAAxGAGkAbAB0AGUAcgAoAAAAIkYAaQBsAHQAZQByAEQAZQBzAGMAcgBpAHAAdABpAG8AbgCcAAAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlAHcAngAAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQASAQAAFFIAZQBwAG8AcgB0AE4AYQBtAGUAEwEAAAEmU0lTQnVzaW5lc3MuTW9kdWxlLkRlbGl2ZXJ5Tm90ZU91dFJvd3MBcltTdG9yYWdlT3V0Um93c0luUm93cy5TdG9yYWdlSW5Sb3dzLlByb2R1Y3RzLkFEUlBhY2tpbmdVbml0XSA9ICMjRW51bSNTSVNCdXNpbmVzcy5Nb2R1bGUuZUFEUlBhY2tpbmdVbml0LGVVbml0X0lJIwEAAXJbU3RvcmFnZU91dFJvd3NJblJvd3MuU3RvcmFnZUluUm93cy5Qcm9kdWN0cy5BRFJQYWNraW5nVW5pdF0gPSAjI0VudW0jU0lTQnVzaW5lc3MuTW9kdWxlLmVBRFJQYWNraW5nVW5pdCxlVW5pdF9JSSMAATJTesOhbGzDrXTDs2xldsOpbCAtIGtpbWVuxZEgLSBGcmlucHV0IC0gYWxyaXBvcnRfMg==";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
DevExpress.XtraReports.UI.XRSummary summary1 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
|
||||
this.table5 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table5)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.HeightF = 0F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 0F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 0F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// ReportFooter
|
||||
//
|
||||
this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table5});
|
||||
this.ReportFooter.HeightF = 25F;
|
||||
this.ReportFooter.Name = "ReportFooter";
|
||||
//
|
||||
// table5
|
||||
//
|
||||
this.table5.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.table5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.table5.Name = "table5";
|
||||
this.table5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow5});
|
||||
this.table5.SizeF = new System.Drawing.SizeF(300F, 25F);
|
||||
this.table5.StylePriority.UseFont = false;
|
||||
this.table5.StylePriority.UseTextAlignment = false;
|
||||
this.table5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// tableRow5
|
||||
//
|
||||
this.tableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell2,
|
||||
this.tableCell7,
|
||||
this.tableCell35});
|
||||
this.tableRow5.Name = "tableRow5";
|
||||
this.tableRow5.Weight = 1D;
|
||||
//
|
||||
// tableCell2
|
||||
//
|
||||
this.tableCell2.Name = "tableCell2";
|
||||
this.tableCell2.Text = " 2. szállítási kategória =";
|
||||
this.tableCell2.Weight = 1.3541665649414063D;
|
||||
//
|
||||
// tableCell7
|
||||
//
|
||||
this.tableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ADRNumber")});
|
||||
this.tableCell7.Name = "tableCell7";
|
||||
this.tableCell7.StylePriority.UseTextAlignment = false;
|
||||
summary1.FormatString = "{0:n}";
|
||||
summary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
|
||||
this.tableCell7.Summary = summary1;
|
||||
this.tableCell7.Text = "tableCell7";
|
||||
this.tableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell7.Weight = 0.82291671752929685D;
|
||||
//
|
||||
// tableCell35
|
||||
//
|
||||
this.tableCell35.Name = "tableCell35";
|
||||
this.tableCell35.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell35.Text = "ADR pont";
|
||||
this.tableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell35.Weight = 0.82291671752929685D;
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.Transparent;
|
||||
this.Title.BorderColor = System.Drawing.Color.Black;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
|
||||
this.FieldCaption.BorderColor = System.Drawing.Color.Black;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.Transparent;
|
||||
this.PageInfo.BorderColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.Transparent;
|
||||
this.DataField.BorderColor = System.Drawing.Color.Black;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.Color.Black;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// II_kategoria
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.ReportFooter});
|
||||
this.DisplayName = "Szállítólevél - kimenő - Frinput - alriport_2";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.FilterString = "[StorageOutRowsInRows.StorageInRows.Products.ADRPackingUnit] = ##Enum#Nuvolar" +
|
||||
".Module.eADRPackingUnit,eUnit_II#";
|
||||
this.Margins = new System.Drawing.Printing.Margins(0, 0, 0, 0);
|
||||
this.Name = "II_kategoria";
|
||||
this.PageHeight = 1100;
|
||||
this.PageWidth = 850;
|
||||
this.ScriptLanguage = DevExpress.XtraReports.ScriptLanguage.VisualBasic;
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "12.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.table5)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
+269
@@ -0,0 +1,269 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v12.1, Version=12.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Xpo.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraReports.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Utils.v12.1.UI.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraBars.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraTreeList.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraRichEdit.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.RichEdit.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Office.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraPrinting.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Reports.v12.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraCharts.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraNavBar.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraVerticalGrid.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.CodeParser.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Client\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Client.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Design\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Entity\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Entity.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class III_kategoria : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter;
|
||||
private DevExpress.XtraReports.UI.XRTable table5;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow5;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell2;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell7;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell35;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public III_kategoria() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAGAAAAAAAAAFBBRFBBRFAFQIOWxnS43uPx3+CsE1HiAYdpRdUcG3krAAAAYwAAADwAAADJAAAAAAAAAJQAAADGAQAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQwBsAGEAcwBzAE4AYQBtAGUAAAAAAAxGAGkAbAB0AGUAcgAoAAAAIkYAaQBsAHQAZQByAEQAZQBzAGMAcgBpAHAAdABpAG8AbgCdAAAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlAHcAnwAAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQAUAQAAFFIAZQBwAG8AcgB0AE4AYQBtAGUAFQEAAAEmU0lTQnVzaW5lc3MuTW9kdWxlLkRlbGl2ZXJ5Tm90ZU91dFJvd3MBc1tTdG9yYWdlT3V0Um93c0luUm93cy5TdG9yYWdlSW5Sb3dzLlByb2R1Y3RzLkFEUlBhY2tpbmdVbml0XSA9ICMjRW51bSNTSVNCdXNpbmVzcy5Nb2R1bGUuZUFEUlBhY2tpbmdVbml0LGVVbml0X0lJSSMBAAFzW1N0b3JhZ2VPdXRSb3dzSW5Sb3dzLlN0b3JhZ2VJblJvd3MuUHJvZHVjdHMuQURSUGFja2luZ1VuaXRdID0gIyNFbnVtI1NJU0J1c2luZXNzLk1vZHVsZS5lQURSUGFja2luZ1VuaXQsZVVuaXRfSUlJIwABMlN6w6FsbMOtdMOzbGV2w6lsIC0ga2ltZW7FkSAtIEZyaW5wdXQgLSBhbHJpcG9ydF8z";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
DevExpress.XtraReports.UI.XRSummary summary1 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
|
||||
this.table5 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table5)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.HeightF = 0F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 0F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 0F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// ReportFooter
|
||||
//
|
||||
this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table5});
|
||||
this.ReportFooter.HeightF = 25F;
|
||||
this.ReportFooter.Name = "ReportFooter";
|
||||
//
|
||||
// table5
|
||||
//
|
||||
this.table5.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.table5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.table5.Name = "table5";
|
||||
this.table5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow5});
|
||||
this.table5.SizeF = new System.Drawing.SizeF(300F, 25F);
|
||||
this.table5.StylePriority.UseFont = false;
|
||||
this.table5.StylePriority.UseTextAlignment = false;
|
||||
this.table5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// tableRow5
|
||||
//
|
||||
this.tableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell2,
|
||||
this.tableCell7,
|
||||
this.tableCell35});
|
||||
this.tableRow5.Name = "tableRow5";
|
||||
this.tableRow5.Weight = 1D;
|
||||
//
|
||||
// tableCell2
|
||||
//
|
||||
this.tableCell2.Name = "tableCell2";
|
||||
this.tableCell2.Text = " 3. szállítási kategória =";
|
||||
this.tableCell2.Weight = 1.3541665649414063D;
|
||||
//
|
||||
// tableCell7
|
||||
//
|
||||
this.tableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ADRNumber")});
|
||||
this.tableCell7.Name = "tableCell7";
|
||||
this.tableCell7.StylePriority.UseTextAlignment = false;
|
||||
summary1.FormatString = "{0:n}";
|
||||
summary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
|
||||
this.tableCell7.Summary = summary1;
|
||||
this.tableCell7.Text = "tableCell7";
|
||||
this.tableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell7.Weight = 0.82291671752929685D;
|
||||
//
|
||||
// tableCell35
|
||||
//
|
||||
this.tableCell35.Name = "tableCell35";
|
||||
this.tableCell35.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell35.Text = "ADR pont";
|
||||
this.tableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell35.Weight = 0.82291671752929685D;
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.Transparent;
|
||||
this.Title.BorderColor = System.Drawing.Color.Black;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
|
||||
this.FieldCaption.BorderColor = System.Drawing.Color.Black;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.Transparent;
|
||||
this.PageInfo.BorderColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.Transparent;
|
||||
this.DataField.BorderColor = System.Drawing.Color.Black;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.Color.Black;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// III_kategoria
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.ReportFooter});
|
||||
this.DisplayName = "Szállítólevél - kimenő - Frinput - alriport_3";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.FilterString = "[StorageOutRowsInRows.StorageInRows.Products.ADRPackingUnit] = ##Enum#Nuvolar" +
|
||||
".Module.eADRPackingUnit,eUnit_III#";
|
||||
this.Margins = new System.Drawing.Printing.Margins(0, 0, 0, 0);
|
||||
this.Name = "III_kategoria";
|
||||
this.PageHeight = 1100;
|
||||
this.PageWidth = 850;
|
||||
this.ScriptLanguage = DevExpress.XtraReports.ScriptLanguage.VisualBasic;
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "12.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.table5)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
+1278
File diff suppressed because it is too large
Load Diff
+362
@@ -0,0 +1,362 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v12.1, Version=12.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Xpo.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraReports.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Utils.v12.1.UI.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraBars.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraTreeList.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraRichEdit.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.RichEdit.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Office.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraPrinting.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Reports.v12.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraCharts.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraNavBar.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraVerticalGrid.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.CodeParser.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Client\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Client.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Design\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Entity\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Entity.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class PageBelow1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table3;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow4;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell11;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell16;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell22;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell21;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell17;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell24;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell25;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell13;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public PageBelow1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAGAAAAAAAAAFBBRFBBRFAFQIOWxnS43uPx3+CsE1HiAYdpRdUcG3krAAAAYwAAADwAAADJAAAAAAAAAJQAAADGAQAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQwBsAGEAcwBzAE4AYQBtAGUAAAAAAAxGAGkAbAB0AGUAcgAqAAAAIkYAaQBsAHQAZQByAEQAZQBzAGMAcgBpAHAAdABpAG8AbgA9AAAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlAHcAPwAAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQBSAAAAFFIAZQBwAG8AcgB0AE4AYQBtAGUAUwAAAAEoU0lTQnVzaW5lc3MuTW9kdWxlLkFQQ1NoZWV0QnlUZXJyaXRvcmlhbAERW0ludm9sdmVkXSA9IFRydWUBAAERW0ludm9sdmVkXSA9IFRydWUAATlUZXJtZWx0ZXTDqXMgdGVyw7xsZXRlaSDDqXMgdGVybcOpbnllayAtIGJldm9udCAtYWxyaXBvcnQ=";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.table3 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.tableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table3)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table3,
|
||||
this.label1});
|
||||
this.detailBand1.HeightF = 24F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
this.detailBand1.Scripts.OnBeforePrint = "detailBand1_BeforePrint";
|
||||
this.detailBand1.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("RowIndex", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 0F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 0F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// table3
|
||||
//
|
||||
this.table3.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)));
|
||||
this.table3.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.table3.LocationFloat = new DevExpress.Utils.PointFloat(9.999974F, 0F);
|
||||
this.table3.Name = "table3";
|
||||
this.table3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow4});
|
||||
this.table3.SizeF = new System.Drawing.SizeF(728.9999F, 24F);
|
||||
this.table3.StylePriority.UseBorders = false;
|
||||
this.table3.StylePriority.UseFont = false;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Involved")});
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(680.1274F, 0F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.SizeF = new System.Drawing.SizeF(100F, 13.54835F);
|
||||
this.label1.Text = "label1";
|
||||
this.label1.Visible = false;
|
||||
//
|
||||
// tableRow4
|
||||
//
|
||||
this.tableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell11,
|
||||
this.tableCell16,
|
||||
this.tableCell22,
|
||||
this.tableCell21,
|
||||
this.tableCell17,
|
||||
this.tableCell24,
|
||||
this.tableCell25,
|
||||
this.tableCell13});
|
||||
this.tableRow4.Name = "tableRow4";
|
||||
this.tableRow4.Weight = 0.96000036621107721D;
|
||||
//
|
||||
// tableCell11
|
||||
//
|
||||
this.tableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "RowIndex")});
|
||||
this.tableCell11.Name = "tableCell11";
|
||||
this.tableCell11.StylePriority.UseBorders = false;
|
||||
this.tableCell11.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell11.Text = "tableCell11";
|
||||
this.tableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell11.Weight = 0.20130804947782355D;
|
||||
//
|
||||
// tableCell16
|
||||
//
|
||||
this.tableCell16.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "City")});
|
||||
this.tableCell16.Name = "tableCell16";
|
||||
this.tableCell16.StylePriority.UseBorders = false;
|
||||
this.tableCell16.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell16.Text = "tableCell16";
|
||||
this.tableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell16.Weight = 0.71742591232024422D;
|
||||
//
|
||||
// tableCell22
|
||||
//
|
||||
this.tableCell22.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "LotNumber")});
|
||||
this.tableCell22.Name = "tableCell22";
|
||||
this.tableCell22.StylePriority.UseBorders = false;
|
||||
this.tableCell22.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell22.Text = "tableCell22";
|
||||
this.tableCell22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell22.Weight = 0.43209921699088938D;
|
||||
//
|
||||
// tableCell21
|
||||
//
|
||||
this.tableCell21.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell21.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BlockNumber")});
|
||||
this.tableCell21.Name = "tableCell21";
|
||||
this.tableCell21.StylePriority.UseBorders = false;
|
||||
this.tableCell21.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell21.Text = "tableCell21";
|
||||
this.tableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell21.Weight = 0.43209844759772492D;
|
||||
//
|
||||
// tableCell17
|
||||
//
|
||||
this.tableCell17.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Area", "{0:n}")});
|
||||
this.tableCell17.Name = "tableCell17";
|
||||
this.tableCell17.StylePriority.UseBorders = false;
|
||||
this.tableCell17.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell17.Text = "tableCell17";
|
||||
this.tableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell17.Weight = 0.1766053883531912D;
|
||||
//
|
||||
// tableCell24
|
||||
//
|
||||
this.tableCell24.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Products.ShortName")});
|
||||
this.tableCell24.Name = "tableCell24";
|
||||
this.tableCell24.StylePriority.UseBorders = false;
|
||||
this.tableCell24.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell24.Text = "tableCell24";
|
||||
this.tableCell24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell24.Weight = 0.42398154430804452D;
|
||||
//
|
||||
// tableCell25
|
||||
//
|
||||
this.tableCell25.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "OwnerState")});
|
||||
this.tableCell25.Name = "tableCell25";
|
||||
this.tableCell25.StylePriority.UseBorders = false;
|
||||
this.tableCell25.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell25.Text = "tableCell25";
|
||||
this.tableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell25.Weight = 0.26149449622728926D;
|
||||
//
|
||||
// tableCell13
|
||||
//
|
||||
this.tableCell13.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DueDateRent", "{0:yyyy.MM.dd.}")});
|
||||
this.tableCell13.Name = "tableCell13";
|
||||
this.tableCell13.StylePriority.UseBorders = false;
|
||||
this.tableCell13.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell13.Text = "tableCell13";
|
||||
this.tableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell13.Weight = 0.35498694472479281D;
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.Transparent;
|
||||
this.Title.BorderColor = System.Drawing.Color.Black;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
|
||||
this.FieldCaption.BorderColor = System.Drawing.Color.Black;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.Transparent;
|
||||
this.PageInfo.BorderColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.Transparent;
|
||||
this.DataField.BorderColor = System.Drawing.Color.Black;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.Color.Black;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// PageBelow1
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1});
|
||||
this.DisplayName = "Termeltetés területei és termények - bevont -alriport";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.FilterString = "[Involved] = True";
|
||||
this.Margins = new System.Drawing.Printing.Margins(50, 51, 0, 0);
|
||||
this.Name = "PageBelow1";
|
||||
this.PageHeight = 1100;
|
||||
this.PageWidth = 850;
|
||||
this.ScriptLanguage = DevExpress.XtraReports.ScriptLanguage.VisualBasic;
|
||||
this.ScriptsSource = "\r\n\r\n";
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "12.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.table3)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
+475
@@ -0,0 +1,475 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v12.1, Version=12.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Xpo.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraReports.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Utils.v12.1.UI.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraBars.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraTreeList.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraRichEdit.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.RichEdit.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Office.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraPrinting.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Reports.v12.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraCharts.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraNavBar.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraVerticalGrid.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.CodeParser.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Client\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Client.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Design\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Entity\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Entity.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class PageBelow2 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table3;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow4;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell11;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell16;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell21;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell17;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell25;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell13;
|
||||
private DevExpress.XtraReports.UI.ReportHeaderBand reportHeaderBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table1;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell3;
|
||||
private DevExpress.XtraReports.UI.XRTable table2;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow3;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell4;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell6;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell5;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell9;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell10;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell2;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public PageBelow2() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAGAAAAAAAAAFBBRFBBRFAFQIOWxnS43uPx3+CsE1HiAYdpRdUcG3krAAAAYwAAADwAAADJAAAAAAAAAJQAAADGAQAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQwBsAGEAcwBzAE4AYQBtAGUAAAAAAAxGAGkAbAB0AGUAcgAqAAAAIkYAaQBsAHQAZQByAEQAZQBzAGMAcgBpAHAAdABpAG8AbgA+AAAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlAHcAQAAAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQBUAAAAFFIAZQBwAG8AcgB0AE4AYQBtAGUAVQAAAAEoU0lTQnVzaW5lc3MuTW9kdWxlLkFQQ1NoZWV0QnlUZXJyaXRvcmlhbAESW0ludm9sdmVkXSA9IEZhbHNlAQABEltJbnZvbHZlZF0gPSBGYWxzZQABPVRlcm1lbHRldMOpcyB0ZXLDvGxldGVpIMOpcyB0ZXJtw6lueWVrIC0gbmVtIGJldm9udCAtYWxyaXBvcnQ=";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.table3 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.table1 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.table2 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table3)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table3});
|
||||
this.detailBand1.HeightF = 24F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
this.detailBand1.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("RowIndex", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
|
||||
//
|
||||
// reportHeaderBand1
|
||||
//
|
||||
this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table1,
|
||||
this.table2});
|
||||
this.reportHeaderBand1.HeightF = 56F;
|
||||
this.reportHeaderBand1.Name = "reportHeaderBand1";
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 0F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 0F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// table3
|
||||
//
|
||||
this.table3.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)));
|
||||
this.table3.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.table3.LocationFloat = new DevExpress.Utils.PointFloat(10.49999F, 0F);
|
||||
this.table3.Name = "table3";
|
||||
this.table3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow4});
|
||||
this.table3.SizeF = new System.Drawing.SizeF(728.9999F, 24F);
|
||||
this.table3.StylePriority.UseBorders = false;
|
||||
this.table3.StylePriority.UseFont = false;
|
||||
//
|
||||
// tableRow4
|
||||
//
|
||||
this.tableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell11,
|
||||
this.tableCell16,
|
||||
this.tableCell21,
|
||||
this.tableCell17,
|
||||
this.tableCell25,
|
||||
this.tableCell13});
|
||||
this.tableRow4.Name = "tableRow4";
|
||||
this.tableRow4.Weight = 0.96000036621107721D;
|
||||
//
|
||||
// tableCell11
|
||||
//
|
||||
this.tableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "RowIndex")});
|
||||
this.tableCell11.Name = "tableCell11";
|
||||
this.tableCell11.StylePriority.UseBorders = false;
|
||||
this.tableCell11.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell11.Text = "tableCell11";
|
||||
this.tableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell11.Weight = 0.20130804947782355D;
|
||||
//
|
||||
// tableCell16
|
||||
//
|
||||
this.tableCell16.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "City")});
|
||||
this.tableCell16.Name = "tableCell16";
|
||||
this.tableCell16.StylePriority.UseBorders = false;
|
||||
this.tableCell16.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell16.Text = "tableCell16";
|
||||
this.tableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell16.Weight = 0.71742591232024422D;
|
||||
//
|
||||
// tableCell21
|
||||
//
|
||||
this.tableCell21.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell21.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "LotNumber")});
|
||||
this.tableCell21.Name = "tableCell21";
|
||||
this.tableCell21.StylePriority.UseBorders = false;
|
||||
this.tableCell21.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell21.Text = "tableCell21";
|
||||
this.tableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell21.Weight = 0.86419766458861424D;
|
||||
//
|
||||
// tableCell17
|
||||
//
|
||||
this.tableCell17.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Area", "{0:n}")});
|
||||
this.tableCell17.Name = "tableCell17";
|
||||
this.tableCell17.StylePriority.UseBorders = false;
|
||||
this.tableCell17.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell17.Text = "tableCell17";
|
||||
this.tableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell17.Weight = 0.1766053883531912D;
|
||||
//
|
||||
// tableCell25
|
||||
//
|
||||
this.tableCell25.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "OwnerState")});
|
||||
this.tableCell25.Name = "tableCell25";
|
||||
this.tableCell25.StylePriority.UseBorders = false;
|
||||
this.tableCell25.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell25.Text = "tableCell25";
|
||||
this.tableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell25.Weight = 0.46787587630133864D;
|
||||
//
|
||||
// tableCell13
|
||||
//
|
||||
this.tableCell13.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DueDateRent", "{0:yyyy.MM.dd.}")});
|
||||
this.tableCell13.Name = "tableCell13";
|
||||
this.tableCell13.StylePriority.UseBorders = false;
|
||||
this.tableCell13.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell13.Text = "tableCell13";
|
||||
this.tableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell13.Weight = 0.57258710895878806D;
|
||||
//
|
||||
// table1
|
||||
//
|
||||
this.table1.LocationFloat = new DevExpress.Utils.PointFloat(10.5F, 0F);
|
||||
this.table1.Name = "table1";
|
||||
this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow1});
|
||||
this.table1.SizeF = new System.Drawing.SizeF(729F, 26F);
|
||||
//
|
||||
// table2
|
||||
//
|
||||
this.table2.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.table2.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.table2.LocationFloat = new DevExpress.Utils.PointFloat(10.5F, 26F);
|
||||
this.table2.Name = "table2";
|
||||
this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow3});
|
||||
this.table2.SizeF = new System.Drawing.SizeF(728.9999F, 30F);
|
||||
this.table2.StylePriority.UseBorders = false;
|
||||
this.table2.StylePriority.UseFont = false;
|
||||
//
|
||||
// tableRow1
|
||||
//
|
||||
this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell3});
|
||||
this.tableRow1.Name = "tableRow1";
|
||||
this.tableRow1.Weight = 1.04D;
|
||||
//
|
||||
// tableCell3
|
||||
//
|
||||
this.tableCell3.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.tableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.tableCell3.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.tableCell3.Name = "tableCell3";
|
||||
this.tableCell3.StylePriority.UseBackColor = false;
|
||||
this.tableCell3.StylePriority.UseBorders = false;
|
||||
this.tableCell3.StylePriority.UseFont = false;
|
||||
this.tableCell3.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell3.Text = "Termeltetésbe be NEM vont területek";
|
||||
this.tableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell3.Weight = 7.29D;
|
||||
//
|
||||
// tableRow3
|
||||
//
|
||||
this.tableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell4,
|
||||
this.tableCell6,
|
||||
this.tableCell5,
|
||||
this.tableCell9,
|
||||
this.tableCell10,
|
||||
this.tableCell2});
|
||||
this.tableRow3.Name = "tableRow3";
|
||||
this.tableRow3.Weight = 1.2000004577638466D;
|
||||
//
|
||||
// tableCell4
|
||||
//
|
||||
this.tableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell4.Name = "tableCell4";
|
||||
this.tableCell4.StylePriority.UseBorders = false;
|
||||
this.tableCell4.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell4.Text = "Sorszám";
|
||||
this.tableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell4.Weight = 0.20130790582197877D;
|
||||
//
|
||||
// tableCell6
|
||||
//
|
||||
this.tableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell6.Name = "tableCell6";
|
||||
this.tableCell6.StylePriority.UseBorders = false;
|
||||
this.tableCell6.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell6.Text = "Helység";
|
||||
this.tableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell6.Weight = 0.71742610739961932D;
|
||||
//
|
||||
// tableCell5
|
||||
//
|
||||
this.tableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell5.Name = "tableCell5";
|
||||
this.tableCell5.StylePriority.UseBorders = false;
|
||||
this.tableCell5.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell5.Text = "Helyzajzi szám";
|
||||
this.tableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell5.Weight = 0.864197705784546D;
|
||||
//
|
||||
// tableCell9
|
||||
//
|
||||
this.tableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell9.Multiline = true;
|
||||
this.tableCell9.Name = "tableCell9";
|
||||
this.tableCell9.StylePriority.UseBorders = false;
|
||||
this.tableCell9.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell9.Text = "Terület\r\nhektár";
|
||||
this.tableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell9.Weight = 0.17660537917582411D;
|
||||
//
|
||||
// tableCell10
|
||||
//
|
||||
this.tableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell10.Name = "tableCell10";
|
||||
this.tableCell10.StylePriority.UseBorders = false;
|
||||
this.tableCell10.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell10.Text = "Saját / Bérelt";
|
||||
this.tableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell10.Weight = 0.46787599344085751D;
|
||||
//
|
||||
// tableCell2
|
||||
//
|
||||
this.tableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell2.Name = "tableCell2";
|
||||
this.tableCell2.StylePriority.UseBorders = false;
|
||||
this.tableCell2.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell2.Text = "Lejárat";
|
||||
this.tableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell2.Weight = 0.57258690837717441D;
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.Transparent;
|
||||
this.Title.BorderColor = System.Drawing.Color.Black;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
|
||||
this.FieldCaption.BorderColor = System.Drawing.Color.Black;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.Transparent;
|
||||
this.PageInfo.BorderColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.Transparent;
|
||||
this.DataField.BorderColor = System.Drawing.Color.Black;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.Color.Black;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// PageBelow2
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.reportHeaderBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1});
|
||||
this.DisplayName = "Termeltetés területei és termények - nem bevont -alriport";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.FilterString = "[Involved] = False";
|
||||
this.Margins = new System.Drawing.Printing.Margins(50, 50, 0, 0);
|
||||
this.Name = "PageBelow2";
|
||||
this.PageHeight = 1100;
|
||||
this.PageWidth = 850;
|
||||
this.ScriptLanguage = DevExpress.XtraReports.ScriptLanguage.VisualBasic;
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "12.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.table3)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
+431
@@ -0,0 +1,431 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v12.1, Version=12.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Xpo.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraReports.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Utils.v12.1.UI.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraBars.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraTreeList.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraRichEdit.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.RichEdit.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Office.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraPrinting.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Reports.v12.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraCharts.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraNavBar.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraVerticalGrid.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.CodeParser.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Client\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Client.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Design\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Entity\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Entity.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class PageBelow3 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table4;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow5;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell5;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell22;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell10;
|
||||
private DevExpress.XtraReports.UI.ReportHeaderBand reportHeaderBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table1;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell3;
|
||||
private DevExpress.XtraReports.UI.XRTable table2;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow3;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell4;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell6;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private DevExpress.XtraReports.UI.CalculatedField Year_plus_1;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public PageBelow3() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAGAAAAAAAAAFBBRFBBRFAFQIOWxnS43uPx3+CsE1HiAYdpRdUcG3krAAAAYwAAADwAAADJAAAAAAAAAJQAAADGAQAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQwBsAGEAcwBzAE4AYQBtAGUAAAAAAAxGAGkAbAB0AGUAcgApAAAAIkYAaQBsAHQAZQByAEQAZQBzAGMAcgBpAHAAdABpAG8AbgArAAAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlAHcALQAAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQAvAAAAFFIAZQBwAG8AcgB0AE4AYQBtAGUAMAAAAAEnU0lTQnVzaW5lc3MuTW9kdWxlLkFQQ1NoZWV0UHJlc2VudGF0aW9uAQABAAEAAAE9VGVybWVsdGV0w6lzIHRlcsO8bGV0ZWkgw6lzIHRlcm3DqW55ZWsgLSB0ZXJtw6lueWVrIC1hbHJpcG9ydA==";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.table4 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.table1 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.table2 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.Year_plus_1 = new DevExpress.XtraReports.UI.CalculatedField();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table4)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table4});
|
||||
this.detailBand1.HeightF = 24F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
this.detailBand1.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("RowIndex", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
|
||||
//
|
||||
// reportHeaderBand1
|
||||
//
|
||||
this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table1,
|
||||
this.table2});
|
||||
this.reportHeaderBand1.HeightF = 54F;
|
||||
this.reportHeaderBand1.Name = "reportHeaderBand1";
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 0F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 0F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// table4
|
||||
//
|
||||
this.table4.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)));
|
||||
this.table4.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.table4.LocationFloat = new DevExpress.Utils.PointFloat(10.49983F, 0F);
|
||||
this.table4.Name = "table4";
|
||||
this.table4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow5});
|
||||
this.table4.SizeF = new System.Drawing.SizeF(728.9999F, 24F);
|
||||
this.table4.StylePriority.UseBorders = false;
|
||||
this.table4.StylePriority.UseFont = false;
|
||||
//
|
||||
// tableRow5
|
||||
//
|
||||
this.tableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell5,
|
||||
this.tableCell22,
|
||||
this.tableCell10});
|
||||
this.tableRow5.Name = "tableRow5";
|
||||
this.tableRow5.Weight = 0.96000036621107721D;
|
||||
//
|
||||
// tableCell5
|
||||
//
|
||||
this.tableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "RowIndex")});
|
||||
this.tableCell5.Name = "tableCell5";
|
||||
this.tableCell5.StylePriority.UseBorders = false;
|
||||
this.tableCell5.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell5.Text = "tableCell11";
|
||||
this.tableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell5.Weight = 0.20130804947782355D;
|
||||
//
|
||||
// tableCell22
|
||||
//
|
||||
this.tableCell22.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Products.ShortName")});
|
||||
this.tableCell22.Name = "tableCell22";
|
||||
this.tableCell22.StylePriority.UseBorders = false;
|
||||
this.tableCell22.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell22.Text = "tableCell22";
|
||||
this.tableCell22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell22.Weight = 1.1577550810171626D;
|
||||
//
|
||||
// tableCell10
|
||||
//
|
||||
this.tableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Area", "{0:n}")});
|
||||
this.tableCell10.Name = "tableCell10";
|
||||
this.tableCell10.StylePriority.UseBorders = false;
|
||||
this.tableCell10.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell10.Text = "tableCell10";
|
||||
this.tableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell10.Weight = 1.6409368695050135D;
|
||||
//
|
||||
// table1
|
||||
//
|
||||
this.table1.LocationFloat = new DevExpress.Utils.PointFloat(10.4997F, 0F);
|
||||
this.table1.Name = "table1";
|
||||
this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow1});
|
||||
this.table1.SizeF = new System.Drawing.SizeF(729F, 26F);
|
||||
//
|
||||
// table2
|
||||
//
|
||||
this.table2.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.table2.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.table2.LocationFloat = new DevExpress.Utils.PointFloat(10.4997F, 26F);
|
||||
this.table2.Name = "table2";
|
||||
this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow3});
|
||||
this.table2.SizeF = new System.Drawing.SizeF(728.9999F, 28F);
|
||||
this.table2.StylePriority.UseBorders = false;
|
||||
this.table2.StylePriority.UseFont = false;
|
||||
//
|
||||
// tableRow1
|
||||
//
|
||||
this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell3});
|
||||
this.tableRow1.Name = "tableRow1";
|
||||
this.tableRow1.Weight = 1.04D;
|
||||
//
|
||||
// tableCell3
|
||||
//
|
||||
this.tableCell3.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.tableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.tableCell3.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.tableCell3.Name = "tableCell3";
|
||||
this.tableCell3.StylePriority.UseBackColor = false;
|
||||
this.tableCell3.StylePriority.UseBorders = false;
|
||||
this.tableCell3.StylePriority.UseFont = false;
|
||||
this.tableCell3.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell3.Text = "Termények bemutatása";
|
||||
this.tableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell3.Weight = 7.29D;
|
||||
//
|
||||
// tableRow3
|
||||
//
|
||||
this.tableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell4,
|
||||
this.tableCell6,
|
||||
this.tableCell2});
|
||||
this.tableRow3.Name = "tableRow3";
|
||||
this.tableRow3.Weight = 1.1200004272462567D;
|
||||
//
|
||||
// tableCell4
|
||||
//
|
||||
this.tableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell4.Name = "tableCell4";
|
||||
this.tableCell4.StylePriority.UseBorders = false;
|
||||
this.tableCell4.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell4.Text = "Sorszám";
|
||||
this.tableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell4.Weight = 0.20130790582197877D;
|
||||
//
|
||||
// tableCell6
|
||||
//
|
||||
this.tableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell6.Name = "tableCell6";
|
||||
this.tableCell6.StylePriority.UseBorders = false;
|
||||
this.tableCell6.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell6.Text = "Termény megnevezése";
|
||||
this.tableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell6.Weight = 1.1577554620326909D;
|
||||
//
|
||||
// tableCell2
|
||||
//
|
||||
this.tableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label2,
|
||||
this.label1});
|
||||
this.tableCell2.Name = "tableCell2";
|
||||
this.tableCell2.StylePriority.UseBorders = false;
|
||||
this.tableCell2.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell2.Weight = 1.6409366321453305D;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "APCSheetHeader.MaxExpirationDate", "{0:yyyy}")});
|
||||
this.label2.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(85.28654F, 0F);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(38.80212F, 28F);
|
||||
this.label2.StylePriority.UseBorders = false;
|
||||
this.label2.StylePriority.UseFont = false;
|
||||
this.label2.StylePriority.UseTextAlignment = false;
|
||||
this.label2.Text = "label2";
|
||||
this.label2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label1.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(124.0887F, 0F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.SizeF = new System.Drawing.SizeF(206.1199F, 27.99999F);
|
||||
this.label1.StylePriority.UseBorders = false;
|
||||
this.label1.StylePriority.UseFont = false;
|
||||
this.label1.StylePriority.UseTextAlignment = false;
|
||||
this.label1.Text = "-ban tervezett megművelt földterület (ha)";
|
||||
this.label1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.Transparent;
|
||||
this.Title.BorderColor = System.Drawing.Color.Black;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
|
||||
this.FieldCaption.BorderColor = System.Drawing.Color.Black;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.Transparent;
|
||||
this.PageInfo.BorderColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.Transparent;
|
||||
this.DataField.BorderColor = System.Drawing.Color.Black;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.Color.Black;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// Year_plus_1
|
||||
//
|
||||
this.Year_plus_1.Expression = "AddYears(now(),1 )";
|
||||
this.Year_plus_1.Name = "Year_plus_1";
|
||||
//
|
||||
// PageBelow3
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.reportHeaderBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1});
|
||||
this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
|
||||
this.Year_plus_1});
|
||||
this.DisplayName = "Termeltetés területei és termények - termények -alriport";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Margins = new System.Drawing.Printing.Margins(50, 50, 0, 0);
|
||||
this.Name = "PageBelow3";
|
||||
this.PageHeight = 1100;
|
||||
this.PageWidth = 850;
|
||||
this.ScriptLanguage = DevExpress.XtraReports.ScriptLanguage.VisualBasic;
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "12.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.table4)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
+740
@@ -0,0 +1,740 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v12.1, Version=12.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Xpo.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraReports.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Utils.v12.1.UI.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraBars.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraTreeList.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraRichEdit.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.RichEdit.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Office.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraPrinting.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Reports.v12.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraCharts.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraNavBar.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraVerticalGrid.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.CodeParser.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Client\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Client.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Design\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Entity\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Entity.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class Page3 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.PageFooterBand pageFooterBand1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label8;
|
||||
private DevExpress.XtraReports.UI.XRLabel label5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label14;
|
||||
private DevExpress.XtraReports.UI.XRLabel label10;
|
||||
private DevExpress.XtraReports.UI.XRLabel label9;
|
||||
private DevExpress.XtraReports.UI.XRLabel label7;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label4;
|
||||
private DevExpress.XtraReports.UI.XRLabel label3;
|
||||
private DevExpress.XtraReports.UI.ReportHeaderBand reportHeaderBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table1;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell3;
|
||||
private DevExpress.XtraReports.UI.XRTable table4;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow5;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell12;
|
||||
private DevExpress.XtraReports.UI.XRTable table2;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow2;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell19;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell18;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow3;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell4;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell6;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell8;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell5;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell9;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell7;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell10;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label11;
|
||||
private DevExpress.XtraReports.UI.XRLabel label12;
|
||||
private DevExpress.XtraReports.UI.XRLabel label13;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.XRSubreport YYY;
|
||||
private DevExpress.XtraReports.UI.XRSubreport XXX;
|
||||
private DevExpress.XtraReports.UI.XRSubreport ZZZ;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public Page3() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = "zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJza" +
|
||||
"W9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4O" +
|
||||
"SNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAHAAAAAAAAAFBBRFBBRFAFQIOWS" +
|
||||
"F5ywcZ0uN7j8d/grBNR4gGHaUXVHBt5VgAAAAAAAACOAAAAZwAAAPQAAAArAAAAvwAAAPkBAAAmJAB0A" +
|
||||
"GgAaQBzAC4AUwBjAHIAaQBwAHQAcwBTAG8AdQByAGMAZQAAAAAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQ" +
|
||||
"wBsAGEAcwBzAE4AYQBtAGUAowIAAAxGAGkAbAB0AGUAcgDGAgAAIkYAaQBsAHQAZQByAEQAZQBzAGMAc" +
|
||||
"gBpAHAAdABpAG8AbgDIAgAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlA" +
|
||||
"HcAygIAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQDMAgAAF" +
|
||||
"FIAZQBwAG8AcgB0AE4AYQBtAGUAzQIAAAGgBQ0KUHJpdmF0ZSBTdWIgWVlZX0JlZm9yZVByaW50KEJ5V" +
|
||||
"mFsIHNlbmRlciBBcyBPYmplY3QsIEJ5VmFsIGUgQXMgU3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuUHJpb" +
|
||||
"nRFdmVudEFyZ3MpCQ0KCUNUeXBlKHNlbmRlciwgWFJTdWJyZXBvcnQpLlJlcG9ydFNvdXJjZS5GaWx0Z" +
|
||||
"XJTdHJpbmcgPSJBUENTaGVldEhlYWRlci5PaWQ9JyIgJiBsYWJlbDEuVGV4dC5Ub1N0cmluZyAmICInI" +
|
||||
"g0KRW5kIFN1Yg0KDQpQcml2YXRlIFN1YiBYWFhfQmVmb3JlUHJpbnQoQnlWYWwgc2VuZGVyIEFzIE9ia" +
|
||||
"mVjdCwgQnlWYWwgZSBBcyBTeXN0ZW0uRHJhd2luZy5QcmludGluZy5QcmludEV2ZW50QXJncykNCglDV" +
|
||||
"HlwZShzZW5kZXIsIFhSU3VicmVwb3J0KS5SZXBvcnRTb3VyY2UuRmlsdGVyU3RyaW5nID0iQVBDU2hlZ" +
|
||||
"XRIZWFkZXIuT2lkPSciICYgbGFiZWwxLlRleHQuVG9TdHJpbmcgJiAiJyINCkVuZCBTdWINCg0KUHJpd" +
|
||||
"mF0ZSBTdWIgWlpaX0JlZm9yZVByaW50KEJ5VmFsIHNlbmRlciBBcyBPYmplY3QsIEJ5VmFsIGUgQXMgU" +
|
||||
"3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuUHJpbnRFdmVudEFyZ3MpDQoJQ1R5cGUoc2VuZGVyLCBYUlN1Y" +
|
||||
"nJlcG9ydCkuUmVwb3J0U291cmNlLkZpbHRlclN0cmluZyA9IkFQQ1NoZWV0SGVhZGVyLk9pZD0nIiAmI" +
|
||||
"GxhYmVsMS5UZXh0LlRvU3RyaW5nICYgIiciDQpFbmQgU3ViDQoNCgEhU0lTQnVzaW5lc3MuTW9kdWxlL" +
|
||||
"kFQQ1NoZWV0SGVhZGVyAQABAAEAAAEmVGVybWVsdGV0w6lzIHRlcsO8bGV0ZWkgw6lzIHRlcm3DqW55Z" +
|
||||
"Ws=";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.pageFooterBand1 = new DevExpress.XtraReports.UI.PageFooterBand();
|
||||
this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.label8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label14 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.table1 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.table4 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.table2 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.label11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label13 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.YYY = new DevExpress.XtraReports.UI.XRSubreport();
|
||||
this.XXX = new DevExpress.XtraReports.UI.XRSubreport();
|
||||
this.ZZZ = new DevExpress.XtraReports.UI.XRSubreport();
|
||||
this.tableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table4)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.HeightF = 0F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
//
|
||||
// pageFooterBand1
|
||||
//
|
||||
this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label8,
|
||||
this.label5,
|
||||
this.label14,
|
||||
this.label10,
|
||||
this.label9,
|
||||
this.label7,
|
||||
this.label6,
|
||||
this.label4,
|
||||
this.label3});
|
||||
this.pageFooterBand1.HeightF = 88.02778F;
|
||||
this.pageFooterBand1.Name = "pageFooterBand1";
|
||||
//
|
||||
// reportHeaderBand1
|
||||
//
|
||||
this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table1,
|
||||
this.table4,
|
||||
this.table2,
|
||||
this.label11,
|
||||
this.label12,
|
||||
this.label13,
|
||||
this.label1,
|
||||
this.label2,
|
||||
this.YYY,
|
||||
this.XXX,
|
||||
this.ZZZ});
|
||||
this.reportHeaderBand1.HeightF = 286.2326F;
|
||||
this.reportHeaderBand1.Name = "reportHeaderBand1";
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 24.30556F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 28.63888F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// label8
|
||||
//
|
||||
this.label8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "APCSheetAdministrator.FullName")});
|
||||
this.label8.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label8.LocationFloat = new DevExpress.Utils.PointFloat(183.6165F, 44.93917F);
|
||||
this.label8.Name = "label8";
|
||||
this.label8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label8.SizeF = new System.Drawing.SizeF(177.1074F, 17.25006F);
|
||||
this.label8.StylePriority.UseFont = false;
|
||||
this.label8.StylePriority.UseTextAlignment = false;
|
||||
this.label8.Text = "label8";
|
||||
this.label8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label5
|
||||
//
|
||||
this.label5.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(212.4319F, 62.18924F);
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label5.SizeF = new System.Drawing.SizeF(118.8802F, 15.83854F);
|
||||
this.label5.StylePriority.UseFont = false;
|
||||
this.label5.StylePriority.UseTextAlignment = false;
|
||||
this.label5.Text = " termeltetési ügyintéző ";
|
||||
this.label5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label14
|
||||
//
|
||||
this.label14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DateSigned", "{0:yyyy.MM.dd.}")});
|
||||
this.label14.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label14.LocationFloat = new DevExpress.Utils.PointFloat(78.38761F, 34.93923F);
|
||||
this.label14.Name = "label14";
|
||||
this.label14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label14.SizeF = new System.Drawing.SizeF(105.2289F, 15.83854F);
|
||||
this.label14.StylePriority.UseFont = false;
|
||||
this.label14.StylePriority.UseTextAlignment = false;
|
||||
this.label14.Text = "label14";
|
||||
this.label14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label10
|
||||
//
|
||||
this.label10.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label10.LocationFloat = new DevExpress.Utils.PointFloat(610.9601F, 44.93916F);
|
||||
this.label10.Name = "label10";
|
||||
this.label10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label10.SizeF = new System.Drawing.SizeF(118.8802F, 17.25006F);
|
||||
this.label10.StylePriority.UseFont = false;
|
||||
this.label10.StylePriority.UseTextAlignment = false;
|
||||
this.label10.Text = "Kalócz Mária";
|
||||
this.label10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label9
|
||||
//
|
||||
this.label9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "HRPerson.FullName")});
|
||||
this.label9.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label9.LocationFloat = new DevExpress.Utils.PointFloat(387.403F, 44.93916F);
|
||||
this.label9.Name = "label9";
|
||||
this.label9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label9.SizeF = new System.Drawing.SizeF(161.5296F, 17.25006F);
|
||||
this.label9.StylePriority.UseFont = false;
|
||||
this.label9.StylePriority.UseTextAlignment = false;
|
||||
this.label9.Text = "label9";
|
||||
this.label9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label7
|
||||
//
|
||||
this.label7.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label7.LocationFloat = new DevExpress.Utils.PointFloat(610.9601F, 62.18922F);
|
||||
this.label7.Name = "label7";
|
||||
this.label7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label7.SizeF = new System.Drawing.SizeF(118.8802F, 15.83854F);
|
||||
this.label7.StylePriority.UseFont = false;
|
||||
this.label7.StylePriority.UseTextAlignment = false;
|
||||
this.label7.Text = "creditmenedzser";
|
||||
this.label7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(439.7988F, 62.18922F);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label6.SizeF = new System.Drawing.SizeF(50.52081F, 15.83854F);
|
||||
this.label6.StylePriority.UseFont = false;
|
||||
this.label6.StylePriority.UseTextAlignment = false;
|
||||
this.label6.Text = "üzletkötő";
|
||||
this.label6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(22.54867F, 62.18922F);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label4.SizeF = new System.Drawing.SizeF(55.72917F, 15.83854F);
|
||||
this.label4.StylePriority.UseFont = false;
|
||||
this.label4.StylePriority.UseTextAlignment = false;
|
||||
this.label4.Text = "Aláírás:";
|
||||
this.label4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label3.LocationFloat = new DevExpress.Utils.PointFloat(22.65845F, 34.93923F);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label3.SizeF = new System.Drawing.SizeF(55.72917F, 15.83854F);
|
||||
this.label3.StylePriority.UseFont = false;
|
||||
this.label3.StylePriority.UseTextAlignment = false;
|
||||
this.label3.Text = "Dátum:";
|
||||
this.label3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// table1
|
||||
//
|
||||
this.table1.LocationFloat = new DevExpress.Utils.PointFloat(11F, 51.49208F);
|
||||
this.table1.Name = "table1";
|
||||
this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow1});
|
||||
this.table1.SizeF = new System.Drawing.SizeF(729F, 27.78F);
|
||||
//
|
||||
// table4
|
||||
//
|
||||
this.table4.LocationFloat = new DevExpress.Utils.PointFloat(11F, 23.71208F);
|
||||
this.table4.Name = "table4";
|
||||
this.table4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow5});
|
||||
this.table4.SizeF = new System.Drawing.SizeF(729F, 27.78F);
|
||||
//
|
||||
// table2
|
||||
//
|
||||
this.table2.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.table2.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.table2.LocationFloat = new DevExpress.Utils.PointFloat(11F, 79.27209F);
|
||||
this.table2.Name = "table2";
|
||||
this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow2,
|
||||
this.tableRow3});
|
||||
this.table2.SizeF = new System.Drawing.SizeF(728.9999F, 62.78001F);
|
||||
this.table2.StylePriority.UseBorders = false;
|
||||
this.table2.StylePriority.UseFont = false;
|
||||
//
|
||||
// label11
|
||||
//
|
||||
this.label11.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label11.LocationFloat = new DevExpress.Utils.PointFloat(337.1346F, 0F);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label11.SizeF = new System.Drawing.SizeF(100F, 16.42036F);
|
||||
this.label11.StylePriority.UseFont = false;
|
||||
this.label11.StylePriority.UseTextAlignment = false;
|
||||
this.label11.Text = "3. számú melléklet";
|
||||
this.label11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label12
|
||||
//
|
||||
this.label12.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label12.LocationFloat = new DevExpress.Utils.PointFloat(509.7975F, 0F);
|
||||
this.label12.Name = "label12";
|
||||
this.label12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label12.SizeF = new System.Drawing.SizeF(53.86908F, 16.42036F);
|
||||
this.label12.StylePriority.UseFont = false;
|
||||
this.label12.StylePriority.UseTextAlignment = false;
|
||||
this.label12.Text = "Hatályos:";
|
||||
this.label12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label13
|
||||
//
|
||||
this.label13.BackColor = System.Drawing.Color.Transparent;
|
||||
this.label13.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.label13.LocationFloat = new DevExpress.Utils.PointFloat(568.9529F, 0F);
|
||||
this.label13.Name = "label13";
|
||||
this.label13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label13.SizeF = new System.Drawing.SizeF(128.2458F, 16.42036F);
|
||||
this.label13.StylePriority.UseBackColor = false;
|
||||
this.label13.StylePriority.UseFont = false;
|
||||
this.label13.StylePriority.UseTextAlignment = false;
|
||||
this.label13.Text = "2012. augusztus 27-től";
|
||||
this.label13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Oid")});
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(134.2523F, 7.291714F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.SizeF = new System.Drawing.SizeF(100F, 16.42036F);
|
||||
this.label1.Text = "label1";
|
||||
this.label1.Visible = false;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "APCSheetByTerritorial.Involved")});
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(19.25227F, 7.291714F);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(100F, 16.42036F);
|
||||
this.label2.Text = "label2";
|
||||
this.label2.Visible = false;
|
||||
//
|
||||
// YYY
|
||||
//
|
||||
this.YYY.LocationFloat = new DevExpress.Utils.PointFloat(0.8403778F, 142.0521F);
|
||||
this.YYY.Name = "YYY";
|
||||
this.YYY.ReportSourceUrl = "Termeltetés területei és termények - bevont -alriport";
|
||||
this.YYY.Scripts.OnBeforePrint = "YYY_BeforePrint";
|
||||
this.YYY.SizeF = new System.Drawing.SizeF(750.1596F, 46.875F);
|
||||
//
|
||||
// XXX
|
||||
//
|
||||
this.XXX.LocationFloat = new DevExpress.Utils.PointFloat(0F, 188.9271F);
|
||||
this.XXX.Name = "XXX";
|
||||
this.XXX.ReportSourceUrl = "Termeltetés területei és termények - nem bevont -alriport";
|
||||
this.XXX.Scripts.OnBeforePrint = "XXX_BeforePrint";
|
||||
this.XXX.SizeF = new System.Drawing.SizeF(750.1596F, 58.76382F);
|
||||
//
|
||||
// ZZZ
|
||||
//
|
||||
this.ZZZ.LocationFloat = new DevExpress.Utils.PointFloat(0.8403778F, 247.6909F);
|
||||
this.ZZZ.Name = "ZZZ";
|
||||
this.ZZZ.ReportSourceUrl = "Termeltetés területei és termények - termények -alriport";
|
||||
this.ZZZ.Scripts.OnBeforePrint = "ZZZ_BeforePrint";
|
||||
this.ZZZ.SizeF = new System.Drawing.SizeF(750.1596F, 38.54166F);
|
||||
//
|
||||
// tableRow1
|
||||
//
|
||||
this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell3});
|
||||
this.tableRow1.Name = "tableRow1";
|
||||
this.tableRow1.Weight = 1.1112000274658203D;
|
||||
//
|
||||
// tableCell3
|
||||
//
|
||||
this.tableCell3.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.tableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.tableCell3.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.tableCell3.Name = "tableCell3";
|
||||
this.tableCell3.StylePriority.UseBackColor = false;
|
||||
this.tableCell3.StylePriority.UseBorders = false;
|
||||
this.tableCell3.StylePriority.UseFont = false;
|
||||
this.tableCell3.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell3.Text = "Termeltetésbe bevont területek";
|
||||
this.tableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell3.Weight = 7.29D;
|
||||
//
|
||||
// tableRow5
|
||||
//
|
||||
this.tableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell12});
|
||||
this.tableRow5.Name = "tableRow5";
|
||||
this.tableRow5.Weight = 1.1112000274658203D;
|
||||
//
|
||||
// tableCell12
|
||||
//
|
||||
this.tableCell12.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.tableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.tableCell12.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.tableCell12.Name = "tableCell12";
|
||||
this.tableCell12.StylePriority.UseBackColor = false;
|
||||
this.tableCell12.StylePriority.UseBorders = false;
|
||||
this.tableCell12.StylePriority.UseFont = false;
|
||||
this.tableCell12.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell12.Text = "2012 / 2013 termeltetési terv";
|
||||
this.tableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell12.Weight = 7.29D;
|
||||
//
|
||||
// tableRow2
|
||||
//
|
||||
this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell19,
|
||||
this.tableCell18});
|
||||
this.tableRow2.Name = "tableRow2";
|
||||
this.tableRow2.Weight = 1.1112006039431015D;
|
||||
//
|
||||
// tableRow3
|
||||
//
|
||||
this.tableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell4,
|
||||
this.tableCell6,
|
||||
this.tableCell8,
|
||||
this.tableCell5,
|
||||
this.tableCell9,
|
||||
this.tableCell7,
|
||||
this.tableCell10,
|
||||
this.tableCell2});
|
||||
this.tableRow3.Name = "tableRow3";
|
||||
this.tableRow3.Weight = 1.400000534057821D;
|
||||
//
|
||||
// tableCell19
|
||||
//
|
||||
this.tableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)));
|
||||
this.tableCell19.Name = "tableCell19";
|
||||
this.tableCell19.StylePriority.UseBorders = false;
|
||||
this.tableCell19.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell19.Text = "Partner neve:";
|
||||
this.tableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell19.Weight = 0.44548287495827249D;
|
||||
//
|
||||
// tableCell18
|
||||
//
|
||||
this.tableCell18.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.tableCell18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Customers.FullName")});
|
||||
this.tableCell18.Name = "tableCell18";
|
||||
this.tableCell18.StylePriority.UseBorders = false;
|
||||
this.tableCell18.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell18.Text = "tableCell18";
|
||||
this.tableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell18.Weight = 2.5545171250417278D;
|
||||
//
|
||||
// tableCell4
|
||||
//
|
||||
this.tableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell4.Name = "tableCell4";
|
||||
this.tableCell4.StylePriority.UseBorders = false;
|
||||
this.tableCell4.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell4.Text = "Sorszám";
|
||||
this.tableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell4.Weight = 0.20130790582197877D;
|
||||
//
|
||||
// tableCell6
|
||||
//
|
||||
this.tableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell6.Name = "tableCell6";
|
||||
this.tableCell6.StylePriority.UseBorders = false;
|
||||
this.tableCell6.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell6.Text = "Helység";
|
||||
this.tableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell6.Weight = 0.71742610739961932D;
|
||||
//
|
||||
// tableCell8
|
||||
//
|
||||
this.tableCell8.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell8.Name = "tableCell8";
|
||||
this.tableCell8.StylePriority.UseBorders = false;
|
||||
this.tableCell8.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell8.Text = "Helyzajzi szám";
|
||||
this.tableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell8.Weight = 0.43209885289227307D;
|
||||
//
|
||||
// tableCell5
|
||||
//
|
||||
this.tableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell5.Name = "tableCell5";
|
||||
this.tableCell5.StylePriority.UseBorders = false;
|
||||
this.tableCell5.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell5.Text = "Blokkszám";
|
||||
this.tableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell5.Weight = 0.43209885289227296D;
|
||||
//
|
||||
// tableCell9
|
||||
//
|
||||
this.tableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell9.Multiline = true;
|
||||
this.tableCell9.Name = "tableCell9";
|
||||
this.tableCell9.StylePriority.UseBorders = false;
|
||||
this.tableCell9.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell9.Text = "Terület\r\nhektár";
|
||||
this.tableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell9.Weight = 0.17660537917582411D;
|
||||
//
|
||||
// tableCell7
|
||||
//
|
||||
this.tableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell7.Name = "tableCell7";
|
||||
this.tableCell7.StylePriority.UseBorders = false;
|
||||
this.tableCell7.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell7.Text = "Növény";
|
||||
this.tableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell7.Weight = 0.42398166240043006D;
|
||||
//
|
||||
// tableCell10
|
||||
//
|
||||
this.tableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell10.Name = "tableCell10";
|
||||
this.tableCell10.StylePriority.UseBorders = false;
|
||||
this.tableCell10.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell10.Text = "Saját / Bérelt";
|
||||
this.tableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell10.Weight = 0.26148152844121691D;
|
||||
//
|
||||
// tableCell2
|
||||
//
|
||||
this.tableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell2.Name = "tableCell2";
|
||||
this.tableCell2.StylePriority.UseBorders = false;
|
||||
this.tableCell2.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell2.Text = "Lejárat";
|
||||
this.tableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell2.Weight = 0.354999710976385D;
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.Transparent;
|
||||
this.Title.BorderColor = System.Drawing.Color.Black;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
|
||||
this.FieldCaption.BorderColor = System.Drawing.Color.Black;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.Transparent;
|
||||
this.PageInfo.BorderColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.Transparent;
|
||||
this.DataField.BorderColor = System.Drawing.Color.Black;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.Color.Black;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// Page3
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.pageFooterBand1,
|
||||
this.reportHeaderBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1});
|
||||
this.DisplayName = "Termeltetés területei és termények";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Margins = new System.Drawing.Printing.Margins(49, 50, 24, 29);
|
||||
this.Name = "Page3";
|
||||
this.PageHeight = 1100;
|
||||
this.PageWidth = 850;
|
||||
this.ScriptLanguage = DevExpress.XtraReports.ScriptLanguage.VisualBasic;
|
||||
this.ScriptsSource = resources.GetString("$this.ScriptsSource");
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "12.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table4)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
+314
@@ -0,0 +1,314 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v12.1, Version=12.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Xpo.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraReports.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Utils.v12.1.UI.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraBars.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraTreeList.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraRichEdit.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.RichEdit.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Office.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraPrinting.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Reports.v12.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraCharts.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraNavBar.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraVerticalGrid.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.CodeParser.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Client\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Client.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Design\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Entity\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Entity.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class MainReport : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.ReportHeaderBand ReportHeader;
|
||||
private DevExpress.XtraReports.UI.XRSubreport subreport1;
|
||||
private DevExpress.XtraReports.UI.XRPageBreak pageBreak3;
|
||||
private DevExpress.XtraReports.UI.XRPageBreak pageBreak2;
|
||||
private DevExpress.XtraReports.UI.XRPageBreak pageBreak1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.XRSubreport subreport4;
|
||||
private DevExpress.XtraReports.UI.XRSubreport subreport3;
|
||||
private DevExpress.XtraReports.UI.XRSubreport subreport2;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public MainReport() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = "zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJza" +
|
||||
"W9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4O" +
|
||||
"SNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAHAAAAAAAAAFBBRFBBRFAFQIOWS" +
|
||||
"F5ywcZ0uN7j8d/grBNR4gGHaUXVHBt5VgAAAAAAAACOAAAAZwAAAPQAAAArAAAAvwAAAPkBAAAmJAB0A" +
|
||||
"GgAaQBzAC4AUwBjAHIAaQBwAHQAcwBTAG8AdQByAGMAZQAAAAAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQ" +
|
||||
"wBsAGEAcwBzAE4AYQBtAGUAYwMAAAxGAGkAbAB0AGUAcgCGAwAAIkYAaQBsAHQAZQByAEQAZQBzAGMAc" +
|
||||
"gBpAHAAdABpAG8AbgCIAwAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlA" +
|
||||
"HcAigMAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQCMAwAAF" +
|
||||
"FIAZQBwAG8AcgB0AE4AYQBtAGUAjQMAAAHgBg0KUHJpdmF0ZSBTdWIgc3VicmVwb3J0MV9CZWZvcmVQc" +
|
||||
"mludChCeVZhbCBzZW5kZXIgQXMgT2JqZWN0LCBCeVZhbCBlIEFzIFN5c3RlbS5EcmF3aW5nLlByaW50a" +
|
||||
"W5nLlByaW50RXZlbnRBcmdzKQ0KCUNUeXBlKHNlbmRlciwgWFJTdWJyZXBvcnQpLlJlcG9ydFNvdXJjZ" +
|
||||
"S5GaWx0ZXJTdHJpbmcgPSJPaWQ9JyIgJiBsYWJlbDEuVGV4dC5Ub1N0cmluZyAmICInIiANCkVuZCBTd" +
|
||||
"WINCg0KUHJpdmF0ZSBTdWIgc3VicmVwb3J0Ml9CZWZvcmVQcmludChCeVZhbCBzZW5kZXIgQXMgT2JqZ" +
|
||||
"WN0LCBCeVZhbCBlIEFzIFN5c3RlbS5EcmF3aW5nLlByaW50aW5nLlByaW50RXZlbnRBcmdzKQ0KCUNUe" +
|
||||
"XBlKHNlbmRlciwgWFJTdWJyZXBvcnQpLlJlcG9ydFNvdXJjZS5GaWx0ZXJTdHJpbmcgPSJPaWQ9JyIgJ" +
|
||||
"iBsYWJlbDEuVGV4dC5Ub1N0cmluZyAmICInIiANCkVuZCBTdWINCg0KUHJpdmF0ZSBTdWIgc3VicmVwb" +
|
||||
"3J0M19CZWZvcmVQcmludChCeVZhbCBzZW5kZXIgQXMgT2JqZWN0LCBCeVZhbCBlIEFzIFN5c3RlbS5Ec" +
|
||||
"mF3aW5nLlByaW50aW5nLlByaW50RXZlbnRBcmdzKQ0KCUNUeXBlKHNlbmRlciwgWFJTdWJyZXBvcnQpL" +
|
||||
"lJlcG9ydFNvdXJjZS5GaWx0ZXJTdHJpbmcgPSJPaWQ9JyIgJiBsYWJlbDEuVGV4dC5Ub1N0cmluZyAmI" +
|
||||
"CInIiANCkVuZCBTdWINCg0KUHJpdmF0ZSBTdWIgc3VicmVwb3J0NF9CZWZvcmVQcmludChCeVZhbCBzZ" +
|
||||
"W5kZXIgQXMgT2JqZWN0LCBCeVZhbCBlIEFzIFN5c3RlbS5EcmF3aW5nLlByaW50aW5nLlByaW50RXZlb" +
|
||||
"nRBcmdzKQ0KCUNUeXBlKHNlbmRlciwgWFJTdWJyZXBvcnQpLlJlcG9ydFNvdXJjZS5GaWx0ZXJTdHJpb" +
|
||||
"mcgPSJPaWQ9JyIgJiBsYWJlbDEuVGV4dC5Ub1N0cmluZyAmICInIiANCkVuZCBTdWINCgEhU0lTQnVza" +
|
||||
"W5lc3MuTW9kdWxlLkFQQ1NoZWV0SGVhZGVyAQABAAEAAAEhVGVybWVsdGV0w6lzaSBzemVyesWRZMOpc" +
|
||||
"yBhZGF0bGFw";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.subreport1 = new DevExpress.XtraReports.UI.XRSubreport();
|
||||
this.pageBreak3 = new DevExpress.XtraReports.UI.XRPageBreak();
|
||||
this.pageBreak2 = new DevExpress.XtraReports.UI.XRPageBreak();
|
||||
this.pageBreak1 = new DevExpress.XtraReports.UI.XRPageBreak();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.subreport4 = new DevExpress.XtraReports.UI.XRSubreport();
|
||||
this.subreport3 = new DevExpress.XtraReports.UI.XRSubreport();
|
||||
this.subreport2 = new DevExpress.XtraReports.UI.XRSubreport();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Expanded = false;
|
||||
this.detailBand1.HeightF = 0F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 21F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 21F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// ReportHeader
|
||||
//
|
||||
this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.subreport1,
|
||||
this.pageBreak3,
|
||||
this.pageBreak2,
|
||||
this.pageBreak1,
|
||||
this.label1,
|
||||
this.subreport4,
|
||||
this.subreport3,
|
||||
this.subreport2});
|
||||
this.ReportHeader.HeightF = 480.4615F;
|
||||
this.ReportHeader.Name = "ReportHeader";
|
||||
//
|
||||
// subreport1
|
||||
//
|
||||
this.subreport1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 23.73079F);
|
||||
this.subreport1.Name = "subreport1";
|
||||
this.subreport1.ReportSourceUrl = "Partner adatlap";
|
||||
this.subreport1.Scripts.OnBeforePrint = "subreport1_BeforePrint";
|
||||
this.subreport1.SizeF = new System.Drawing.SizeF(773F, 66.26923F);
|
||||
//
|
||||
// pageBreak3
|
||||
//
|
||||
this.pageBreak3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 366.1155F);
|
||||
this.pageBreak3.Name = "pageBreak3";
|
||||
//
|
||||
// pageBreak2
|
||||
//
|
||||
this.pageBreak2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 234.7052F);
|
||||
this.pageBreak2.Name = "pageBreak2";
|
||||
//
|
||||
// pageBreak1
|
||||
//
|
||||
this.pageBreak1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 109.7052F);
|
||||
this.pageBreak1.Name = "pageBreak1";
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Oid")});
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(681.8363F, 7.14105F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.SizeF = new System.Drawing.SizeF(40.70514F, 16.58974F);
|
||||
this.label1.Text = "label1";
|
||||
this.label1.Visible = false;
|
||||
//
|
||||
// subreport4
|
||||
//
|
||||
this.subreport4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 378.1346F);
|
||||
this.subreport4.Name = "subreport4";
|
||||
this.subreport4.ReportSourceUrl = "Gazdasági adatok adóminősítéshez";
|
||||
this.subreport4.Scripts.OnBeforePrint = "subreport4_BeforePrint";
|
||||
this.subreport4.SizeF = new System.Drawing.SizeF(773F, 102.3269F);
|
||||
//
|
||||
// subreport3
|
||||
//
|
||||
this.subreport3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 249.5257F);
|
||||
this.subreport3.Name = "subreport3";
|
||||
this.subreport3.ReportSourceUrl = "Termeltetés területei és termények";
|
||||
this.subreport3.Scripts.OnBeforePrint = "subreport3_BeforePrint";
|
||||
this.subreport3.SizeF = new System.Drawing.SizeF(773F, 103.9295F);
|
||||
//
|
||||
// subreport2
|
||||
//
|
||||
this.subreport2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 124.9296F);
|
||||
this.subreport2.Name = "subreport2";
|
||||
this.subreport2.ReportSourceUrl = "Partner Előminősítő lap";
|
||||
this.subreport2.Scripts.OnBeforePrint = "subreport2_BeforePrint";
|
||||
this.subreport2.SizeF = new System.Drawing.SizeF(773F, 96.71795F);
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.Transparent;
|
||||
this.Title.BorderColor = System.Drawing.Color.Black;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
|
||||
this.FieldCaption.BorderColor = System.Drawing.Color.Black;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.Transparent;
|
||||
this.PageInfo.BorderColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.Transparent;
|
||||
this.DataField.BorderColor = System.Drawing.Color.Black;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.Color.Black;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// MainReport
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.ReportHeader});
|
||||
this.DisplayName = "Termeltetési szerződés adatlap";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Margins = new System.Drawing.Printing.Margins(24, 30, 21, 21);
|
||||
this.Name = "MainReport";
|
||||
this.PageHeight = 1169;
|
||||
this.PageWidth = 827;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
this.ScriptLanguage = DevExpress.XtraReports.ScriptLanguage.VisualBasic;
|
||||
this.ScriptsSource = resources.GetString("$this.ScriptsSource");
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "12.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,894 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v12.1, Version=12.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Xpo.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraReports.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Utils.v12.1.UI.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraBars.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraTreeList.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraRichEdit.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.RichEdit.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Office.v12.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraPrinting.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.Reports.v12.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraCharts.v12.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraNavBar.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.XtraVerticalGrid.v12.1.dll" />
|
||||
/// <Reference Path="C:\Users\szilard.molnar\AppData\Roaming\SIS\Active\DevExpress.CodeParser.v12.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Client\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Client.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Design\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Entity\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Entity.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class xafReport1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table1;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell19;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell20;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell16;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell22;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell23;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell21;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell17;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell24;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell25;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell18;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.PageHeaderBand PageHeader;
|
||||
private DevExpress.XtraReports.UI.XRTable table7;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow23;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell2;
|
||||
private DevExpress.XtraReports.UI.XRTable table6;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow21;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell7;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell4;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell6;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell11;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell12;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell8;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow22;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell91;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell3;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell5;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell10;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell9;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell13;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell15;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell14;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell93;
|
||||
private DevExpress.XtraReports.UI.PageFooterBand PageFooter;
|
||||
private DevExpress.XtraReports.UI.XRTable table2;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow2;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell26;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell27;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell28;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell29;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell30;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell31;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell32;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell33;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell34;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell35;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public xafReport1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAGAAAAAAAAAFBBRFBBRFAFQIOWxnS43uPx3+CsE1HiAYdpRdUcG3krAAAAYwAAADwAAADJAAAAAAAAAJQAAADGAQAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQwBsAGEAcwBzAE4AYQBtAGUAAAAAAAxGAGkAbAB0AGUAcgAnAAAAIkYAaQBsAHQAZQByAEQAZQBzAGMAcgBpAHAAdABpAG8AbgApAAAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlAHcAKwAAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQAtAAAAFFIAZQBwAG8AcgB0AE4AYQBtAGUALgAAAAElU0lTQnVzaW5lc3MuTW9kdWxlLkFQQ1NoZWV0QnlQcm9kdWN0cwEAAQABAAABD1Rlcm3DqWsgYWRhdGxhcA==";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
DevExpress.XtraReports.UI.XRSummary summary1 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary2 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary3 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
|
||||
this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
|
||||
this.table1 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.table7 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.table6 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow23 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableRow21 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableRow22 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell91 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell93 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.table2 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table7)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table6)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table1});
|
||||
this.detailBand1.HeightF = 24.99999F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 1.402769F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 0F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// PageHeader
|
||||
//
|
||||
this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table7,
|
||||
this.table6});
|
||||
this.PageHeader.HeightF = 72F;
|
||||
this.PageHeader.Name = "PageHeader";
|
||||
//
|
||||
// PageFooter
|
||||
//
|
||||
this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table2});
|
||||
this.PageFooter.HeightF = 24.99999F;
|
||||
this.PageFooter.Name = "PageFooter";
|
||||
//
|
||||
// table1
|
||||
//
|
||||
this.table1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)));
|
||||
this.table1.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.table1.LocationFloat = new DevExpress.Utils.PointFloat(9.999973F, 0F);
|
||||
this.table1.Name = "table1";
|
||||
this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow1});
|
||||
this.table1.SizeF = new System.Drawing.SizeF(728.9999F, 24.99999F);
|
||||
this.table1.StylePriority.UseBorders = false;
|
||||
this.table1.StylePriority.UseFont = false;
|
||||
//
|
||||
// tableRow1
|
||||
//
|
||||
this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell19,
|
||||
this.tableCell20,
|
||||
this.tableCell16,
|
||||
this.tableCell22,
|
||||
this.tableCell23,
|
||||
this.tableCell21,
|
||||
this.tableCell17,
|
||||
this.tableCell24,
|
||||
this.tableCell25,
|
||||
this.tableCell18});
|
||||
this.tableRow1.Name = "tableRow1";
|
||||
this.tableRow1.Weight = 1D;
|
||||
//
|
||||
// tableCell19
|
||||
//
|
||||
this.tableCell19.BackColor = System.Drawing.Color.Transparent;
|
||||
this.tableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Products.ShortName")});
|
||||
this.tableCell19.Name = "tableCell19";
|
||||
this.tableCell19.StylePriority.UseBackColor = false;
|
||||
this.tableCell19.StylePriority.UseBorders = false;
|
||||
this.tableCell19.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell19.Text = "tableCell19";
|
||||
this.tableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell19.Weight = 0.56836814039929051D;
|
||||
//
|
||||
// tableCell20
|
||||
//
|
||||
this.tableCell20.BackColor = System.Drawing.Color.Transparent;
|
||||
this.tableCell20.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ContractQuantity", "{0:n}")});
|
||||
this.tableCell20.Name = "tableCell20";
|
||||
this.tableCell20.StylePriority.UseBackColor = false;
|
||||
this.tableCell20.StylePriority.UseBorders = false;
|
||||
this.tableCell20.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell20.Text = "tableCell20";
|
||||
this.tableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell20.Weight = 0.20392562731629066D;
|
||||
//
|
||||
// tableCell16
|
||||
//
|
||||
this.tableCell16.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "InsuranceState")});
|
||||
this.tableCell16.Name = "tableCell16";
|
||||
this.tableCell16.StylePriority.UseBorders = false;
|
||||
this.tableCell16.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell16.Text = "tableCell16";
|
||||
this.tableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell16.Weight = 0.29943158912870843D;
|
||||
//
|
||||
// tableCell22
|
||||
//
|
||||
this.tableCell22.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "MaxContractQuantity", "{0:n}")});
|
||||
this.tableCell22.Name = "tableCell22";
|
||||
this.tableCell22.StylePriority.UseBorders = false;
|
||||
this.tableCell22.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell22.Text = "tableCell22";
|
||||
this.tableCell22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell22.Weight = 0.28330913869675278D;
|
||||
//
|
||||
// tableCell23
|
||||
//
|
||||
this.tableCell23.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FundingHatoHUF", "{0:#,#}")});
|
||||
this.tableCell23.Name = "tableCell23";
|
||||
this.tableCell23.StylePriority.UseBorders = false;
|
||||
this.tableCell23.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell23.Text = "tableCell23";
|
||||
this.tableCell23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell23.Weight = 0.23662578277175822D;
|
||||
//
|
||||
// tableCell21
|
||||
//
|
||||
this.tableCell21.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell21.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FundingHaHUF", "{0:#,#}")});
|
||||
this.tableCell21.Name = "tableCell21";
|
||||
this.tableCell21.StylePriority.UseBorders = false;
|
||||
this.tableCell21.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell21.Text = "tableCell21";
|
||||
this.tableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell21.Weight = 0.23626453248029233D;
|
||||
//
|
||||
// tableCell17
|
||||
//
|
||||
this.tableCell17.BackColor = System.Drawing.Color.Transparent;
|
||||
this.tableCell17.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FundingAmountHUF", "{0:#,#}")});
|
||||
this.tableCell17.Name = "tableCell17";
|
||||
this.tableCell17.StylePriority.UseBackColor = false;
|
||||
this.tableCell17.StylePriority.UseBorders = false;
|
||||
this.tableCell17.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell17.Text = "tableCell17";
|
||||
this.tableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell17.Weight = 0.33496511514002714D;
|
||||
//
|
||||
// tableCell24
|
||||
//
|
||||
this.tableCell24.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ColleteralHatoHUF", "{0:#,#}")});
|
||||
this.tableCell24.Name = "tableCell24";
|
||||
this.tableCell24.StylePriority.UseBorders = false;
|
||||
this.tableCell24.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell24.Text = "tableCell24";
|
||||
this.tableCell24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell24.Weight = 0.2613166405167141D;
|
||||
//
|
||||
// tableCell25
|
||||
//
|
||||
this.tableCell25.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CollateralhaHUF", "{0:#,#}")});
|
||||
this.tableCell25.Name = "tableCell25";
|
||||
this.tableCell25.StylePriority.UseBorders = false;
|
||||
this.tableCell25.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell25.Text = "tableCell25";
|
||||
this.tableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell25.Weight = 0.26132300750338977D;
|
||||
//
|
||||
// tableCell18
|
||||
//
|
||||
this.tableCell18.BackColor = System.Drawing.Color.Transparent;
|
||||
this.tableCell18.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CollateralAmountHUF", "{0:#,#}")});
|
||||
this.tableCell18.Name = "tableCell18";
|
||||
this.tableCell18.StylePriority.UseBackColor = false;
|
||||
this.tableCell18.StylePriority.UseBorders = false;
|
||||
this.tableCell18.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell18.Text = "tableCell18";
|
||||
this.tableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell18.Weight = 0.314470426046776D;
|
||||
//
|
||||
// table7
|
||||
//
|
||||
this.table7.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)));
|
||||
this.table7.LocationFloat = new DevExpress.Utils.PointFloat(9.999974F, 0F);
|
||||
this.table7.Name = "table7";
|
||||
this.table7.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow23});
|
||||
this.table7.SizeF = new System.Drawing.SizeF(138.1135F, 72F);
|
||||
this.table7.StylePriority.UseBorders = false;
|
||||
this.table7.StylePriority.UseTextAlignment = false;
|
||||
this.table7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// table6
|
||||
//
|
||||
this.table6.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)));
|
||||
this.table6.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.table6.LocationFloat = new DevExpress.Utils.PointFloat(148.1135F, 0F);
|
||||
this.table6.Name = "table6";
|
||||
this.table6.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow21,
|
||||
this.tableRow22});
|
||||
this.table6.SizeF = new System.Drawing.SizeF(590.8865F, 72F);
|
||||
this.table6.StylePriority.UseBorders = false;
|
||||
this.table6.StylePriority.UseFont = false;
|
||||
//
|
||||
// tableRow23
|
||||
//
|
||||
this.tableRow23.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell2});
|
||||
this.tableRow23.Name = "tableRow23";
|
||||
this.tableRow23.Weight = 1.0234813739131754D;
|
||||
//
|
||||
// tableCell2
|
||||
//
|
||||
this.tableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell2.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.tableCell2.Multiline = true;
|
||||
this.tableCell2.Name = "tableCell2";
|
||||
this.tableCell2.StylePriority.UseBorders = false;
|
||||
this.tableCell2.StylePriority.UseFont = false;
|
||||
this.tableCell2.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell2.Text = " Növény";
|
||||
this.tableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell2.Weight = 3D;
|
||||
//
|
||||
// tableRow21
|
||||
//
|
||||
this.tableRow21.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell7,
|
||||
this.tableCell1,
|
||||
this.tableCell4,
|
||||
this.tableCell6,
|
||||
this.tableCell11,
|
||||
this.tableCell12,
|
||||
this.tableCell8});
|
||||
this.tableRow21.Name = "tableRow21";
|
||||
this.tableRow21.Weight = 1.1200002307129469D;
|
||||
//
|
||||
// tableRow22
|
||||
//
|
||||
this.tableRow22.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell91,
|
||||
this.tableCell3,
|
||||
this.tableCell5,
|
||||
this.tableCell10,
|
||||
this.tableCell9,
|
||||
this.tableCell13,
|
||||
this.tableCell15,
|
||||
this.tableCell14,
|
||||
this.tableCell93});
|
||||
this.tableRow22.Name = "tableRow22";
|
||||
this.tableRow22.Weight = 1.1840002438965436D;
|
||||
//
|
||||
// tableCell7
|
||||
//
|
||||
this.tableCell7.Name = "tableCell7";
|
||||
this.tableCell7.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell7.Text = "Terület";
|
||||
this.tableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell7.Weight = 0.52166046441609515D;
|
||||
//
|
||||
// tableCell1
|
||||
//
|
||||
this.tableCell1.ForeColor = System.Drawing.Color.Black;
|
||||
this.tableCell1.Name = "tableCell1";
|
||||
this.tableCell1.StylePriority.UseForeColor = false;
|
||||
this.tableCell1.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell1.Text = "Biztosítás(2)";
|
||||
this.tableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell1.Weight = 0.76597347908803914D;
|
||||
//
|
||||
// tableCell4
|
||||
//
|
||||
this.tableCell4.Multiline = true;
|
||||
this.tableCell4.Name = "tableCell4";
|
||||
this.tableCell4.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell4.Text = "Szerződhető\r\nmennyiség";
|
||||
this.tableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell4.Weight = 0.72473141390221285D;
|
||||
//
|
||||
// tableCell6
|
||||
//
|
||||
this.tableCell6.Multiline = true;
|
||||
this.tableCell6.Name = "tableCell6";
|
||||
this.tableCell6.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell6.Text = "Egységre jutó\r\nfinanszírozás";
|
||||
this.tableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell6.Weight = 1.2106196318876756D;
|
||||
//
|
||||
// tableCell11
|
||||
//
|
||||
this.tableCell11.Name = "tableCell11";
|
||||
this.tableCell11.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell11.Text = "Bruttó finansz.";
|
||||
this.tableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell11.Weight = 0.8559479997066205D;
|
||||
//
|
||||
// tableCell12
|
||||
//
|
||||
this.tableCell12.Name = "tableCell12";
|
||||
this.tableCell12.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell12.Text = "Egységre jutó fedezeti érték";
|
||||
this.tableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell12.Weight = 1.3369605788473224D;
|
||||
//
|
||||
// tableCell8
|
||||
//
|
||||
this.tableCell8.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.tableCell8.Multiline = true;
|
||||
this.tableCell8.Name = "tableCell8";
|
||||
this.tableCell8.StylePriority.UseBorders = false;
|
||||
this.tableCell8.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell8.Text = "Bruttó fedezeti\r\nérték";
|
||||
this.tableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell8.Weight = 0.80444352843837619D;
|
||||
//
|
||||
// tableCell91
|
||||
//
|
||||
this.tableCell91.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell91.Name = "tableCell91";
|
||||
this.tableCell91.StylePriority.UseBorders = false;
|
||||
this.tableCell91.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell91.Text = "ha";
|
||||
this.tableCell91.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell91.Weight = 0.52166046441609482D;
|
||||
//
|
||||
// tableCell3
|
||||
//
|
||||
this.tableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell3.Multiline = true;
|
||||
this.tableCell3.Name = "tableCell3";
|
||||
this.tableCell3.StylePriority.UseBorders = false;
|
||||
this.tableCell3.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell3.Text = "Termelő\r\n/Input/E";
|
||||
this.tableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell3.Weight = 0.765973438930236D;
|
||||
//
|
||||
// tableCell5
|
||||
//
|
||||
this.tableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell5.Name = "tableCell5";
|
||||
this.tableCell5.StylePriority.UseBorders = false;
|
||||
this.tableCell5.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell5.Text = "t/ha";
|
||||
this.tableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell5.Weight = 0.72473143398111461D;
|
||||
//
|
||||
// tableCell10
|
||||
//
|
||||
this.tableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell10.Name = "tableCell10";
|
||||
this.tableCell10.StylePriority.UseBorders = false;
|
||||
this.tableCell10.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell10.Text = "Ft/ha/t";
|
||||
this.tableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell10.Weight = 0.60530980088466146D;
|
||||
//
|
||||
// tableCell9
|
||||
//
|
||||
this.tableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell9.Name = "tableCell9";
|
||||
this.tableCell9.StylePriority.UseBorders = false;
|
||||
this.tableCell9.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell9.Text = "Ft/ha";
|
||||
this.tableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell9.Weight = 0.6053098008846618D;
|
||||
//
|
||||
// tableCell13
|
||||
//
|
||||
this.tableCell13.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell13.Name = "tableCell13";
|
||||
this.tableCell13.StylePriority.UseBorders = false;
|
||||
this.tableCell13.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell13.Text = "Ft";
|
||||
this.tableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell13.Weight = 0.855947824016231D;
|
||||
//
|
||||
// tableCell15
|
||||
//
|
||||
this.tableCell15.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell15.Name = "tableCell15";
|
||||
this.tableCell15.StylePriority.UseBorders = false;
|
||||
this.tableCell15.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell15.Text = "Ft/ha/t";
|
||||
this.tableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell15.Weight = 0.66847257536060334D;
|
||||
//
|
||||
// tableCell14
|
||||
//
|
||||
this.tableCell14.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell14.Name = "tableCell14";
|
||||
this.tableCell14.StylePriority.UseBorders = false;
|
||||
this.tableCell14.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell14.Text = "Ft/ha";
|
||||
this.tableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell14.Weight = 0.66847257536060334D;
|
||||
//
|
||||
// tableCell93
|
||||
//
|
||||
this.tableCell93.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell93.Name = "tableCell93";
|
||||
this.tableCell93.StylePriority.UseBorders = false;
|
||||
this.tableCell93.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell93.Text = "Ft";
|
||||
this.tableCell93.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell93.Weight = 0.80445918245213621D;
|
||||
//
|
||||
// table2
|
||||
//
|
||||
this.table2.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)));
|
||||
this.table2.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.table2.LocationFloat = new DevExpress.Utils.PointFloat(10.0001F, 0F);
|
||||
this.table2.Name = "table2";
|
||||
this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow2});
|
||||
this.table2.SizeF = new System.Drawing.SizeF(728.9999F, 24.99999F);
|
||||
this.table2.StylePriority.UseBorders = false;
|
||||
this.table2.StylePriority.UseFont = false;
|
||||
//
|
||||
// tableRow2
|
||||
//
|
||||
this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell26,
|
||||
this.tableCell27,
|
||||
this.tableCell28,
|
||||
this.tableCell29,
|
||||
this.tableCell30,
|
||||
this.tableCell31,
|
||||
this.tableCell32,
|
||||
this.tableCell33,
|
||||
this.tableCell34,
|
||||
this.tableCell35});
|
||||
this.tableRow2.Name = "tableRow2";
|
||||
this.tableRow2.Weight = 1D;
|
||||
//
|
||||
// tableCell26
|
||||
//
|
||||
this.tableCell26.BackColor = System.Drawing.Color.Transparent;
|
||||
this.tableCell26.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell26.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.tableCell26.Name = "tableCell26";
|
||||
this.tableCell26.StylePriority.UseBackColor = false;
|
||||
this.tableCell26.StylePriority.UseBorders = false;
|
||||
this.tableCell26.StylePriority.UseFont = false;
|
||||
this.tableCell26.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell26.Text = "Összesen";
|
||||
this.tableCell26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell26.Weight = 0.56836814039929051D;
|
||||
//
|
||||
// tableCell27
|
||||
//
|
||||
this.tableCell27.BackColor = System.Drawing.Color.Transparent;
|
||||
this.tableCell27.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ContractQuantity")});
|
||||
this.tableCell27.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.tableCell27.Name = "tableCell27";
|
||||
this.tableCell27.StylePriority.UseBackColor = false;
|
||||
this.tableCell27.StylePriority.UseBorders = false;
|
||||
this.tableCell27.StylePriority.UseFont = false;
|
||||
this.tableCell27.StylePriority.UseTextAlignment = false;
|
||||
summary1.FormatString = "{0:n}";
|
||||
summary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Page;
|
||||
this.tableCell27.Summary = summary1;
|
||||
this.tableCell27.Text = "tableCell27";
|
||||
this.tableCell27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell27.Weight = 0.20392562731629066D;
|
||||
//
|
||||
// tableCell28
|
||||
//
|
||||
this.tableCell28.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell28.Name = "tableCell28";
|
||||
this.tableCell28.StylePriority.UseBorders = false;
|
||||
this.tableCell28.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell28.Weight = 0.29943158912870843D;
|
||||
//
|
||||
// tableCell29
|
||||
//
|
||||
this.tableCell29.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell29.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.tableCell29.Name = "tableCell29";
|
||||
this.tableCell29.StylePriority.UseBorders = false;
|
||||
this.tableCell29.StylePriority.UseFont = false;
|
||||
this.tableCell29.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell29.Text = "- -";
|
||||
this.tableCell29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell29.Weight = 0.28330913869675278D;
|
||||
//
|
||||
// tableCell30
|
||||
//
|
||||
this.tableCell30.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell30.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.tableCell30.Name = "tableCell30";
|
||||
this.tableCell30.StylePriority.UseBorders = false;
|
||||
this.tableCell30.StylePriority.UseFont = false;
|
||||
this.tableCell30.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell30.Text = "- -";
|
||||
this.tableCell30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell30.Weight = 0.23662578277175822D;
|
||||
//
|
||||
// tableCell31
|
||||
//
|
||||
this.tableCell31.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell31.Name = "tableCell31";
|
||||
this.tableCell31.StylePriority.UseBorders = false;
|
||||
this.tableCell31.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell31.Weight = 0.23626453248029233D;
|
||||
//
|
||||
// tableCell32
|
||||
//
|
||||
this.tableCell32.BackColor = System.Drawing.Color.Transparent;
|
||||
this.tableCell32.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell32.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FundingAmountHUF")});
|
||||
this.tableCell32.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.tableCell32.Name = "tableCell32";
|
||||
this.tableCell32.StylePriority.UseBackColor = false;
|
||||
this.tableCell32.StylePriority.UseBorders = false;
|
||||
this.tableCell32.StylePriority.UseFont = false;
|
||||
this.tableCell32.StylePriority.UseTextAlignment = false;
|
||||
summary2.FormatString = "{0:#,#}";
|
||||
summary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Page;
|
||||
this.tableCell32.Summary = summary2;
|
||||
this.tableCell32.Text = "tableCell32";
|
||||
this.tableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell32.Weight = 0.33496511514002714D;
|
||||
//
|
||||
// tableCell33
|
||||
//
|
||||
this.tableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell33.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.tableCell33.Name = "tableCell33";
|
||||
this.tableCell33.StylePriority.UseBorders = false;
|
||||
this.tableCell33.StylePriority.UseFont = false;
|
||||
this.tableCell33.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell33.Text = "- -";
|
||||
this.tableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell33.Weight = 0.2613166405167141D;
|
||||
//
|
||||
// tableCell34
|
||||
//
|
||||
this.tableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell34.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.tableCell34.Name = "tableCell34";
|
||||
this.tableCell34.StylePriority.UseBorders = false;
|
||||
this.tableCell34.StylePriority.UseFont = false;
|
||||
this.tableCell34.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell34.Text = "- -";
|
||||
this.tableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell34.Weight = 0.26132300750338977D;
|
||||
//
|
||||
// tableCell35
|
||||
//
|
||||
this.tableCell35.BackColor = System.Drawing.Color.Transparent;
|
||||
this.tableCell35.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.tableCell35.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CollateralAmountHUF")});
|
||||
this.tableCell35.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.tableCell35.Name = "tableCell35";
|
||||
this.tableCell35.StylePriority.UseBackColor = false;
|
||||
this.tableCell35.StylePriority.UseBorders = false;
|
||||
this.tableCell35.StylePriority.UseFont = false;
|
||||
this.tableCell35.StylePriority.UseTextAlignment = false;
|
||||
summary3.FormatString = "{0:#,#}";
|
||||
summary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Page;
|
||||
this.tableCell35.Summary = summary3;
|
||||
this.tableCell35.Text = "tableCell35";
|
||||
this.tableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell35.Weight = 0.314470426046776D;
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.Transparent;
|
||||
this.Title.BorderColor = System.Drawing.Color.Black;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.Transparent;
|
||||
this.FieldCaption.BorderColor = System.Drawing.Color.Black;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.Transparent;
|
||||
this.PageInfo.BorderColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.Color.Black;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.Transparent;
|
||||
this.DataField.BorderColor = System.Drawing.Color.Black;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.Color.Black;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// xafReport1
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.PageHeader,
|
||||
this.PageFooter});
|
||||
this.DisplayName = "Termék adatlap";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Margins = new System.Drawing.Printing.Margins(13, 12, 1, 0);
|
||||
this.Name = "xafReport1";
|
||||
this.PageHeight = 1100;
|
||||
this.PageWidth = 850;
|
||||
this.ScriptLanguage = DevExpress.XtraReports.ScriptLanguage.VisualBasic;
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "12.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table7)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table6)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
+953
@@ -0,0 +1,953 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v10.2, Version=10.2.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v10.2.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>en-US</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v10.2.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.ExpressApp.v10.2.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Xpo.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.Xpo.v10.2.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraReports.v10.2.Extensions\10.2.8.0__b88d1754d700e49a\DevExpress.XtraReports.v10.2.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraBars.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.XtraBars.v10.2.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraCharts.v10.2.Extensions\10.2.8.0__b88d1754d700e49a\DevExpress.XtraCharts.v10.2.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraPrinting.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.XtraPrinting.v10.2.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraRichEdit.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.XtraRichEdit.v10.2.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.RichEdit.v10.2.Core\10.2.8.0__b88d1754d700e49a\DevExpress.RichEdit.v10.2.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraTreeList.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.XtraTreeList.v10.2.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraNavBar.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.XtraNavBar.v10.2.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraVerticalGrid.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.XtraVerticalGrid.v10.2.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.CodeParser.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.CodeParser.v10.2.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class xafReport1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table2;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow2;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell5;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell6;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell7;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell8;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label31;
|
||||
private DevExpress.XtraReports.UI.XRPageInfo pageInfo1;
|
||||
private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label34;
|
||||
private DevExpress.XtraReports.UI.XRLabel label33;
|
||||
private DevExpress.XtraReports.UI.XRLabel label32;
|
||||
private DevExpress.XtraReports.UI.XRLabel label12;
|
||||
private DevExpress.XtraReports.UI.XRTable table1;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell2;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell3;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell4;
|
||||
private DevExpress.XtraReports.UI.XRPageBreak pageBreak1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label30;
|
||||
private DevExpress.XtraReports.UI.XRLabel label25;
|
||||
private DevExpress.XtraReports.UI.XRLabel label7;
|
||||
private DevExpress.XtraReports.UI.XRLabel label24;
|
||||
private DevExpress.XtraReports.UI.XRLabel label14;
|
||||
private DevExpress.XtraReports.UI.XRLabel label9;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label29;
|
||||
private DevExpress.XtraReports.UI.XRLabel label4;
|
||||
private DevExpress.XtraReports.UI.XRLabel label18;
|
||||
private DevExpress.XtraReports.UI.XRLabel label3;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label21;
|
||||
private DevExpress.XtraReports.UI.XRLabel label23;
|
||||
private DevExpress.XtraReports.UI.XRLabel label10;
|
||||
private DevExpress.XtraReports.UI.XRLabel label5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label13;
|
||||
private DevExpress.XtraReports.UI.XRLabel label8;
|
||||
private DevExpress.XtraReports.UI.XRLabel label26;
|
||||
private DevExpress.XtraReports.UI.XRLabel label28;
|
||||
private DevExpress.XtraReports.UI.XRLabel label27;
|
||||
private DevExpress.XtraReports.UI.XRPictureBox pictureBox1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label15;
|
||||
private DevExpress.XtraReports.UI.XRLabel label17;
|
||||
private DevExpress.XtraReports.UI.XRLabel label16;
|
||||
private DevExpress.XtraReports.UI.XRLabel label19;
|
||||
private DevExpress.XtraReports.UI.XRLabel label22;
|
||||
private DevExpress.XtraReports.UI.XRLabel label20;
|
||||
private DevExpress.XtraReports.UI.XRLabel label11;
|
||||
private DevExpress.XtraReports.UI.PageFooterBand PageFooter;
|
||||
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1;
|
||||
private DevExpress.XtraReports.UI.XRTable table3;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow3;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell9;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell10;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public xafReport1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAHAAAAAAAAAFBBRFBBRFAFQIOW8kP3rsZ0uN7j8d/grBNR4gGHaUXVHBt5KwAAAOIAAABjAAAAPAAAAMkAAAAAAAAAlAAAAOsBAAAmRABhAHQAYQBTAG8AdQByAGMAZQBDAGwAYQBzAHMATgBhAG0AZQAAAAAADEYAaQBsAHQAZQByACMAAAAiRgBpAGwAdABlAHIARABlAHMAYwByAGkAcAB0AGkAbwBuACUAAAAsRgBpAGwAdABlAHIARgBvAHIARABlAHMAaQBnAG4AUAByAGUAdgBpAGUAdwAnAAAAMFAAYQByAGEAbQBlAHQAZQByAHMATwBiAGoAZQBjAHQAVAB5AHAAZQBOAGEAbQBlACkAAAAUUgBlAHAAbwByAHQATgBhAG0AZQAqAAAAGGwAYQBiAGUAbAAyADAALgBUAGUAeAB0AF0AAAABIVNJU0J1c2luZXNzLk1vZHVsZS5Bc3NldHNIYW5kbGluZwEAAQABAAABMUZpemV0w6lzaSBmZWxzesOzbMOtdMOhcy8gUmVuZGvDrXbDvGxpIGZlbG1vbmTDoXMBlwJGZWxow612anVrIGZpZ3llbG3DqXQsIGhvZ3kgYW1lbm55aWJlbiA4IG5hcG9uIGJlbMO8bCB0YXJ0b3rDoXPDoXQgbmVtIHJlbmRlemksIMO6Z3kgYSBiw6lybGV0aSBqb2d2aXN6b255dCBqZWxlbiBsZXZlbMO8bmtrZWwsIHJlbmRrw612w7xsaSBmZWxtb25kw6Fzc2FsIGZlbG1vbmRqdWsgYSA4LiBuYXByYS4gRXogZXNldGJlbiDDlm4ga8O2dGVsZXMgYSBiw6lybGVtw6lueXQgYSBiw6lybGV0aSBzemVyesWRZMOpcyByZW5kZWxrZXrDqXNlaW5layBtZWdmZWxlbMWRZW4gw6F0YWRuaS4=";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
DevExpress.XtraReports.UI.XRSummary summary1 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||
this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
|
||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.table2 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label31 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.pageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo();
|
||||
this.label34 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label33 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label32 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.table1 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.pageBreak1 = new DevExpress.XtraReports.UI.XRPageBreak();
|
||||
this.label30 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label25 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label24 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label14 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label29 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label18 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label21 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label23 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label13 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label26 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label28 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label27 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.pictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
|
||||
this.label15 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label17 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label16 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label19 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label22 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label20 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.tableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.table3 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table3)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table2});
|
||||
this.detailBand1.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.detailBand1.HeightF = 25F;
|
||||
this.detailBand1.KeepTogetherWithDetailReports = true;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
this.detailBand1.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("DatePayment", DevExpress.XtraReports.UI.XRColumnSortOrder.Descending)});
|
||||
this.detailBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 80F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label31,
|
||||
this.pageInfo1});
|
||||
this.bottomMarginBand1.HeightF = 80F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// GroupHeader1
|
||||
//
|
||||
this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label34,
|
||||
this.label33,
|
||||
this.label32,
|
||||
this.label12,
|
||||
this.table1,
|
||||
this.pageBreak1,
|
||||
this.label30,
|
||||
this.label25,
|
||||
this.label7,
|
||||
this.label24,
|
||||
this.label14,
|
||||
this.label9,
|
||||
this.label2,
|
||||
this.label1,
|
||||
this.label29,
|
||||
this.label4,
|
||||
this.label18,
|
||||
this.label3,
|
||||
this.label6,
|
||||
this.label21,
|
||||
this.label23,
|
||||
this.label10,
|
||||
this.label5,
|
||||
this.label13,
|
||||
this.label8,
|
||||
this.label26,
|
||||
this.label28,
|
||||
this.label27,
|
||||
this.pictureBox1,
|
||||
this.label15,
|
||||
this.label17,
|
||||
this.label16,
|
||||
this.label19,
|
||||
this.label22,
|
||||
this.label20,
|
||||
this.label11});
|
||||
this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("Customers.DisplayName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
|
||||
this.GroupHeader1.HeightF = 1095.292F;
|
||||
this.GroupHeader1.KeepTogether = true;
|
||||
this.GroupHeader1.Name = "GroupHeader1";
|
||||
//
|
||||
// PageFooter
|
||||
//
|
||||
this.PageFooter.HeightF = 0F;
|
||||
this.PageFooter.Name = "PageFooter";
|
||||
//
|
||||
// GroupFooter1
|
||||
//
|
||||
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table3});
|
||||
this.GroupFooter1.HeightF = 28.125F;
|
||||
this.GroupFooter1.Name = "GroupFooter1";
|
||||
//
|
||||
// table2
|
||||
//
|
||||
this.table2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.table2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.table2.Name = "table2";
|
||||
this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow2});
|
||||
this.table2.SizeF = new System.Drawing.SizeF(657F, 25F);
|
||||
this.table2.StylePriority.UseBorders = false;
|
||||
//
|
||||
// tableRow2
|
||||
//
|
||||
this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell5,
|
||||
this.tableCell6,
|
||||
this.tableCell7,
|
||||
this.tableCell8});
|
||||
this.tableRow2.Name = "tableRow2";
|
||||
this.tableRow2.Weight = 1D;
|
||||
//
|
||||
// tableCell5
|
||||
//
|
||||
this.tableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DocumentNumber")});
|
||||
this.tableCell5.Name = "tableCell5";
|
||||
this.tableCell5.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell5.Text = "tableCell5";
|
||||
this.tableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell5.Weight = 1.8541702270507812D;
|
||||
//
|
||||
// tableCell6
|
||||
//
|
||||
this.tableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountHUF_Account", "{0:#,#}")});
|
||||
this.tableCell6.Name = "tableCell6";
|
||||
this.tableCell6.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell6.Text = "tableCell6";
|
||||
this.tableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.tableCell6.Weight = 1.5208322143554689D;
|
||||
//
|
||||
// tableCell7
|
||||
//
|
||||
this.tableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BalanceHUF", "{0:#,#}")});
|
||||
this.tableCell7.Name = "tableCell7";
|
||||
this.tableCell7.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell7.Text = "tableCell7";
|
||||
this.tableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.tableCell7.Weight = 1.3645840454101561D;
|
||||
//
|
||||
// tableCell8
|
||||
//
|
||||
this.tableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DatePayment", "{0:yyyy.MM.dd.}")});
|
||||
this.tableCell8.Name = "tableCell8";
|
||||
this.tableCell8.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell8.Text = "tableCell8";
|
||||
this.tableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell8.Weight = 1.8304135131835937D;
|
||||
//
|
||||
// label31
|
||||
//
|
||||
this.label31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DateClose", "{0:yyyy.MM.dd.}")});
|
||||
this.label31.LocationFloat = new DevExpress.Utils.PointFloat(508.3333F, 6.357829E-05F);
|
||||
this.label31.Name = "label31";
|
||||
this.label31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label31.SizeF = new System.Drawing.SizeF(148.6667F, 22.99995F);
|
||||
this.label31.StylePriority.UseTextAlignment = false;
|
||||
this.label31.Text = "label31";
|
||||
this.label31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// pageInfo1
|
||||
//
|
||||
this.pageInfo1.Format = "{0}. oldal, összesen {1}";
|
||||
this.pageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(265.6252F, 0F);
|
||||
this.pageInfo1.Name = "pageInfo1";
|
||||
this.pageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.pageInfo1.RunningBand = this.GroupHeader1;
|
||||
this.pageInfo1.SizeF = new System.Drawing.SizeF(127.0834F, 23F);
|
||||
//
|
||||
// label34
|
||||
//
|
||||
this.label34.LocationFloat = new DevExpress.Utils.PointFloat(0.0006357829F, 982.5834F);
|
||||
this.label34.Multiline = true;
|
||||
this.label34.Name = "label34";
|
||||
this.label34.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label34.SizeF = new System.Drawing.SizeF(116.6667F, 16.99994F);
|
||||
this.label34.Text = "Késedelmi kamat.\r\n";
|
||||
//
|
||||
// label33
|
||||
//
|
||||
this.label33.LocationFloat = new DevExpress.Utils.PointFloat(0.0006357829F, 965.5833F);
|
||||
this.label33.Multiline = true;
|
||||
this.label33.Name = "label33";
|
||||
this.label33.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label33.SizeF = new System.Drawing.SizeF(116.6667F, 17.00012F);
|
||||
this.label33.Text = "Melléklet:";
|
||||
//
|
||||
// label32
|
||||
//
|
||||
this.label32.LocationFloat = new DevExpress.Utils.PointFloat(0.0006357829F, 717.1255F);
|
||||
this.label32.Multiline = true;
|
||||
this.label32.Name = "label32";
|
||||
this.label32.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label32.SizeF = new System.Drawing.SizeF(656.9991F, 17F);
|
||||
this.label32.StylePriority.UseTextAlignment = false;
|
||||
this.label32.Text = "Tájékoztatjuk, hogy rendkívüli felmondás esetén Ön a szerződés szerinti bérleti d" +
|
||||
"íj megfizetése alól nem mentesül.";
|
||||
this.label32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopJustify;
|
||||
//
|
||||
// label12
|
||||
//
|
||||
this.label12.LocationFloat = new DevExpress.Utils.PointFloat(0.0006357829F, 702.1255F);
|
||||
this.label12.Multiline = true;
|
||||
this.label12.Name = "label12";
|
||||
this.label12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label12.SizeF = new System.Drawing.SizeF(100F, 15F);
|
||||
this.label12.Text = "\r\n";
|
||||
//
|
||||
// table1
|
||||
//
|
||||
this.table1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.table1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.table1.LocationFloat = new DevExpress.Utils.PointFloat(0.0003178914F, 1072.292F);
|
||||
this.table1.Name = "table1";
|
||||
this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow1});
|
||||
this.table1.SizeF = new System.Drawing.SizeF(656.9994F, 23F);
|
||||
this.table1.StylePriority.UseBorders = false;
|
||||
this.table1.StylePriority.UseFont = false;
|
||||
this.table1.StylePriority.UseTextAlignment = false;
|
||||
this.table1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// pageBreak1
|
||||
//
|
||||
this.pageBreak1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 1000.417F);
|
||||
this.pageBreak1.Name = "pageBreak1";
|
||||
//
|
||||
// label30
|
||||
//
|
||||
this.label30.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label30.LocationFloat = new DevExpress.Utils.PointFloat(0.0003178914F, 1028.459F);
|
||||
this.label30.Multiline = true;
|
||||
this.label30.Name = "label30";
|
||||
this.label30.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label30.SizeF = new System.Drawing.SizeF(656.9994F, 23F);
|
||||
this.label30.StylePriority.UseFont = false;
|
||||
this.label30.StylePriority.UseTextAlignment = false;
|
||||
this.label30.Text = "Lejárt fizetési határidejű számlák\r\n";
|
||||
this.label30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label25
|
||||
//
|
||||
this.label25.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label25.LocationFloat = new DevExpress.Utils.PointFloat(0.0009536743F, 901.0419F);
|
||||
this.label25.Name = "label25";
|
||||
this.label25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label25.SizeF = new System.Drawing.SizeF(197.9166F, 20.00006F);
|
||||
this.label25.StylePriority.UseFont = false;
|
||||
this.label25.StylePriority.UseTextAlignment = false;
|
||||
this.label25.Text = "Pénzügyi asszisztens";
|
||||
this.label25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label7
|
||||
//
|
||||
this.label7.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label7.LocationFloat = new DevExpress.Utils.PointFloat(0.0003178914F, 422.625F);
|
||||
this.label7.Name = "label7";
|
||||
this.label7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label7.SizeF = new System.Drawing.SizeF(48.95834F, 23F);
|
||||
this.label7.StylePriority.UseFont = false;
|
||||
this.label7.StylePriority.UseTextAlignment = false;
|
||||
this.label7.Text = "Tárgy: ";
|
||||
this.label7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label24
|
||||
//
|
||||
this.label24.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label24.LocationFloat = new DevExpress.Utils.PointFloat(0.0006357829F, 881.0419F);
|
||||
this.label24.Name = "label24";
|
||||
this.label24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label24.SizeF = new System.Drawing.SizeF(100F, 20F);
|
||||
this.label24.StylePriority.UseFont = false;
|
||||
this.label24.StylePriority.UseTextAlignment = false;
|
||||
this.label24.Text = "Vida Krisztina";
|
||||
this.label24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label14
|
||||
//
|
||||
this.label14.LocationFloat = new DevExpress.Utils.PointFloat(0.0003178914F, 553.1255F);
|
||||
this.label14.Name = "label14";
|
||||
this.label14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label14.SizeF = new System.Drawing.SizeF(99.99981F, 15F);
|
||||
this.label14.StylePriority.UseTextAlignment = false;
|
||||
this.label14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label9
|
||||
//
|
||||
this.label9.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.label9.LocationFloat = new DevExpress.Utils.PointFloat(48.95865F, 422.625F);
|
||||
this.label9.Name = "label9";
|
||||
this.label9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label9.SizeF = new System.Drawing.SizeF(201.0416F, 23F);
|
||||
this.label9.StylePriority.UseFont = false;
|
||||
this.label9.StylePriority.UseTextAlignment = false;
|
||||
this.label9.Text = "Fizetési felszólítás";
|
||||
this.label9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Italic);
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 235.3959F);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label2.StylePriority.UseFont = false;
|
||||
this.label2.StylePriority.UseTextAlignment = false;
|
||||
this.label2.Text = "mint a";
|
||||
this.label2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 164.9168F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label1.StylePriority.UseFont = false;
|
||||
this.label1.StylePriority.UseTextAlignment = false;
|
||||
this.label1.Text = "Feladó:";
|
||||
this.label1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label29
|
||||
//
|
||||
this.label29.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label29.LocationFloat = new DevExpress.Utils.PointFloat(0.0003178915F, 129.9167F);
|
||||
this.label29.Name = "label29";
|
||||
this.label29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label29.SizeF = new System.Drawing.SizeF(255.2083F, 17F);
|
||||
this.label29.StylePriority.UseFont = false;
|
||||
this.label29.StylePriority.UseTextAlignment = false;
|
||||
this.label29.Text = "E-mail: pestihazak@pestihazak.hu";
|
||||
this.label29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Italic);
|
||||
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 305.8751F);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label4.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label4.StylePriority.UseFont = false;
|
||||
this.label4.StylePriority.UseTextAlignment = false;
|
||||
this.label4.Text = "megbízottja.";
|
||||
this.label4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label18
|
||||
//
|
||||
this.label18.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label18.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 187.9166F);
|
||||
this.label18.Name = "label18";
|
||||
this.label18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label18.SizeF = new System.Drawing.SizeF(380.2084F, 17F);
|
||||
this.label18.StylePriority.UseFont = false;
|
||||
this.label18.StylePriority.UseTextAlignment = false;
|
||||
this.label18.Text = "PH Ingatlanvagyon-kezelő Kft.";
|
||||
this.label18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomersFrom.DisplayName")});
|
||||
this.label3.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label3.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 271.8751F);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label3.SizeF = new System.Drawing.SizeF(380.2083F, 17F);
|
||||
this.label3.StylePriority.UseFont = false;
|
||||
this.label3.StylePriority.UseTextAlignment = false;
|
||||
this.label3.Text = "label3";
|
||||
this.label3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Customers.DisplayName")});
|
||||
this.label6.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(0.0003178914F, 372.1666F);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label6.SizeF = new System.Drawing.SizeF(380.2083F, 23F);
|
||||
this.label6.StylePriority.UseFont = false;
|
||||
this.label6.StylePriority.UseTextAlignment = false;
|
||||
this.label6.Text = "label6";
|
||||
this.label6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label21
|
||||
//
|
||||
this.label21.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label21.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 204.9167F);
|
||||
this.label21.Name = "label21";
|
||||
this.label21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label21.SizeF = new System.Drawing.SizeF(380.2083F, 17F);
|
||||
this.label21.StylePriority.UseFont = false;
|
||||
this.label21.StylePriority.UseTextAlignment = false;
|
||||
this.label21.Text = "1094 Budapest Ferenc tér 2-3. VI/1.";
|
||||
this.label21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label23
|
||||
//
|
||||
this.label23.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label23.LocationFloat = new DevExpress.Utils.PointFloat(0.001271566F, 820.7294F);
|
||||
this.label23.Name = "label23";
|
||||
this.label23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label23.SizeF = new System.Drawing.SizeF(100F, 20F);
|
||||
this.label23.StylePriority.UseFont = false;
|
||||
this.label23.StylePriority.UseTextAlignment = false;
|
||||
this.label23.Text = "Tisztelettel:";
|
||||
this.label23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label10
|
||||
//
|
||||
this.label10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomersFrom.Address1.FullAddress")});
|
||||
this.label10.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label10.LocationFloat = new DevExpress.Utils.PointFloat(0F, 288.8751F);
|
||||
this.label10.Name = "label10";
|
||||
this.label10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label10.SizeF = new System.Drawing.SizeF(380.2083F, 17F);
|
||||
this.label10.StylePriority.UseFont = false;
|
||||
this.label10.StylePriority.UseTextAlignment = false;
|
||||
this.label10.Text = "label10";
|
||||
this.label10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label5
|
||||
//
|
||||
this.label5.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(0.0003178914F, 349.1667F);
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label5.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label5.StylePriority.UseFont = false;
|
||||
this.label5.StylePriority.UseTextAlignment = false;
|
||||
this.label5.Text = "Címzett:";
|
||||
this.label5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label13
|
||||
//
|
||||
this.label13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountHUF_Account", "{0:#,#\',- Ft\'}")});
|
||||
this.label13.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label13.LocationFloat = new DevExpress.Utils.PointFloat(200F, 533.1256F);
|
||||
this.label13.Name = "label13";
|
||||
this.label13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label13.SizeF = new System.Drawing.SizeF(182.2917F, 20F);
|
||||
this.label13.StylePriority.UseFont = false;
|
||||
this.label13.StylePriority.UseTextAlignment = false;
|
||||
this.label13.Text = "label13";
|
||||
this.label13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label8
|
||||
//
|
||||
this.label8.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
|
||||
this.label8.LocationFloat = new DevExpress.Utils.PointFloat(0.0003178914F, 473.0834F);
|
||||
this.label8.Name = "label8";
|
||||
this.label8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label8.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label8.StylePriority.UseFont = false;
|
||||
this.label8.StylePriority.UseTextAlignment = false;
|
||||
this.label8.Text = "Tisztelt Bérlő!";
|
||||
this.label8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label26
|
||||
//
|
||||
this.label26.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label26.LocationFloat = new DevExpress.Utils.PointFloat(0.0006357829F, 921.0419F);
|
||||
this.label26.Name = "label26";
|
||||
this.label26.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label26.SizeF = new System.Drawing.SizeF(197.9167F, 19.99994F);
|
||||
this.label26.StylePriority.UseFont = false;
|
||||
this.label26.StylePriority.UseTextAlignment = false;
|
||||
this.label26.Text = "PH Ingatlanvagyon-kezelő Kft.";
|
||||
this.label26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label28
|
||||
//
|
||||
this.label28.LocationFloat = new DevExpress.Utils.PointFloat(0.0002543132F, 112.9166F);
|
||||
this.label28.Name = "label28";
|
||||
this.label28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label28.SizeF = new System.Drawing.SizeF(255.2083F, 17.00001F);
|
||||
this.label28.StylePriority.UseTextAlignment = false;
|
||||
this.label28.Text = "Tel./Fax: 219 54 77; 219 54 78";
|
||||
this.label28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label27
|
||||
//
|
||||
this.label27.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 95.91663F);
|
||||
this.label27.Multiline = true;
|
||||
this.label27.Name = "label27";
|
||||
this.label27.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label27.SizeF = new System.Drawing.SizeF(255.2083F, 17F);
|
||||
this.label27.StylePriority.UseTextAlignment = false;
|
||||
this.label27.Text = "Hungary H 1094 Budapest, Ferenc tér 2-3.\r\n";
|
||||
this.label27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// pictureBox1
|
||||
//
|
||||
this.pictureBox1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Image", null, "CustomersFrom.Photo")});
|
||||
this.pictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 0F);
|
||||
this.pictureBox1.Name = "pictureBox1";
|
||||
this.pictureBox1.SizeF = new System.Drawing.SizeF(145.8333F, 95.91663F);
|
||||
//
|
||||
// label15
|
||||
//
|
||||
this.label15.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label15.LocationFloat = new DevExpress.Utils.PointFloat(0.0006357829F, 568.1255F);
|
||||
this.label15.Multiline = true;
|
||||
this.label15.Name = "label15";
|
||||
this.label15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label15.SizeF = new System.Drawing.SizeF(656.9994F, 34.99994F);
|
||||
this.label15.StylePriority.UseFont = false;
|
||||
this.label15.StylePriority.UseTextAlignment = false;
|
||||
this.label15.Text = "Kérjük, hogy az elmaradt díjak kiegyenlítését 8 napon belül pótolni szíveskedjék," +
|
||||
" és ennek igazolását küldje meg részünkre!\r\n";
|
||||
this.label15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
|
||||
//
|
||||
// label17
|
||||
//
|
||||
this.label17.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label17.LocationFloat = new DevExpress.Utils.PointFloat(0F, 618.1255F);
|
||||
this.label17.Name = "label17";
|
||||
this.label17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label17.SizeF = new System.Drawing.SizeF(657F, 17F);
|
||||
this.label17.StylePriority.UseFont = false;
|
||||
this.label17.StylePriority.UseTextAlignment = false;
|
||||
this.label17.Text = "Az eddig felhalmozódott késedelmi kamatterhe a mellékelt táblázatban látható.";
|
||||
this.label17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
|
||||
//
|
||||
// label16
|
||||
//
|
||||
this.label16.LocationFloat = new DevExpress.Utils.PointFloat(0.0006357829F, 603.1255F);
|
||||
this.label16.Name = "label16";
|
||||
this.label16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label16.SizeF = new System.Drawing.SizeF(100F, 15F);
|
||||
this.label16.StylePriority.UseTextAlignment = false;
|
||||
this.label16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label19
|
||||
//
|
||||
this.label19.LocationFloat = new DevExpress.Utils.PointFloat(0F, 635.1255F);
|
||||
this.label19.Name = "label19";
|
||||
this.label19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label19.SizeF = new System.Drawing.SizeF(100F, 15F);
|
||||
this.label19.StylePriority.UseTextAlignment = false;
|
||||
this.label19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label22
|
||||
//
|
||||
this.label22.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label22.LocationFloat = new DevExpress.Utils.PointFloat(0.0006357829F, 760.4171F);
|
||||
this.label22.Name = "label22";
|
||||
this.label22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label22.SizeF = new System.Drawing.SizeF(473.9583F, 20F);
|
||||
this.label22.StylePriority.UseFont = false;
|
||||
this.label22.StylePriority.UseTextAlignment = false;
|
||||
this.label22.Text = "Budapest, [DateClose!yyyy.MMMM.dd.]";
|
||||
this.label22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label20
|
||||
//
|
||||
this.label20.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label20.LocationFloat = new DevExpress.Utils.PointFloat(0.0006357829F, 650.1255F);
|
||||
this.label20.Name = "label20";
|
||||
this.label20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label20.SizeF = new System.Drawing.SizeF(656.9994F, 52F);
|
||||
this.label20.StylePriority.UseFont = false;
|
||||
this.label20.StylePriority.UseTextAlignment = false;
|
||||
this.label20.Text = resources.GetString("label20.Text");
|
||||
this.label20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
|
||||
//
|
||||
// label11
|
||||
//
|
||||
this.label11.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label11.LocationFloat = new DevExpress.Utils.PointFloat(0F, 518.1255F);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label11.SizeF = new System.Drawing.SizeF(656.9997F, 35F);
|
||||
this.label11.StylePriority.UseFont = false;
|
||||
this.label11.StylePriority.UseTextAlignment = false;
|
||||
this.label11.Text = "Ahogyan már többször jeleztük - az Ön szerződése szerint kiküldött - számlák fize" +
|
||||
"tési határideje lejárt. A mai napig fennálló kintlévősége:";
|
||||
this.label11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
|
||||
//
|
||||
// tableRow1
|
||||
//
|
||||
this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell1,
|
||||
this.tableCell2,
|
||||
this.tableCell3,
|
||||
this.tableCell4});
|
||||
this.tableRow1.Name = "tableRow1";
|
||||
this.tableRow1.Weight = 1D;
|
||||
//
|
||||
// tableCell1
|
||||
//
|
||||
this.tableCell1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.tableCell1.Name = "tableCell1";
|
||||
this.tableCell1.StylePriority.UseFont = false;
|
||||
this.tableCell1.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell1.Text = "Számlaszám";
|
||||
this.tableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell1.Weight = 0.84665348820724984D;
|
||||
//
|
||||
// tableCell2
|
||||
//
|
||||
this.tableCell2.Name = "tableCell2";
|
||||
this.tableCell2.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell2.Text = "Bruttó összeg";
|
||||
this.tableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.tableCell2.Weight = 0.69444424445176711D;
|
||||
//
|
||||
// tableCell3
|
||||
//
|
||||
this.tableCell3.Name = "tableCell3";
|
||||
this.tableCell3.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell3.Text = "Nyitott összeg";
|
||||
this.tableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.tableCell3.Weight = 0.6230980386710383D;
|
||||
//
|
||||
// tableCell4
|
||||
//
|
||||
this.tableCell4.Name = "tableCell4";
|
||||
this.tableCell4.Text = "Fizetési határidő";
|
||||
this.tableCell4.Weight = 0.83580422866994486D;
|
||||
//
|
||||
// table3
|
||||
//
|
||||
this.table3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.table3.BorderWidth = 2;
|
||||
this.table3.LocationFloat = new DevExpress.Utils.PointFloat(185.417F, 0F);
|
||||
this.table3.Name = "table3";
|
||||
this.table3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow3});
|
||||
this.table3.SizeF = new System.Drawing.SizeF(288.5416F, 25F);
|
||||
this.table3.StylePriority.UseBorders = false;
|
||||
this.table3.StylePriority.UseBorderWidth = false;
|
||||
//
|
||||
// tableRow3
|
||||
//
|
||||
this.tableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell9,
|
||||
this.tableCell10});
|
||||
this.tableRow3.Name = "tableRow3";
|
||||
this.tableRow3.Weight = 1D;
|
||||
//
|
||||
// tableCell9
|
||||
//
|
||||
this.tableCell9.BorderWidth = 2;
|
||||
this.tableCell9.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.tableCell9.Multiline = true;
|
||||
this.tableCell9.Name = "tableCell9";
|
||||
this.tableCell9.StylePriority.UseBorderWidth = false;
|
||||
this.tableCell9.StylePriority.UseFont = false;
|
||||
this.tableCell9.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell9.Text = "Összesen";
|
||||
this.tableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.tableCell9.Weight = 1.5208322143554685D;
|
||||
//
|
||||
// tableCell10
|
||||
//
|
||||
this.tableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BalanceHUF")});
|
||||
this.tableCell10.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.tableCell10.Name = "tableCell10";
|
||||
this.tableCell10.StylePriority.UseFont = false;
|
||||
this.tableCell10.StylePriority.UseTextAlignment = false;
|
||||
summary1.FormatString = "{0:#,#}";
|
||||
summary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.tableCell10.Summary = summary1;
|
||||
this.tableCell10.Text = "tableCell10";
|
||||
this.tableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.tableCell10.Weight = 1.3645837402343752D;
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.White;
|
||||
this.Title.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.White;
|
||||
this.FieldCaption.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.White;
|
||||
this.PageInfo.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.White;
|
||||
this.DataField.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// xafReport1
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.GroupHeader1,
|
||||
this.PageFooter,
|
||||
this.GroupFooter1});
|
||||
this.DisplayName = "Fizetési felszólítás/ Rendkívüli felmondás";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.Margins = new System.Drawing.Printing.Margins(90, 80, 80, 80);
|
||||
this.Name = "xafReport1";
|
||||
this.PageHeight = 1169;
|
||||
this.PageWidth = 827;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "10.2";
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table3)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,901 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v10.2, Version=10.2.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v10.2.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>en-US</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v10.2.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.ExpressApp.v10.2.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Xpo.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.Xpo.v10.2.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraReports.v10.2.Extensions\10.2.8.0__b88d1754d700e49a\DevExpress.XtraReports.v10.2.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraBars.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.XtraBars.v10.2.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraCharts.v10.2.Extensions\10.2.8.0__b88d1754d700e49a\DevExpress.XtraCharts.v10.2.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraPrinting.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.XtraPrinting.v10.2.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraRichEdit.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.XtraRichEdit.v10.2.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.RichEdit.v10.2.Core\10.2.8.0__b88d1754d700e49a\DevExpress.RichEdit.v10.2.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraTreeList.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.XtraTreeList.v10.2.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraNavBar.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.XtraNavBar.v10.2.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraVerticalGrid.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.XtraVerticalGrid.v10.2.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.CodeParser.v10.2\10.2.8.0__b88d1754d700e49a\DevExpress.CodeParser.v10.2.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class xafReport1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table2;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow2;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell5;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell6;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell7;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell8;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label31;
|
||||
private DevExpress.XtraReports.UI.XRPageInfo pageInfo1;
|
||||
private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader1;
|
||||
private DevExpress.XtraReports.UI.XRTable table1;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell2;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell3;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell4;
|
||||
private DevExpress.XtraReports.UI.XRPageBreak pageBreak1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label30;
|
||||
private DevExpress.XtraReports.UI.XRLabel label25;
|
||||
private DevExpress.XtraReports.UI.XRLabel label16;
|
||||
private DevExpress.XtraReports.UI.XRLabel label17;
|
||||
private DevExpress.XtraReports.UI.XRLabel label7;
|
||||
private DevExpress.XtraReports.UI.XRLabel label24;
|
||||
private DevExpress.XtraReports.UI.XRLabel label14;
|
||||
private DevExpress.XtraReports.UI.XRLabel label9;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label29;
|
||||
private DevExpress.XtraReports.UI.XRLabel label4;
|
||||
private DevExpress.XtraReports.UI.XRLabel label18;
|
||||
private DevExpress.XtraReports.UI.XRLabel label19;
|
||||
private DevExpress.XtraReports.UI.XRLabel label3;
|
||||
private DevExpress.XtraReports.UI.XRLabel label20;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label21;
|
||||
private DevExpress.XtraReports.UI.XRLabel label22;
|
||||
private DevExpress.XtraReports.UI.XRLabel label23;
|
||||
private DevExpress.XtraReports.UI.XRLabel label10;
|
||||
private DevExpress.XtraReports.UI.XRLabel label5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label13;
|
||||
private DevExpress.XtraReports.UI.XRLabel label8;
|
||||
private DevExpress.XtraReports.UI.XRLabel label26;
|
||||
private DevExpress.XtraReports.UI.XRLabel label15;
|
||||
private DevExpress.XtraReports.UI.XRLabel label28;
|
||||
private DevExpress.XtraReports.UI.XRLabel label27;
|
||||
private DevExpress.XtraReports.UI.XRPictureBox pictureBox1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label11;
|
||||
private DevExpress.XtraReports.UI.PageFooterBand PageFooter;
|
||||
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1;
|
||||
private DevExpress.XtraReports.UI.XRTable table3;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow3;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell9;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell10;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public xafReport1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAHAAAAAAAAAFBBRFBBRFAFQIOW8kP3rsZ0uN7j8d/grBNR4gGHaUXVHBt5KwAAAOIAAABjAAAAPAAAAMkAAAAAAAAAlAAAAOsBAAAmRABhAHQAYQBTAG8AdQByAGMAZQBDAGwAYQBzAHMATgBhAG0AZQAAAAAADEYAaQBsAHQAZQByACMAAAAiRgBpAGwAdABlAHIARABlAHMAYwByAGkAcAB0AGkAbwBuACUAAAAsRgBpAGwAdABlAHIARgBvAHIARABlAHMAaQBnAG4AUAByAGUAdgBpAGUAdwAnAAAAMFAAYQByAGEAbQBlAHQAZQByAHMATwBiAGoAZQBjAHQAVAB5AHAAZQBOAGEAbQBlACkAAAAUUgBlAHAAbwByAHQATgBhAG0AZQAqAAAAGGwAYQBiAGUAbAAyADAALgBUAGUAeAB0AEQAAAABIVNJU0J1c2luZXNzLk1vZHVsZS5Bc3NldHNIYW5kbGluZwEAAQABAAABGEZpemV0w6lzaSBmZWxzesOzbMOtdMOhcwHxAUhhIMOWbiBtw6FyIGludMOpemtlZGV0dCBheiB1dGFsw6FzcsOzbCwga8OpcmrDvGssIGvDvGxkamUgZWwgYXogw6F0dXRhbMOhc2kgbWVnYsOtesOhcyB2YWd5IGEgYmFua2tpdm9uYXQgbcOhc29sYXTDoXQsIGhvZ3kgYSBiYW5rbsOhbCB0dWRqdW5rIMOpcmRla2zFkWRuaSBhIGZlbG1lcsO8bHQgcHJvYmzDqW3DoXLDs2wsIHMgZWJiZW4gYXogZXNldGJlbiBsZXZlbMO8bmtldCB0ZWtpbnRzZSB0w6FyZ3l0YWxhbm5hay4=";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
DevExpress.XtraReports.UI.XRSummary summary1 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||
this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
|
||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.table2 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label31 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.pageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo();
|
||||
this.table1 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.pageBreak1 = new DevExpress.XtraReports.UI.XRPageBreak();
|
||||
this.label30 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label25 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label16 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label17 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label24 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label14 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label29 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label18 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label19 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label20 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label21 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label22 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label23 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label13 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label26 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label15 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label28 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label27 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.pictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
|
||||
this.label11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.tableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.table3 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.tableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table3)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table2});
|
||||
this.detailBand1.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.detailBand1.HeightF = 25F;
|
||||
this.detailBand1.KeepTogetherWithDetailReports = true;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
this.detailBand1.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("DatePayment", DevExpress.XtraReports.UI.XRColumnSortOrder.Descending)});
|
||||
this.detailBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 80F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label31,
|
||||
this.pageInfo1});
|
||||
this.bottomMarginBand1.HeightF = 80F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// GroupHeader1
|
||||
//
|
||||
this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table1,
|
||||
this.pageBreak1,
|
||||
this.label30,
|
||||
this.label25,
|
||||
this.label16,
|
||||
this.label17,
|
||||
this.label7,
|
||||
this.label24,
|
||||
this.label14,
|
||||
this.label9,
|
||||
this.label2,
|
||||
this.label1,
|
||||
this.label29,
|
||||
this.label4,
|
||||
this.label18,
|
||||
this.label19,
|
||||
this.label3,
|
||||
this.label20,
|
||||
this.label6,
|
||||
this.label21,
|
||||
this.label22,
|
||||
this.label23,
|
||||
this.label10,
|
||||
this.label5,
|
||||
this.label13,
|
||||
this.label8,
|
||||
this.label26,
|
||||
this.label15,
|
||||
this.label28,
|
||||
this.label27,
|
||||
this.pictureBox1,
|
||||
this.label11});
|
||||
this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("Customers.DisplayName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
|
||||
this.GroupHeader1.HeightF = 1094.792F;
|
||||
this.GroupHeader1.KeepTogether = true;
|
||||
this.GroupHeader1.Name = "GroupHeader1";
|
||||
//
|
||||
// PageFooter
|
||||
//
|
||||
this.PageFooter.HeightF = 0F;
|
||||
this.PageFooter.Name = "PageFooter";
|
||||
//
|
||||
// GroupFooter1
|
||||
//
|
||||
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table3});
|
||||
this.GroupFooter1.HeightF = 28.125F;
|
||||
this.GroupFooter1.Name = "GroupFooter1";
|
||||
//
|
||||
// table2
|
||||
//
|
||||
this.table2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.table2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.table2.Name = "table2";
|
||||
this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow2});
|
||||
this.table2.SizeF = new System.Drawing.SizeF(657F, 25F);
|
||||
this.table2.StylePriority.UseBorders = false;
|
||||
//
|
||||
// tableRow2
|
||||
//
|
||||
this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell5,
|
||||
this.tableCell6,
|
||||
this.tableCell7,
|
||||
this.tableCell8});
|
||||
this.tableRow2.Name = "tableRow2";
|
||||
this.tableRow2.Weight = 1D;
|
||||
//
|
||||
// tableCell5
|
||||
//
|
||||
this.tableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DocumentNumber")});
|
||||
this.tableCell5.Name = "tableCell5";
|
||||
this.tableCell5.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell5.Text = "tableCell5";
|
||||
this.tableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell5.Weight = 1.8541702270507812D;
|
||||
//
|
||||
// tableCell6
|
||||
//
|
||||
this.tableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountHUF_Account", "{0:#,#}")});
|
||||
this.tableCell6.Name = "tableCell6";
|
||||
this.tableCell6.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell6.Text = "tableCell6";
|
||||
this.tableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.tableCell6.Weight = 1.5208322143554689D;
|
||||
//
|
||||
// tableCell7
|
||||
//
|
||||
this.tableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BalanceHUF", "{0:#,#}")});
|
||||
this.tableCell7.Name = "tableCell7";
|
||||
this.tableCell7.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell7.Text = "tableCell7";
|
||||
this.tableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.tableCell7.Weight = 1.3645840454101561D;
|
||||
//
|
||||
// tableCell8
|
||||
//
|
||||
this.tableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DatePayment", "{0:yyyy.MM.dd.}")});
|
||||
this.tableCell8.Name = "tableCell8";
|
||||
this.tableCell8.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell8.Text = "tableCell8";
|
||||
this.tableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell8.Weight = 1.8304135131835937D;
|
||||
//
|
||||
// label31
|
||||
//
|
||||
this.label31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DateClose", "{0:yyyy.MM.dd.}")});
|
||||
this.label31.LocationFloat = new DevExpress.Utils.PointFloat(508.3333F, 6.357829E-05F);
|
||||
this.label31.Name = "label31";
|
||||
this.label31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label31.SizeF = new System.Drawing.SizeF(148.6667F, 22.99995F);
|
||||
this.label31.StylePriority.UseTextAlignment = false;
|
||||
this.label31.Text = "label31";
|
||||
this.label31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// pageInfo1
|
||||
//
|
||||
this.pageInfo1.Format = "{0}. oldal, összesen {1}";
|
||||
this.pageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(265.6252F, 0F);
|
||||
this.pageInfo1.Name = "pageInfo1";
|
||||
this.pageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.pageInfo1.RunningBand = this.GroupHeader1;
|
||||
this.pageInfo1.SizeF = new System.Drawing.SizeF(127.0834F, 23F);
|
||||
//
|
||||
// table1
|
||||
//
|
||||
this.table1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.table1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.table1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 1071.25F);
|
||||
this.table1.Name = "table1";
|
||||
this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow1});
|
||||
this.table1.SizeF = new System.Drawing.SizeF(656.9997F, 23F);
|
||||
this.table1.StylePriority.UseBorders = false;
|
||||
this.table1.StylePriority.UseFont = false;
|
||||
this.table1.StylePriority.UseTextAlignment = false;
|
||||
this.table1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// pageBreak1
|
||||
//
|
||||
this.pageBreak1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 999.3752F);
|
||||
this.pageBreak1.Name = "pageBreak1";
|
||||
//
|
||||
// label30
|
||||
//
|
||||
this.label30.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label30.LocationFloat = new DevExpress.Utils.PointFloat(0.0003178914F, 1027.417F);
|
||||
this.label30.Multiline = true;
|
||||
this.label30.Name = "label30";
|
||||
this.label30.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label30.SizeF = new System.Drawing.SizeF(656.9997F, 23F);
|
||||
this.label30.StylePriority.UseFont = false;
|
||||
this.label30.StylePriority.UseTextAlignment = false;
|
||||
this.label30.Text = "Lejárt fizetési határidejű számlák\r\n";
|
||||
this.label30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label25
|
||||
//
|
||||
this.label25.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label25.LocationFloat = new DevExpress.Utils.PointFloat(0.0006357829F, 892.7085F);
|
||||
this.label25.Name = "label25";
|
||||
this.label25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label25.SizeF = new System.Drawing.SizeF(197.9166F, 20.00006F);
|
||||
this.label25.StylePriority.UseFont = false;
|
||||
this.label25.StylePriority.UseTextAlignment = false;
|
||||
this.label25.Text = "Pénzügyi asszisztens";
|
||||
this.label25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label16
|
||||
//
|
||||
this.label16.LocationFloat = new DevExpress.Utils.PointFloat(0.0002861023F, 593.1254F);
|
||||
this.label16.Name = "label16";
|
||||
this.label16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label16.SizeF = new System.Drawing.SizeF(100F, 15F);
|
||||
this.label16.StylePriority.UseTextAlignment = false;
|
||||
this.label16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label17
|
||||
//
|
||||
this.label17.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label17.LocationFloat = new DevExpress.Utils.PointFloat(0.0002861023F, 608.1254F);
|
||||
this.label17.Name = "label17";
|
||||
this.label17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label17.SizeF = new System.Drawing.SizeF(656.9994F, 35F);
|
||||
this.label17.StylePriority.UseFont = false;
|
||||
this.label17.StylePriority.UseTextAlignment = false;
|
||||
this.label17.Text = "Szeretnénk felhívni figyelmét, hogy kötelezettségét minél előbb teljesítse, mert " +
|
||||
"a késedelmi kamat kiszámlázásától nem áll módunkban eltekinteni!";
|
||||
this.label17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
|
||||
//
|
||||
// label7
|
||||
//
|
||||
this.label7.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label7.LocationFloat = new DevExpress.Utils.PointFloat(0.0003178914F, 422.625F);
|
||||
this.label7.Name = "label7";
|
||||
this.label7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label7.SizeF = new System.Drawing.SizeF(48.95834F, 23F);
|
||||
this.label7.StylePriority.UseFont = false;
|
||||
this.label7.StylePriority.UseTextAlignment = false;
|
||||
this.label7.Text = "Tárgy: ";
|
||||
this.label7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label24
|
||||
//
|
||||
this.label24.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label24.LocationFloat = new DevExpress.Utils.PointFloat(0.0003178914F, 872.7085F);
|
||||
this.label24.Name = "label24";
|
||||
this.label24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label24.SizeF = new System.Drawing.SizeF(100F, 20F);
|
||||
this.label24.StylePriority.UseFont = false;
|
||||
this.label24.StylePriority.UseTextAlignment = false;
|
||||
this.label24.Text = "Vida Krisztina";
|
||||
this.label24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label14
|
||||
//
|
||||
this.label14.LocationFloat = new DevExpress.Utils.PointFloat(0.0002861023F, 558.1254F);
|
||||
this.label14.Name = "label14";
|
||||
this.label14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label14.SizeF = new System.Drawing.SizeF(100F, 15F);
|
||||
this.label14.StylePriority.UseTextAlignment = false;
|
||||
this.label14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label9
|
||||
//
|
||||
this.label9.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.label9.LocationFloat = new DevExpress.Utils.PointFloat(48.95865F, 422.625F);
|
||||
this.label9.Name = "label9";
|
||||
this.label9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label9.SizeF = new System.Drawing.SizeF(201.0416F, 23F);
|
||||
this.label9.StylePriority.UseFont = false;
|
||||
this.label9.StylePriority.UseTextAlignment = false;
|
||||
this.label9.Text = "Fizetési felszólítás";
|
||||
this.label9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Italic);
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 235.3959F);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label2.StylePriority.UseFont = false;
|
||||
this.label2.StylePriority.UseTextAlignment = false;
|
||||
this.label2.Text = "mint a";
|
||||
this.label2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 164.9168F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label1.StylePriority.UseFont = false;
|
||||
this.label1.StylePriority.UseTextAlignment = false;
|
||||
this.label1.Text = "Feladó:";
|
||||
this.label1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label29
|
||||
//
|
||||
this.label29.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label29.LocationFloat = new DevExpress.Utils.PointFloat(0.0003178915F, 129.9167F);
|
||||
this.label29.Name = "label29";
|
||||
this.label29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label29.SizeF = new System.Drawing.SizeF(255.2083F, 17F);
|
||||
this.label29.StylePriority.UseFont = false;
|
||||
this.label29.StylePriority.UseTextAlignment = false;
|
||||
this.label29.Text = "E-mail: pestihazak@pestihazak.hu";
|
||||
this.label29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Italic);
|
||||
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 305.8751F);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label4.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label4.StylePriority.UseFont = false;
|
||||
this.label4.StylePriority.UseTextAlignment = false;
|
||||
this.label4.Text = "megbízottja.";
|
||||
this.label4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label18
|
||||
//
|
||||
this.label18.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label18.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 187.9166F);
|
||||
this.label18.Name = "label18";
|
||||
this.label18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label18.SizeF = new System.Drawing.SizeF(380.2084F, 17F);
|
||||
this.label18.StylePriority.UseFont = false;
|
||||
this.label18.StylePriority.UseTextAlignment = false;
|
||||
this.label18.Text = "PH Ingatlanvagyon-kezelő Kft.";
|
||||
this.label18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label19
|
||||
//
|
||||
this.label19.LocationFloat = new DevExpress.Utils.PointFloat(0.0002861023F, 648.1252F);
|
||||
this.label19.Name = "label19";
|
||||
this.label19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label19.SizeF = new System.Drawing.SizeF(100F, 15F);
|
||||
this.label19.StylePriority.UseTextAlignment = false;
|
||||
this.label19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomersFrom.DisplayName")});
|
||||
this.label3.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label3.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 271.8751F);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label3.SizeF = new System.Drawing.SizeF(380.2083F, 17F);
|
||||
this.label3.StylePriority.UseFont = false;
|
||||
this.label3.StylePriority.UseTextAlignment = false;
|
||||
this.label3.Text = "label3";
|
||||
this.label3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label20
|
||||
//
|
||||
this.label20.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label20.LocationFloat = new DevExpress.Utils.PointFloat(0.0002861023F, 663.1252F);
|
||||
this.label20.Name = "label20";
|
||||
this.label20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label20.SizeF = new System.Drawing.SizeF(656.9997F, 52F);
|
||||
this.label20.StylePriority.UseFont = false;
|
||||
this.label20.StylePriority.UseTextAlignment = false;
|
||||
this.label20.Text = resources.GetString("label20.Text");
|
||||
this.label20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Customers.DisplayName")});
|
||||
this.label6.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(0.0003178914F, 372.1666F);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label6.SizeF = new System.Drawing.SizeF(380.2083F, 23F);
|
||||
this.label6.StylePriority.UseFont = false;
|
||||
this.label6.StylePriority.UseTextAlignment = false;
|
||||
this.label6.Text = "label6";
|
||||
this.label6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label21
|
||||
//
|
||||
this.label21.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label21.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 204.9167F);
|
||||
this.label21.Name = "label21";
|
||||
this.label21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label21.SizeF = new System.Drawing.SizeF(380.2083F, 17F);
|
||||
this.label21.StylePriority.UseFont = false;
|
||||
this.label21.StylePriority.UseTextAlignment = false;
|
||||
this.label21.Text = "1094 Budapest Ferenc tér 2-3. VI/1.";
|
||||
this.label21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label22
|
||||
//
|
||||
this.label22.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label22.LocationFloat = new DevExpress.Utils.PointFloat(0F, 751.0421F);
|
||||
this.label22.Name = "label22";
|
||||
this.label22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label22.SizeF = new System.Drawing.SizeF(473.9583F, 20F);
|
||||
this.label22.StylePriority.UseFont = false;
|
||||
this.label22.StylePriority.UseTextAlignment = false;
|
||||
this.label22.Text = "Budapest, [DateClose!yyyy.MMMM.dd.]";
|
||||
this.label22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label23
|
||||
//
|
||||
this.label23.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label23.LocationFloat = new DevExpress.Utils.PointFloat(0F, 811.8752F);
|
||||
this.label23.Name = "label23";
|
||||
this.label23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label23.SizeF = new System.Drawing.SizeF(100F, 20F);
|
||||
this.label23.StylePriority.UseFont = false;
|
||||
this.label23.StylePriority.UseTextAlignment = false;
|
||||
this.label23.Text = "Tisztelettel:";
|
||||
this.label23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label10
|
||||
//
|
||||
this.label10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomersFrom.Address1.FullAddress")});
|
||||
this.label10.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label10.LocationFloat = new DevExpress.Utils.PointFloat(0F, 288.8751F);
|
||||
this.label10.Name = "label10";
|
||||
this.label10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label10.SizeF = new System.Drawing.SizeF(380.2083F, 17F);
|
||||
this.label10.StylePriority.UseFont = false;
|
||||
this.label10.StylePriority.UseTextAlignment = false;
|
||||
this.label10.Text = "label10";
|
||||
this.label10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label5
|
||||
//
|
||||
this.label5.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(0.0003178914F, 349.1667F);
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label5.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label5.StylePriority.UseFont = false;
|
||||
this.label5.StylePriority.UseTextAlignment = false;
|
||||
this.label5.Text = "Címzett:";
|
||||
this.label5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label13
|
||||
//
|
||||
this.label13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountHUF_Account", "{0:#,#\',- Ft\'}")});
|
||||
this.label13.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label13.LocationFloat = new DevExpress.Utils.PointFloat(291.6666F, 533.1255F);
|
||||
this.label13.Name = "label13";
|
||||
this.label13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label13.SizeF = new System.Drawing.SizeF(182.2917F, 20F);
|
||||
this.label13.StylePriority.UseFont = false;
|
||||
this.label13.StylePriority.UseTextAlignment = false;
|
||||
this.label13.Text = "label13";
|
||||
this.label13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label8
|
||||
//
|
||||
this.label8.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
|
||||
this.label8.LocationFloat = new DevExpress.Utils.PointFloat(0.0003178914F, 473.0834F);
|
||||
this.label8.Name = "label8";
|
||||
this.label8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label8.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label8.StylePriority.UseFont = false;
|
||||
this.label8.StylePriority.UseTextAlignment = false;
|
||||
this.label8.Text = "Tisztelt Bérlő!";
|
||||
this.label8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label26
|
||||
//
|
||||
this.label26.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label26.LocationFloat = new DevExpress.Utils.PointFloat(0.0003178914F, 912.7086F);
|
||||
this.label26.Name = "label26";
|
||||
this.label26.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label26.SizeF = new System.Drawing.SizeF(197.9167F, 19.99994F);
|
||||
this.label26.StylePriority.UseFont = false;
|
||||
this.label26.StylePriority.UseTextAlignment = false;
|
||||
this.label26.Text = "PH Ingatlanvagyon-kezelő Kft.";
|
||||
this.label26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label15
|
||||
//
|
||||
this.label15.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label15.LocationFloat = new DevExpress.Utils.PointFloat(0.0002861023F, 573.1254F);
|
||||
this.label15.Name = "label15";
|
||||
this.label15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label15.SizeF = new System.Drawing.SizeF(552.08F, 17F);
|
||||
this.label15.StylePriority.UseFont = false;
|
||||
this.label15.StylePriority.UseTextAlignment = false;
|
||||
this.label15.Text = "Kérjük, hogy az elmaradt díjakat három napon belül átutalni szíveskedjék!";
|
||||
this.label15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label28
|
||||
//
|
||||
this.label28.LocationFloat = new DevExpress.Utils.PointFloat(0.0002543132F, 112.9166F);
|
||||
this.label28.Name = "label28";
|
||||
this.label28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label28.SizeF = new System.Drawing.SizeF(255.2083F, 17.00001F);
|
||||
this.label28.StylePriority.UseTextAlignment = false;
|
||||
this.label28.Text = "Tel./Fax: 219 54 77; 219 54 78";
|
||||
this.label28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// label27
|
||||
//
|
||||
this.label27.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 95.91663F);
|
||||
this.label27.Multiline = true;
|
||||
this.label27.Name = "label27";
|
||||
this.label27.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label27.SizeF = new System.Drawing.SizeF(255.2083F, 17F);
|
||||
this.label27.StylePriority.UseTextAlignment = false;
|
||||
this.label27.Text = "Hungary H 1094 Budapest, Ferenc tér 2-3.\r\n";
|
||||
this.label27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// pictureBox1
|
||||
//
|
||||
this.pictureBox1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Image", null, "CustomersFrom.Photo")});
|
||||
this.pictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 0F);
|
||||
this.pictureBox1.Name = "pictureBox1";
|
||||
this.pictureBox1.SizeF = new System.Drawing.SizeF(145.8333F, 95.91663F);
|
||||
//
|
||||
// label11
|
||||
//
|
||||
this.label11.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label11.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 518.1254F);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label11.SizeF = new System.Drawing.SizeF(656.9996F, 35F);
|
||||
this.label11.StylePriority.UseFont = false;
|
||||
this.label11.StylePriority.UseTextAlignment = false;
|
||||
this.label11.Text = "Bizonyára elkerülte figyelmét, hogy a szerződése szerint kiküldött számlák fizeté" +
|
||||
"si határideje több mint 8 napja lejárt. A mai napig fennálló kintlévősége:";
|
||||
this.label11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
|
||||
//
|
||||
// tableRow1
|
||||
//
|
||||
this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell1,
|
||||
this.tableCell2,
|
||||
this.tableCell3,
|
||||
this.tableCell4});
|
||||
this.tableRow1.Name = "tableRow1";
|
||||
this.tableRow1.Weight = 1D;
|
||||
//
|
||||
// tableCell1
|
||||
//
|
||||
this.tableCell1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.tableCell1.Name = "tableCell1";
|
||||
this.tableCell1.StylePriority.UseFont = false;
|
||||
this.tableCell1.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell1.Text = "Számlaszám";
|
||||
this.tableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.tableCell1.Weight = 0.84665348820724984D;
|
||||
//
|
||||
// tableCell2
|
||||
//
|
||||
this.tableCell2.Name = "tableCell2";
|
||||
this.tableCell2.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell2.Text = "Bruttó összeg";
|
||||
this.tableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.tableCell2.Weight = 0.69444424445176711D;
|
||||
//
|
||||
// tableCell3
|
||||
//
|
||||
this.tableCell3.Name = "tableCell3";
|
||||
this.tableCell3.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell3.Text = "Nyitott összeg";
|
||||
this.tableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.tableCell3.Weight = 0.6230980386710383D;
|
||||
//
|
||||
// tableCell4
|
||||
//
|
||||
this.tableCell4.Name = "tableCell4";
|
||||
this.tableCell4.Text = "Fizetési határidő";
|
||||
this.tableCell4.Weight = 0.83580422866994486D;
|
||||
//
|
||||
// table3
|
||||
//
|
||||
this.table3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.table3.BorderWidth = 2;
|
||||
this.table3.LocationFloat = new DevExpress.Utils.PointFloat(185.417F, 0F);
|
||||
this.table3.Name = "table3";
|
||||
this.table3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow3});
|
||||
this.table3.SizeF = new System.Drawing.SizeF(288.5416F, 25F);
|
||||
this.table3.StylePriority.UseBorders = false;
|
||||
this.table3.StylePriority.UseBorderWidth = false;
|
||||
//
|
||||
// tableRow3
|
||||
//
|
||||
this.tableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell9,
|
||||
this.tableCell10});
|
||||
this.tableRow3.Name = "tableRow3";
|
||||
this.tableRow3.Weight = 1D;
|
||||
//
|
||||
// tableCell9
|
||||
//
|
||||
this.tableCell9.BorderWidth = 2;
|
||||
this.tableCell9.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.tableCell9.Multiline = true;
|
||||
this.tableCell9.Name = "tableCell9";
|
||||
this.tableCell9.StylePriority.UseBorderWidth = false;
|
||||
this.tableCell9.StylePriority.UseFont = false;
|
||||
this.tableCell9.StylePriority.UseTextAlignment = false;
|
||||
this.tableCell9.Text = "Összesen";
|
||||
this.tableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.tableCell9.Weight = 1.5208322143554685D;
|
||||
//
|
||||
// tableCell10
|
||||
//
|
||||
this.tableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BalanceHUF")});
|
||||
this.tableCell10.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.tableCell10.Name = "tableCell10";
|
||||
this.tableCell10.StylePriority.UseFont = false;
|
||||
this.tableCell10.StylePriority.UseTextAlignment = false;
|
||||
summary1.FormatString = "{0:#,#}";
|
||||
summary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.tableCell10.Summary = summary1;
|
||||
this.tableCell10.Text = "tableCell10";
|
||||
this.tableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.tableCell10.Weight = 1.3645837402343752D;
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.White;
|
||||
this.Title.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.White;
|
||||
this.FieldCaption.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.White;
|
||||
this.PageInfo.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.White;
|
||||
this.DataField.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// xafReport1
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.GroupHeader1,
|
||||
this.PageFooter,
|
||||
this.GroupFooter1});
|
||||
this.DisplayName = "Fizetési felszólítás";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.Margins = new System.Drawing.Printing.Margins(90, 80, 80, 80);
|
||||
this.Name = "xafReport1";
|
||||
this.PageHeight = 1169;
|
||||
this.PageWidth = 827;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "10.2";
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table3)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,990 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v11.1, Version=11.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v11.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>en-US</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.ExpressApp.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Xpo.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.Xpo.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraReports.v11.1.Extensions\11.1.4.0__b88d1754d700e49a\DevExpress.XtraReports.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraBars.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.XtraBars.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Reports.v11.1.Designer\11.1.4.0__b88d1754d700e49a\DevExpress.Reports.v11.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraCharts.v11.1.Extensions\11.1.4.0__b88d1754d700e49a\DevExpress.XtraCharts.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraPrinting.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.XtraPrinting.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraRichEdit.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.XtraRichEdit.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.RichEdit.v11.1.Core\11.1.4.0__b88d1754d700e49a\DevExpress.RichEdit.v11.1.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraTreeList.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.XtraTreeList.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraNavBar.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.XtraNavBar.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraVerticalGrid.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.XtraVerticalGrid.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.CodeParser.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.CodeParser.v11.1.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class xafReport1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRLine line6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label47;
|
||||
private DevExpress.XtraReports.UI.XRLabel label46;
|
||||
private DevExpress.XtraReports.UI.XRLabel label45;
|
||||
private DevExpress.XtraReports.UI.XRLabel label44;
|
||||
private DevExpress.XtraReports.UI.XRLabel label43;
|
||||
private DevExpress.XtraReports.UI.XRLabel label42;
|
||||
private DevExpress.XtraReports.UI.XRLabel label41;
|
||||
private DevExpress.XtraReports.UI.PageFooterBand pageFooterBand1;
|
||||
private DevExpress.XtraReports.UI.ReportHeaderBand reportHeaderBand1;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label67;
|
||||
private DevExpress.XtraReports.UI.XRPageInfo pageInfo1;
|
||||
private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader1;
|
||||
private DevExpress.XtraReports.UI.XRLabel DocumentNumber;
|
||||
private DevExpress.XtraReports.UI.XRLabel label18;
|
||||
private DevExpress.XtraReports.UI.XRLabel label17;
|
||||
private DevExpress.XtraReports.UI.XRLabel label16;
|
||||
private DevExpress.XtraReports.UI.XRLabel label15;
|
||||
private DevExpress.XtraReports.UI.XRLabel label14;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label3;
|
||||
private DevExpress.XtraReports.UI.XRLabel label4;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label7;
|
||||
private DevExpress.XtraReports.UI.XRLabel label9;
|
||||
private DevExpress.XtraReports.UI.XRLabel label10;
|
||||
private DevExpress.XtraReports.UI.XRLabel label12;
|
||||
private DevExpress.XtraReports.UI.XRLabel label13;
|
||||
private DevExpress.XtraReports.UI.XRLabel label8;
|
||||
private DevExpress.XtraReports.UI.XRLabel label32;
|
||||
private DevExpress.XtraReports.UI.XRLabel label34;
|
||||
private DevExpress.XtraReports.UI.XRLabel label36;
|
||||
private DevExpress.XtraReports.UI.XRLabel label37;
|
||||
private DevExpress.XtraReports.UI.XRLabel label38;
|
||||
private DevExpress.XtraReports.UI.XRLabel label39;
|
||||
private DevExpress.XtraReports.UI.XRLabel label40;
|
||||
private DevExpress.XtraReports.UI.XRLine line1;
|
||||
private DevExpress.XtraReports.UI.XRLine line2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label28;
|
||||
private DevExpress.XtraReports.UI.XRLabel label5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label29;
|
||||
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label25;
|
||||
private DevExpress.XtraReports.UI.XRLabel label24;
|
||||
private DevExpress.XtraReports.UI.XRLabel label23;
|
||||
private DevExpress.XtraReports.UI.XRLabel label22;
|
||||
private DevExpress.XtraReports.UI.XRLabel label20;
|
||||
private DevExpress.XtraReports.UI.XRLine line3;
|
||||
private DevExpress.XtraReports.UI.XRLabel label11;
|
||||
private DevExpress.XtraReports.UI.XRLabel label19;
|
||||
private DevExpress.XtraReports.UI.XRLabel label61;
|
||||
private DevExpress.XtraReports.UI.XRLine line5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label64;
|
||||
private DevExpress.XtraReports.UI.XRLine line8;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Stornó;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private DevExpress.XtraReports.UI.CalculatedField Address_CustomersFrom;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public xafReport1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = "zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJza" +
|
||||
"W9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4O" +
|
||||
"SNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAIAAAAAAAAAFBBRFBBRFAFQIOW8" +
|
||||
"kP3rkhecsHGdLje4/Hf4KwTUeIBh2lF1RwbeVYAAAANAQAAAAAAAI4AAABnAAAA9AAAACsAAAC/AAAAH" +
|
||||
"gIAACYkAHQAaABpAHMALgBTAGMAcgBpAHAAdABzAFMAbwB1AHIAYwBlAAAAAAAmRABhAHQAYQBTAG8Ad" +
|
||||
"QByAGMAZQBDAGwAYQBzAHMATgBhAG0AZQBzAgAADEYAaQBsAHQAZQByAJMCAAAiRgBpAGwAdABlAHIAR" +
|
||||
"ABlAHMAYwByAGkAcAB0AGkAbwBuAJUCAAAsRgBpAGwAdABlAHIARgBvAHIARABlAHMAaQBnAG4AUAByA" +
|
||||
"GUAdgBpAGUAdwCXAgAAMFAAYQByAGEAbQBlAHQAZQByAHMATwBiAGoAZQBjAHQAVAB5AHAAZQBOAGEAb" +
|
||||
"QBlAJkCAAAUUgBlAHAAbwByAHQATgBhAG0AZQCaAgAAGGwAYQBiAGUAbAAyADAALgBUAGUAeAB0ALECA" +
|
||||
"AAB8ARkaW0gX09pZEN1cnJlbnQgYXMgc3RyaW5nDQpkaW0gX09pZFByZXYgYXMgc3RyaW5nDQoNClBya" +
|
||||
"XZhdGUgU3ViIGxhYmVsNjFfQmVmb3JlUHJpbnQoQnlWYWwgc2VuZGVyIEFzIE9iamVjdCwgQnlWYWwgZ" +
|
||||
"SBBcyBTeXN0ZW0uRHJhd2luZy5QcmludGluZy5QcmludEV2ZW50QXJncykNCmxhYmVsNjEuVGV4dD1sY" +
|
||||
"WJlbDYxLlRleHQgJiAiICIgJiBsYWJlbDQ0LlRleHQNCkVuZCBTdWINCg0KUHJpdmF0ZSBTdWIgc3Vic" +
|
||||
"mVwb3J0MV9CZWZvcmVQcmludChCeVZhbCBzZW5kZXIgQXMgT2JqZWN0LCBCeVZhbCBlIEFzIFN5c3Rlb" +
|
||||
"S5EcmF3aW5nLlByaW50aW5nLlByaW50RXZlbnRBcmdzKQ0KQ1R5cGUoc2VuZGVyLCBYUlN1YnJlcG9yd" +
|
||||
"CkuUmVwb3J0U291cmNlLkZpbHRlclN0cmluZz0iSW52b2ljZUhlYWRlci5PaWQ9JyIgJiBsYWJlbDExL" +
|
||||
"lRleHQuVG9TdHJpbmcgJiAiJyINCg0KRW5kIFN1Yg0KDQpQcml2YXRlIFN1YiBsYWJlbDFfQmVmb3JlU" +
|
||||
"HJpbnQoQnlWYWwgc2VuZGVyIEFzIE9iamVjdCwgQnlWYWwgZSBBcyBTeXN0ZW0uRHJhd2luZy5Qcmlud" +
|
||||
"GluZy5QcmludEV2ZW50QXJncykNCmlmIERvY3VtZW50TnVtYmVyLlRleHQ9IiIgdGhlbiBsYWJlbDEuV" +
|
||||
"GV4dD0iUFLDk0JBU1rDgU1MQSINCkVuZCBTdWIBHlNJU0J1c2luZXNzLk1vZHVsZS5JbnZvaWNlUm93c" +
|
||||
"wEAAQABAAABFUZpemV0w6lzaSDDiXJ0ZXPDrXTFkQH1AUvDqXJlbSwgaG9neSBzesOtdmVza2VkamVuZ" +
|
||||
"WsgdGFydG96w6FzdWthdCBoYWxhZMOpa3RhbGFudWwgcmVuZGV6bmkhIEFtZW5ueWliZW4gamVsZW4gw" +
|
||||
"6lydGVzw610xZFiZW4gc3plcmVwbMWRIGVneWVubGVnZXQgYSBrw6l6aGV6dsOpdGVsdMWRbCBzesOhb" +
|
||||
"cOtdG90dCAxNSBuYXBvbiBiZWzDvGwgw61yw6FzYmVsaSBueWlsYXRrb3phdGJhbiBuZW0ga2lmb2fDo" +
|
||||
"XNvbGrDoWssIGF6dCBlbGZvZ2Fkb3R0bmFrIHRla2ludGrDvGsu";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.pageFooterBand1 = new DevExpress.XtraReports.UI.PageFooterBand();
|
||||
this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||
this.line6 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label47 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label46 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label45 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label44 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label43 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label42 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label41 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label67 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.pageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo();
|
||||
this.label25 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label24 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label23 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label22 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label20 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line3 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label19 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label61 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line5 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label64 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line8 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.DocumentNumber = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label18 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label17 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label16 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label15 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label14 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label13 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label32 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label34 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label36 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label37 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label38 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label39 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label40 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line1 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.line2 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label28 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label29 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.Stornó = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.Address_CustomersFrom = new DevExpress.XtraReports.UI.CalculatedField();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line6,
|
||||
this.label47,
|
||||
this.label46,
|
||||
this.label45,
|
||||
this.label44,
|
||||
this.label43,
|
||||
this.label42,
|
||||
this.label41});
|
||||
this.detailBand1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.detailBand1.HeightF = 50.64526F;
|
||||
this.detailBand1.KeepTogether = true;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
this.detailBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// pageFooterBand1
|
||||
//
|
||||
this.pageFooterBand1.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.pageFooterBand1.HeightF = 0F;
|
||||
this.pageFooterBand1.Name = "pageFooterBand1";
|
||||
this.pageFooterBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// reportHeaderBand1
|
||||
//
|
||||
this.reportHeaderBand1.Font = new System.Drawing.Font("Arial", 9.75F);
|
||||
this.reportHeaderBand1.HeightF = 0F;
|
||||
this.reportHeaderBand1.KeepTogether = true;
|
||||
this.reportHeaderBand1.Name = "reportHeaderBand1";
|
||||
this.reportHeaderBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 56F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label67,
|
||||
this.pageInfo1});
|
||||
this.bottomMarginBand1.HeightF = 42F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// GroupFooter1
|
||||
//
|
||||
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label25,
|
||||
this.label24,
|
||||
this.label23,
|
||||
this.label22,
|
||||
this.label20,
|
||||
this.line3,
|
||||
this.label11,
|
||||
this.label19,
|
||||
this.label61,
|
||||
this.line5,
|
||||
this.label64,
|
||||
this.line8});
|
||||
this.GroupFooter1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.GroupFooter1.HeightF = 321.9625F;
|
||||
this.GroupFooter1.KeepTogether = true;
|
||||
this.GroupFooter1.Name = "GroupFooter1";
|
||||
this.GroupFooter1.PrintAtBottom = true;
|
||||
this.GroupFooter1.StylePriority.UseFont = false;
|
||||
//
|
||||
// GroupHeader1
|
||||
//
|
||||
this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.DocumentNumber,
|
||||
this.label18,
|
||||
this.label17,
|
||||
this.label16,
|
||||
this.label15,
|
||||
this.label14,
|
||||
this.label1,
|
||||
this.label2,
|
||||
this.label3,
|
||||
this.label4,
|
||||
this.label6,
|
||||
this.label7,
|
||||
this.label9,
|
||||
this.label10,
|
||||
this.label12,
|
||||
this.label13,
|
||||
this.label8,
|
||||
this.label32,
|
||||
this.label34,
|
||||
this.label36,
|
||||
this.label37,
|
||||
this.label38,
|
||||
this.label39,
|
||||
this.label40,
|
||||
this.line1,
|
||||
this.line2,
|
||||
this.label28,
|
||||
this.label5,
|
||||
this.label29});
|
||||
this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("InvoiceHeader.Oid", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
|
||||
this.GroupHeader1.HeightF = 399.6205F;
|
||||
this.GroupHeader1.KeepTogether = true;
|
||||
this.GroupHeader1.Name = "GroupHeader1";
|
||||
this.GroupHeader1.RepeatEveryPage = true;
|
||||
//
|
||||
// line6
|
||||
//
|
||||
this.line6.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.DashDot;
|
||||
this.line6.LineStyle = System.Drawing.Drawing2D.DashStyle.Dot;
|
||||
this.line6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 35.58331F);
|
||||
this.line6.Name = "line6";
|
||||
this.line6.SizeF = new System.Drawing.SizeF(741.9999F, 5.208336F);
|
||||
this.line6.StylePriority.UseBorderDashStyle = false;
|
||||
//
|
||||
// label47
|
||||
//
|
||||
this.label47.LocationFloat = new DevExpress.Utils.PointFloat(617.4506F, 9.999907F);
|
||||
this.label47.Name = "label47";
|
||||
this.label47.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label47.SizeF = new System.Drawing.SizeF(124.5495F, 17.79161F);
|
||||
this.label47.StylePriority.UseTextAlignment = false;
|
||||
this.label47.Text = "label47";
|
||||
this.label47.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label46
|
||||
//
|
||||
this.label46.LocationFloat = new DevExpress.Utils.PointFloat(490.625F, 10.00004F);
|
||||
this.label46.Name = "label46";
|
||||
this.label46.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label46.SizeF = new System.Drawing.SizeF(126.8255F, 17.79161F);
|
||||
this.label46.StylePriority.UseTextAlignment = false;
|
||||
this.label46.Text = "label46";
|
||||
this.label46.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label45
|
||||
//
|
||||
this.label45.LocationFloat = new DevExpress.Utils.PointFloat(367.7636F, 9.999876F);
|
||||
this.label45.Name = "label45";
|
||||
this.label45.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label45.SizeF = new System.Drawing.SizeF(122.8612F, 17.79167F);
|
||||
this.label45.StylePriority.UseTextAlignment = false;
|
||||
this.label45.Text = "label45";
|
||||
this.label45.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// label44
|
||||
//
|
||||
this.label44.LocationFloat = new DevExpress.Utils.PointFloat(321.6204F, 9.99992F);
|
||||
this.label44.Name = "label44";
|
||||
this.label44.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label44.SizeF = new System.Drawing.SizeF(46.14316F, 17.79167F);
|
||||
this.label44.StylePriority.UseTextAlignment = false;
|
||||
this.label44.Text = "label44";
|
||||
this.label44.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label43
|
||||
//
|
||||
this.label43.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label43.LocationFloat = new DevExpress.Utils.PointFloat(221.6205F, 10.00001F);
|
||||
this.label43.Name = "label43";
|
||||
this.label43.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label43.SizeF = new System.Drawing.SizeF(100F, 17.79167F);
|
||||
this.label43.StylePriority.UseFont = false;
|
||||
this.label43.StylePriority.UseTextAlignment = false;
|
||||
this.label43.Text = "label43";
|
||||
this.label43.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label42
|
||||
//
|
||||
this.label42.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label42.LocationFloat = new DevExpress.Utils.PointFloat(118.8333F, 9.99992F);
|
||||
this.label42.Name = "label42";
|
||||
this.label42.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label42.SizeF = new System.Drawing.SizeF(102.7872F, 17.79167F);
|
||||
this.label42.StylePriority.UseFont = false;
|
||||
this.label42.StylePriority.UseTextAlignment = false;
|
||||
this.label42.Text = "label42";
|
||||
this.label42.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// label41
|
||||
//
|
||||
this.label41.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label41.LocationFloat = new DevExpress.Utils.PointFloat(1.041438F, 10.00001F);
|
||||
this.label41.Multiline = true;
|
||||
this.label41.Name = "label41";
|
||||
this.label41.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label41.SizeF = new System.Drawing.SizeF(117.7919F, 17.7916F);
|
||||
this.label41.StylePriority.UseFont = false;
|
||||
this.label41.StylePriority.UseTextAlignment = false;
|
||||
this.label41.Text = "label41";
|
||||
this.label41.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// label67
|
||||
//
|
||||
this.label67.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Italic);
|
||||
this.label67.LocationFloat = new DevExpress.Utils.PointFloat(0F, 9.999974F);
|
||||
this.label67.Name = "label67";
|
||||
this.label67.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label67.SizeF = new System.Drawing.SizeF(394.7915F, 23F);
|
||||
this.label67.StylePriority.UseFont = false;
|
||||
this.label67.Text = "Készült a Nuvolar ERP System programmal";
|
||||
//
|
||||
// pageInfo1
|
||||
//
|
||||
this.pageInfo1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.pageInfo1.Format = "Oldal : {0}/{1}";
|
||||
this.pageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(635.4167F, 9.999974F);
|
||||
this.pageInfo1.Name = "pageInfo1";
|
||||
this.pageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.pageInfo1.RunningBand = this.GroupHeader1;
|
||||
this.pageInfo1.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.pageInfo1.StylePriority.UseFont = false;
|
||||
this.pageInfo1.StylePriority.UseTextAlignment = false;
|
||||
this.pageInfo1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label25
|
||||
//
|
||||
this.label25.LocationFloat = new DevExpress.Utils.PointFloat(3.207922F, 242.8838F);
|
||||
this.label25.Multiline = true;
|
||||
this.label25.Name = "label25";
|
||||
this.label25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label25.SizeF = new System.Drawing.SizeF(221.6205F, 22.99997F);
|
||||
this.label25.Text = "Email";
|
||||
//
|
||||
// label24
|
||||
//
|
||||
this.label24.LocationFloat = new DevExpress.Utils.PointFloat(3.207922F, 219.8838F);
|
||||
this.label24.Multiline = true;
|
||||
this.label24.Name = "label24";
|
||||
this.label24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label24.SizeF = new System.Drawing.SizeF(221.6205F, 22.99997F);
|
||||
this.label24.Text = "Telefonszám\r\n";
|
||||
//
|
||||
// label23
|
||||
//
|
||||
this.label23.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label23.LocationFloat = new DevExpress.Utils.PointFloat(1.041442F, 196.8838F);
|
||||
this.label23.Name = "label23";
|
||||
this.label23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label23.SizeF = new System.Drawing.SizeF(220.579F, 22.99998F);
|
||||
this.label23.StylePriority.UseFont = false;
|
||||
this.label23.Text = "Ügyintéző neve";
|
||||
//
|
||||
// label22
|
||||
//
|
||||
this.label22.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label22.LocationFloat = new DevExpress.Utils.PointFloat(2.483527E-05F, 165.2856F);
|
||||
this.label22.Multiline = true;
|
||||
this.label22.Name = "label22";
|
||||
this.label22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label22.SizeF = new System.Drawing.SizeF(490.6248F, 31.59824F);
|
||||
this.label22.StylePriority.UseFont = false;
|
||||
this.label22.StylePriority.UseTextAlignment = false;
|
||||
this.label22.Text = "Visszajelzésük és észrevételüket az alábbi elérhetőségeken tehetik meg:\r\n";
|
||||
this.label22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
|
||||
//
|
||||
// label20
|
||||
//
|
||||
this.label20.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
|
||||
this.label20.LocationFloat = new DevExpress.Utils.PointFloat(0F, 94.41615F);
|
||||
this.label20.Multiline = true;
|
||||
this.label20.Name = "label20";
|
||||
this.label20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label20.SizeF = new System.Drawing.SizeF(737.9169F, 52.96576F);
|
||||
this.label20.StylePriority.UseFont = false;
|
||||
this.label20.StylePriority.UseTextAlignment = false;
|
||||
this.label20.Text = resources.GetString("label20.Text");
|
||||
this.label20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleJustify;
|
||||
//
|
||||
// line3
|
||||
//
|
||||
this.line3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 43.78225F);
|
||||
this.line3.Name = "line3";
|
||||
this.line3.SizeF = new System.Drawing.SizeF(742.0001F, 11.80509F);
|
||||
//
|
||||
// label11
|
||||
//
|
||||
this.label11.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label11.LocationFloat = new DevExpress.Utils.PointFloat(492.6247F, 16.09729F);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label11.SizeF = new System.Drawing.SizeF(251.3753F, 27.68495F);
|
||||
this.label11.StylePriority.UseFont = false;
|
||||
this.label11.StylePriority.UseTextAlignment = false;
|
||||
this.label11.Text = "label20";
|
||||
this.label11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label19
|
||||
//
|
||||
this.label19.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
|
||||
this.label19.LocationFloat = new DevExpress.Utils.PointFloat(241.6946F, 16.09729F);
|
||||
this.label19.Multiline = true;
|
||||
this.label19.Name = "label19";
|
||||
this.label19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label19.SizeF = new System.Drawing.SizeF(248.9302F, 27.68495F);
|
||||
this.label19.StylePriority.UseFont = false;
|
||||
this.label19.StylePriority.UseTextAlignment = false;
|
||||
this.label19.Text = "Összes fennálló tartozás:\r\n";
|
||||
this.label19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label61
|
||||
//
|
||||
this.label61.LocationFloat = new DevExpress.Utils.PointFloat(3.207932F, 55.58731F);
|
||||
this.label61.Name = "label61";
|
||||
this.label61.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label61.Scripts.OnBeforePrint = "label61_BeforePrint";
|
||||
this.label61.SizeF = new System.Drawing.SizeF(737.9169F, 23F);
|
||||
this.label61.StylePriority.UseTextAlignment = false;
|
||||
this.label61.Text = "[InvoiceHeader.HUNumberToText]";
|
||||
this.label61.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// line5
|
||||
//
|
||||
this.line5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 9.146129F);
|
||||
this.line5.Name = "line5";
|
||||
this.line5.SizeF = new System.Drawing.SizeF(742.0001F, 6.951196F);
|
||||
//
|
||||
// label64
|
||||
//
|
||||
this.label64.LocationFloat = new DevExpress.Utils.PointFloat(538.5859F, 303.1292F);
|
||||
this.label64.Multiline = true;
|
||||
this.label64.Name = "label64";
|
||||
this.label64.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label64.SizeF = new System.Drawing.SizeF(100F, 18.83334F);
|
||||
this.label64.StylePriority.UseTextAlignment = false;
|
||||
this.label64.Text = "Kiállító\r\n";
|
||||
this.label64.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// line8
|
||||
//
|
||||
this.line8.LocationFloat = new DevExpress.Utils.PointFloat(490.6248F, 291.1292F);
|
||||
this.line8.Name = "line8";
|
||||
this.line8.SizeF = new System.Drawing.SizeF(186.4583F, 2F);
|
||||
//
|
||||
// DocumentNumber
|
||||
//
|
||||
this.DocumentNumber.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.DocumentNumber.LocationFloat = new DevExpress.Utils.PointFloat(590.6249F, 201.656F);
|
||||
this.DocumentNumber.Multiline = true;
|
||||
this.DocumentNumber.Name = "DocumentNumber";
|
||||
this.DocumentNumber.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.DocumentNumber.SizeF = new System.Drawing.SizeF(149.2916F, 23F);
|
||||
this.DocumentNumber.StylePriority.UseFont = false;
|
||||
this.DocumentNumber.Text = "DocumentNumber";
|
||||
//
|
||||
// label18
|
||||
//
|
||||
this.label18.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.label18.LocationFloat = new DevExpress.Utils.PointFloat(490.6249F, 201.656F);
|
||||
this.label18.Multiline = true;
|
||||
this.label18.Name = "label18";
|
||||
this.label18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label18.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label18.StylePriority.UseFont = false;
|
||||
this.label18.Text = "Sorszám\r\n";
|
||||
//
|
||||
// label17
|
||||
//
|
||||
this.label17.Font = new System.Drawing.Font("Arial", 10.5F, System.Drawing.FontStyle.Italic);
|
||||
this.label17.LocationFloat = new DevExpress.Utils.PointFloat(0F, 284.3913F);
|
||||
this.label17.Multiline = true;
|
||||
this.label17.Name = "label17";
|
||||
this.label17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label17.SizeF = new System.Drawing.SizeF(739.9165F, 45.15637F);
|
||||
this.label17.StylePriority.UseFont = false;
|
||||
this.label17.StylePriority.UseTextAlignment = false;
|
||||
this.label17.Text = "Felhívjuk szíves figyelmét, hogy nyilvántartásunk szerint az alábbi számlatételek" +
|
||||
" kiegyenlítése nem történt meg\r\nfizetési határidőn belül:\r\n";
|
||||
this.label17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopJustify;
|
||||
//
|
||||
// label16
|
||||
//
|
||||
this.label16.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.label16.LocationFloat = new DevExpress.Utils.PointFloat(0F, 249.6723F);
|
||||
this.label16.Multiline = true;
|
||||
this.label16.Name = "label16";
|
||||
this.label16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label16.SizeF = new System.Drawing.SizeF(197.0415F, 34.71906F);
|
||||
this.label16.StylePriority.UseFont = false;
|
||||
this.label16.Text = "Tisztelt Partnerünk!\r\n";
|
||||
//
|
||||
// label15
|
||||
//
|
||||
this.label15.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.label15.LocationFloat = new DevExpress.Utils.PointFloat(147.9999F, 198.4168F);
|
||||
this.label15.Multiline = true;
|
||||
this.label15.Name = "label15";
|
||||
this.label15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label15.SizeF = new System.Drawing.SizeF(147.9999F, 23F);
|
||||
this.label15.StylePriority.UseFont = false;
|
||||
this.label15.Text = "Dátum\r\n";
|
||||
//
|
||||
// label14
|
||||
//
|
||||
this.label14.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.label14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 198.4168F);
|
||||
this.label14.Name = "label14";
|
||||
this.label14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label14.SizeF = new System.Drawing.SizeF(147.9999F, 23F);
|
||||
this.label14.StylePriority.UseFont = false;
|
||||
this.label14.Text = "Kibocsátás dátuma:";
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.Scripts.OnBeforePrint = "label1_BeforePrint";
|
||||
this.label1.SizeF = new System.Drawing.SizeF(738F, 39.66667F);
|
||||
this.label1.StylePriority.UseFont = false;
|
||||
this.label1.StylePriority.UseTextAlignment = false;
|
||||
this.label1.Text = "FIZETÉSI ÉRTESÍTŐ";
|
||||
this.label1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 79.33334F);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(152.0833F, 23F);
|
||||
this.label2.StylePriority.UseFont = false;
|
||||
this.label2.Text = "Kibocsátó";
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
|
||||
this.label3.LocationFloat = new DevExpress.Utils.PointFloat(490.6249F, 79.33334F);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label3.SizeF = new System.Drawing.SizeF(71.24994F, 23F);
|
||||
this.label3.StylePriority.UseFont = false;
|
||||
this.label3.Text = "Címzett";
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(1.041436F, 102.3334F);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label4.SizeF = new System.Drawing.SizeF(251.0417F, 27.08334F);
|
||||
this.label4.StylePriority.UseFont = false;
|
||||
this.label4.Text = "Név";
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 152.4168F);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label6.SizeF = new System.Drawing.SizeF(81.25F, 22.99998F);
|
||||
this.label6.StylePriority.UseFont = false;
|
||||
this.label6.Text = "Adószám:";
|
||||
//
|
||||
// label7
|
||||
//
|
||||
this.label7.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label7.LocationFloat = new DevExpress.Utils.PointFloat(81.25F, 152.4168F);
|
||||
this.label7.Multiline = true;
|
||||
this.label7.Name = "label7";
|
||||
this.label7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label7.SizeF = new System.Drawing.SizeF(169.7917F, 22.99998F);
|
||||
this.label7.StylePriority.UseFont = false;
|
||||
this.label7.Text = "adószám\r\n";
|
||||
//
|
||||
// label9
|
||||
//
|
||||
this.label9.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label9.LocationFloat = new DevExpress.Utils.PointFloat(122.9166F, 175.4168F);
|
||||
this.label9.Name = "label9";
|
||||
this.label9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label9.SizeF = new System.Drawing.SizeF(325.5F, 23F);
|
||||
this.label9.StylePriority.UseFont = false;
|
||||
this.label9.Text = "bankszámlaszám";
|
||||
//
|
||||
// label10
|
||||
//
|
||||
this.label10.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label10.LocationFloat = new DevExpress.Utils.PointFloat(490.6249F, 102.3334F);
|
||||
this.label10.Name = "label10";
|
||||
this.label10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label10.SizeF = new System.Drawing.SizeF(251.3748F, 27.08334F);
|
||||
this.label10.StylePriority.UseFont = false;
|
||||
this.label10.Text = "Név";
|
||||
//
|
||||
// label12
|
||||
//
|
||||
this.label12.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label12.LocationFloat = new DevExpress.Utils.PointFloat(490.6248F, 152.4168F);
|
||||
this.label12.Name = "label12";
|
||||
this.label12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label12.SizeF = new System.Drawing.SizeF(77.58331F, 22.99998F);
|
||||
this.label12.StylePriority.UseFont = false;
|
||||
this.label12.Text = "Adószám:";
|
||||
//
|
||||
// label13
|
||||
//
|
||||
this.label13.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label13.LocationFloat = new DevExpress.Utils.PointFloat(568.2081F, 152.4168F);
|
||||
this.label13.Multiline = true;
|
||||
this.label13.Name = "label13";
|
||||
this.label13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label13.SizeF = new System.Drawing.SizeF(173.7916F, 22.99997F);
|
||||
this.label13.StylePriority.UseFont = false;
|
||||
this.label13.Text = "adószám";
|
||||
//
|
||||
// label8
|
||||
//
|
||||
this.label8.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label8.LocationFloat = new DevExpress.Utils.PointFloat(0F, 175.4168F);
|
||||
this.label8.Name = "label8";
|
||||
this.label8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label8.SizeF = new System.Drawing.SizeF(122.9166F, 23F);
|
||||
this.label8.StylePriority.UseFont = false;
|
||||
this.label8.Text = "Bankszámlaszám:";
|
||||
//
|
||||
// label32
|
||||
//
|
||||
this.label32.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label32.LocationFloat = new DevExpress.Utils.PointFloat(1.04144F, 355.3703F);
|
||||
this.label32.Multiline = true;
|
||||
this.label32.Name = "label32";
|
||||
this.label32.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label32.SizeF = new System.Drawing.SizeF(118.8333F, 35.49991F);
|
||||
this.label32.StylePriority.UseFont = false;
|
||||
this.label32.StylePriority.UseTextAlignment = false;
|
||||
this.label32.Text = "Bizonylatszám\r\n";
|
||||
this.label32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label34
|
||||
//
|
||||
this.label34.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label34.LocationFloat = new DevExpress.Utils.PointFloat(119.8747F, 355.3703F);
|
||||
this.label34.Name = "label34";
|
||||
this.label34.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label34.SizeF = new System.Drawing.SizeF(102.7872F, 35.49997F);
|
||||
this.label34.StylePriority.UseFont = false;
|
||||
this.label34.StylePriority.UseTextAlignment = false;
|
||||
this.label34.Text = "Teljesítés dátum";
|
||||
this.label34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label36
|
||||
//
|
||||
this.label36.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label36.LocationFloat = new DevExpress.Utils.PointFloat(222.662F, 355.3702F);
|
||||
this.label36.Name = "label36";
|
||||
this.label36.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label36.SizeF = new System.Drawing.SizeF(104.4788F, 35.50006F);
|
||||
this.label36.StylePriority.UseFont = false;
|
||||
this.label36.StylePriority.UseTextAlignment = false;
|
||||
this.label36.Text = "Fizetési határidő";
|
||||
this.label36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label37
|
||||
//
|
||||
this.label37.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label37.LocationFloat = new DevExpress.Utils.PointFloat(327.1407F, 355.3702F);
|
||||
this.label37.Name = "label37";
|
||||
this.label37.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label37.SizeF = new System.Drawing.SizeF(40.62289F, 35.49997F);
|
||||
this.label37.StylePriority.UseFont = false;
|
||||
this.label37.StylePriority.UseTextAlignment = false;
|
||||
this.label37.Text = "DEV";
|
||||
this.label37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// label38
|
||||
//
|
||||
this.label38.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label38.LocationFloat = new DevExpress.Utils.PointFloat(617.4507F, 355.3702F);
|
||||
this.label38.Multiline = true;
|
||||
this.label38.Name = "label38";
|
||||
this.label38.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label38.SizeF = new System.Drawing.SizeF(124.5494F, 35.49985F);
|
||||
this.label38.StylePriority.UseFont = false;
|
||||
this.label38.StylePriority.UseTextAlignment = false;
|
||||
this.label38.Text = "Fennálló tartozás\r\n";
|
||||
this.label38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label39
|
||||
//
|
||||
this.label39.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label39.LocationFloat = new DevExpress.Utils.PointFloat(367.7636F, 355.3703F);
|
||||
this.label39.Name = "label39";
|
||||
this.label39.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label39.SizeF = new System.Drawing.SizeF(122.8612F, 35.49988F);
|
||||
this.label39.StylePriority.UseFont = false;
|
||||
this.label39.StylePriority.UseTextAlignment = false;
|
||||
this.label39.Text = "Számla összeg";
|
||||
this.label39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// label40
|
||||
//
|
||||
this.label40.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label40.LocationFloat = new DevExpress.Utils.PointFloat(490.6248F, 355.3703F);
|
||||
this.label40.Multiline = true;
|
||||
this.label40.Name = "label40";
|
||||
this.label40.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label40.SizeF = new System.Drawing.SizeF(126.8257F, 35.49997F);
|
||||
this.label40.StylePriority.UseFont = false;
|
||||
this.label40.StylePriority.UseTextAlignment = false;
|
||||
this.label40.Text = "Kiegyenlítve\r\n";
|
||||
this.label40.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// line1
|
||||
//
|
||||
this.line1.LocationFloat = new DevExpress.Utils.PointFloat(0.1663806F, 353.287F);
|
||||
this.line1.Name = "line1";
|
||||
this.line1.SizeF = new System.Drawing.SizeF(740.9584F, 2.083313F);
|
||||
//
|
||||
// line2
|
||||
//
|
||||
this.line2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 390.8703F);
|
||||
this.line2.Name = "line2";
|
||||
this.line2.SizeF = new System.Drawing.SizeF(741.1248F, 7.713959F);
|
||||
//
|
||||
// label28
|
||||
//
|
||||
this.label28.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label28.LocationFloat = new DevExpress.Utils.PointFloat(0F, 129.4168F);
|
||||
this.label28.Multiline = true;
|
||||
this.label28.Name = "label28";
|
||||
this.label28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label28.SizeF = new System.Drawing.SizeF(251.0418F, 23.00002F);
|
||||
this.label28.StylePriority.UseFont = false;
|
||||
this.label28.Text = "cím";
|
||||
//
|
||||
// label5
|
||||
//
|
||||
this.label5.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(490.625F, 129.4168F);
|
||||
this.label5.Multiline = true;
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label5.SizeF = new System.Drawing.SizeF(251.3748F, 23.00003F);
|
||||
this.label5.StylePriority.UseFont = false;
|
||||
this.label5.Text = "cím";
|
||||
//
|
||||
// label29
|
||||
//
|
||||
this.label29.Font = new System.Drawing.Font("Arial", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
|
||||
this.label29.LocationFloat = new DevExpress.Utils.PointFloat(590.6249F, 79.33334F);
|
||||
this.label29.Name = "label29";
|
||||
this.label29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label29.SizeF = new System.Drawing.SizeF(150.4999F, 22.99998F);
|
||||
this.label29.StylePriority.UseFont = false;
|
||||
this.label29.StylePriority.UseTextAlignment = false;
|
||||
this.label29.Text = "vevő sorszáma";
|
||||
this.label29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// Stornó
|
||||
//
|
||||
this.Stornó.Condition = "[InvoiceHeader.DocumentNumber] == [InvoiceHeader.ConnectInfo]";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Stornó.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
|
||||
this.Stornó.Name = "Stornó";
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.White;
|
||||
this.Title.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.White;
|
||||
this.FieldCaption.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.White;
|
||||
this.PageInfo.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.White;
|
||||
this.DataField.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// Address_CustomersFrom
|
||||
//
|
||||
this.Address_CustomersFrom.Expression = "Concat([InvoiceHeader.Saved_CustomersFrom_Address_ZipPostal],\' \', [InvoiceHeader." +
|
||||
"Saved_CustomersFrom_Address_Country]) ";
|
||||
this.Address_CustomersFrom.FieldType = DevExpress.XtraReports.UI.FieldType.String;
|
||||
this.Address_CustomersFrom.Name = "Address_CustomersFrom";
|
||||
this.Address_CustomersFrom.Scripts.OnGetValue = "Address_CustomersFrom_GetValue";
|
||||
//
|
||||
// xafReport1
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.pageFooterBand1,
|
||||
this.reportHeaderBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.GroupFooter1,
|
||||
this.GroupHeader1});
|
||||
this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
|
||||
this.Address_CustomersFrom});
|
||||
this.DisplayName = "Fizetési Értesítő";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
|
||||
this.Stornó});
|
||||
this.Margins = new System.Drawing.Printing.Margins(38, 45, 56, 42);
|
||||
this.Name = "xafReport1";
|
||||
this.PageHeight = 1169;
|
||||
this.PageWidth = 827;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
this.ScriptLanguage = DevExpress.XtraReports.ScriptLanguage.VisualBasic;
|
||||
this.Scripts.OnBeforePrint = "xafReport1_BeforePrint";
|
||||
this.Scripts.OnDataSourceRowChanged = "xafReport1_DataSourceRowChanged";
|
||||
this.ScriptsSource = resources.GetString("$this.ScriptsSource");
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "11.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,698 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v11.1, Version=11.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v11.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>en-US</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.ExpressApp.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Xpo.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.Xpo.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraReports.v11.1.Extensions\11.1.4.0__b88d1754d700e49a\DevExpress.XtraReports.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraBars.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.XtraBars.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Reports.v11.1.Designer\11.1.4.0__b88d1754d700e49a\DevExpress.Reports.v11.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraCharts.v11.1.Extensions\11.1.4.0__b88d1754d700e49a\DevExpress.XtraCharts.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraPrinting.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.XtraPrinting.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraRichEdit.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.XtraRichEdit.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.RichEdit.v11.1.Core\11.1.4.0__b88d1754d700e49a\DevExpress.RichEdit.v11.1.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraTreeList.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.XtraTreeList.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraNavBar.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.XtraNavBar.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraVerticalGrid.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.XtraVerticalGrid.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.CodeParser.v11.1\11.1.4.0__b88d1754d700e49a\DevExpress.CodeParser.v11.1.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class xafReport1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label12;
|
||||
private DevExpress.XtraReports.UI.XRLabel label29;
|
||||
private DevExpress.XtraReports.UI.XRLabel label28;
|
||||
private DevExpress.XtraReports.UI.XRLabel label27;
|
||||
private DevExpress.XtraReports.UI.XRLabel label26;
|
||||
private DevExpress.XtraReports.UI.XRLabel label25;
|
||||
private DevExpress.XtraReports.UI.XRLabel label24;
|
||||
private DevExpress.XtraReports.UI.XRLabel label23;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.PageHeaderBand PageHeader;
|
||||
private DevExpress.XtraReports.UI.XRLabel label21;
|
||||
private DevExpress.XtraReports.UI.XRLabel label20;
|
||||
private DevExpress.XtraReports.UI.XRLabel label19;
|
||||
private DevExpress.XtraReports.UI.XRLabel label18;
|
||||
private DevExpress.XtraReports.UI.XRLabel label16;
|
||||
private DevExpress.XtraReports.UI.XRLabel label14;
|
||||
private DevExpress.XtraReports.UI.XRLabel label13;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.XRPageInfo pageInfo2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.XRPageInfo pageInfo3;
|
||||
private DevExpress.XtraReports.UI.XRLabel label3;
|
||||
private DevExpress.XtraReports.UI.XRLabel label4;
|
||||
private DevExpress.XtraReports.UI.XRLabel label5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label8;
|
||||
private DevExpress.XtraReports.UI.XRLabel label9;
|
||||
private DevExpress.XtraReports.UI.XRLabel label10;
|
||||
private DevExpress.XtraReports.UI.XRLabel label11;
|
||||
private DevExpress.XtraReports.UI.XRLine line1;
|
||||
private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter;
|
||||
private DevExpress.XtraReports.UI.XRLine line2;
|
||||
private DevExpress.XtraReports.UI.PageFooterBand PageFooter;
|
||||
private DevExpress.XtraReports.UI.XRLabel label15;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle controlStyle1;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public xafReport1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAGAAAAAAAAAFBBRFBBRFAFQIOWxnS43uPx3+CsE1HiAYdpRdUcG3krAAAAYwAAADwAAADJAAAAAAAAAJQAAADGAQAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQwBsAGEAcwBzAE4AYQBtAGUAAAAAAAxGAGkAbAB0AGUAcgAgAAAAIkYAaQBsAHQAZQByAEQAZQBzAGMAcgBpAHAAdABpAG8AbgAiAAAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlAHcAJAAAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQAmAAAAFFIAZQBwAG8AcgB0AE4AYQBtAGUAJwAAAAEeU0lTQnVzaW5lc3MuTW9kdWxlLkdMQ2FyZHNSb3dzAQABAAEAAAERRsWRa8O2bnl2aSBrYXJ0b24=";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
|
||||
this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
|
||||
this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
|
||||
this.label12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label29 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label28 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label27 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label26 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label25 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label24 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label23 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label21 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label20 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label19 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label18 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label16 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label14 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label13 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.pageInfo2 = new DevExpress.XtraReports.UI.XRPageInfo();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.pageInfo3 = new DevExpress.XtraReports.UI.XRPageInfo();
|
||||
this.label3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line1 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.line2 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label15 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.controlStyle1 = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label12,
|
||||
this.label29,
|
||||
this.label28,
|
||||
this.label27,
|
||||
this.label26,
|
||||
this.label25,
|
||||
this.label24,
|
||||
this.label23});
|
||||
this.detailBand1.Font = new System.Drawing.Font("Arial", 9.75F);
|
||||
this.detailBand1.HeightF = 28.20832F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
this.detailBand1.OddStyleName = "controlStyle1";
|
||||
this.detailBand1.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("RowIndex", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
|
||||
this.detailBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 23F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 13.51951F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// PageHeader
|
||||
//
|
||||
this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label21,
|
||||
this.label20,
|
||||
this.label19,
|
||||
this.label18,
|
||||
this.label16,
|
||||
this.label14,
|
||||
this.label13,
|
||||
this.label1,
|
||||
this.pageInfo2,
|
||||
this.label2,
|
||||
this.pageInfo3,
|
||||
this.label3,
|
||||
this.label4,
|
||||
this.label5,
|
||||
this.label6,
|
||||
this.label8,
|
||||
this.label9,
|
||||
this.label10,
|
||||
this.label11,
|
||||
this.line1});
|
||||
this.PageHeader.Font = new System.Drawing.Font("Arial", 9.75F);
|
||||
this.PageHeader.HeightF = 119.7917F;
|
||||
this.PageHeader.Name = "PageHeader";
|
||||
this.PageHeader.StylePriority.UseFont = false;
|
||||
//
|
||||
// ReportFooter
|
||||
//
|
||||
this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line2});
|
||||
this.ReportFooter.HeightF = 6.25F;
|
||||
this.ReportFooter.Name = "ReportFooter";
|
||||
//
|
||||
// PageFooter
|
||||
//
|
||||
this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label15});
|
||||
this.PageFooter.Font = new System.Drawing.Font("Arial", 9.75F);
|
||||
this.PageFooter.HeightF = 10.05889F;
|
||||
this.PageFooter.Name = "PageFooter";
|
||||
this.PageFooter.StylePriority.UseFont = false;
|
||||
//
|
||||
// label12
|
||||
//
|
||||
this.label12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BallanceRulliringHUF", "{0:#,##0}")});
|
||||
this.label12.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label12.LocationFloat = new DevExpress.Utils.PointFloat(699.1295F, 0F);
|
||||
this.label12.Name = "label12";
|
||||
this.label12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label12.SizeF = new System.Drawing.SizeF(69.8703F, 13F);
|
||||
this.label12.StylePriority.UseFont = false;
|
||||
this.label12.StylePriority.UseTextAlignment = false;
|
||||
this.label12.Text = "label12";
|
||||
this.label12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label29
|
||||
//
|
||||
this.label29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CreditAmountHUF", "{0:#,##0}")});
|
||||
this.label29.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label29.LocationFloat = new DevExpress.Utils.PointFloat(639.5833F, 0F);
|
||||
this.label29.Name = "label29";
|
||||
this.label29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label29.SizeF = new System.Drawing.SizeF(59.54608F, 13F);
|
||||
this.label29.StylePriority.UseFont = false;
|
||||
this.label29.StylePriority.UseTextAlignment = false;
|
||||
this.label29.Text = "label29";
|
||||
this.label29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label28
|
||||
//
|
||||
this.label28.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DebitAmountHUF", "{0:#,##0}")});
|
||||
this.label28.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label28.LocationFloat = new DevExpress.Utils.PointFloat(573.9583F, 0F);
|
||||
this.label28.Name = "label28";
|
||||
this.label28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label28.SizeF = new System.Drawing.SizeF(65.625F, 13F);
|
||||
this.label28.StylePriority.UseFont = false;
|
||||
this.label28.StylePriority.UseTextAlignment = false;
|
||||
this.label28.Text = "label28";
|
||||
this.label28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label27
|
||||
//
|
||||
this.label27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DateExecution", "{0:yyyy.MM.dd.}")});
|
||||
this.label27.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label27.LocationFloat = new DevExpress.Utils.PointFloat(493.7502F, 0F);
|
||||
this.label27.Name = "label27";
|
||||
this.label27.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label27.SizeF = new System.Drawing.SizeF(80.20816F, 13F);
|
||||
this.label27.StylePriority.UseFont = false;
|
||||
this.label27.StylePriority.UseTextAlignment = false;
|
||||
this.label27.Text = "label27";
|
||||
this.label27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// label26
|
||||
//
|
||||
this.label26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Note_Rows")});
|
||||
this.label26.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label26.LocationFloat = new DevExpress.Utils.PointFloat(217.4583F, 13.54163F);
|
||||
this.label26.Name = "label26";
|
||||
this.label26.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label26.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
|
||||
this.label26.SizeF = new System.Drawing.SizeF(551.5416F, 13F);
|
||||
this.label26.StylePriority.UseFont = false;
|
||||
this.label26.StylePriority.UseTextAlignment = false;
|
||||
this.label26.Text = "label26";
|
||||
this.label26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// label25
|
||||
//
|
||||
this.label25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DocumentNumber")});
|
||||
this.label25.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label25.LocationFloat = new DevExpress.Utils.PointFloat(376.0417F, 0F);
|
||||
this.label25.Name = "label25";
|
||||
this.label25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label25.SizeF = new System.Drawing.SizeF(117.7084F, 13F);
|
||||
this.label25.StylePriority.UseFont = false;
|
||||
this.label25.StylePriority.UseTextAlignment = false;
|
||||
this.label25.Text = "label25";
|
||||
this.label25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// label24
|
||||
//
|
||||
this.label24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Customers.DisplayName")});
|
||||
this.label24.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label24.LocationFloat = new DevExpress.Utils.PointFloat(217.4583F, 0F);
|
||||
this.label24.Name = "label24";
|
||||
this.label24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label24.SizeF = new System.Drawing.SizeF(158.5834F, 13F);
|
||||
this.label24.StylePriority.UseFont = false;
|
||||
this.label24.StylePriority.UseTextAlignment = false;
|
||||
this.label24.Text = "label24";
|
||||
this.label24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// label23
|
||||
//
|
||||
this.label23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ShortNameTo")});
|
||||
this.label23.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.label23.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.label23.Name = "label23";
|
||||
this.label23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label23.SizeF = new System.Drawing.SizeF(217.4583F, 13F);
|
||||
this.label23.StylePriority.UseFont = false;
|
||||
this.label23.StylePriority.UseTextAlignment = false;
|
||||
this.label23.Text = "label23";
|
||||
this.label23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// label21
|
||||
//
|
||||
this.label21.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label21.LocationFloat = new DevExpress.Utils.PointFloat(699.1295F, 100.1248F);
|
||||
this.label21.Name = "label21";
|
||||
this.label21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label21.SizeF = new System.Drawing.SizeF(69.87036F, 14.04171F);
|
||||
this.label21.StylePriority.UseFont = false;
|
||||
this.label21.StylePriority.UseTextAlignment = false;
|
||||
this.label21.Text = "Göngy. Egyenleg";
|
||||
this.label21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label20
|
||||
//
|
||||
this.label20.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label20.LocationFloat = new DevExpress.Utils.PointFloat(639.5833F, 100.1248F);
|
||||
this.label20.Name = "label20";
|
||||
this.label20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label20.SizeF = new System.Drawing.SizeF(59.54614F, 12.58337F);
|
||||
this.label20.StylePriority.UseFont = false;
|
||||
this.label20.StylePriority.UseTextAlignment = false;
|
||||
this.label20.Text = "Követel";
|
||||
this.label20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label19
|
||||
//
|
||||
this.label19.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label19.LocationFloat = new DevExpress.Utils.PointFloat(573.9583F, 100.1249F);
|
||||
this.label19.Name = "label19";
|
||||
this.label19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label19.SizeF = new System.Drawing.SizeF(65.625F, 12.58339F);
|
||||
this.label19.StylePriority.UseFont = false;
|
||||
this.label19.StylePriority.UseTextAlignment = false;
|
||||
this.label19.Text = "Tartozik";
|
||||
this.label19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label18
|
||||
//
|
||||
this.label18.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label18.LocationFloat = new DevExpress.Utils.PointFloat(493.7502F, 100.1248F);
|
||||
this.label18.Name = "label18";
|
||||
this.label18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label18.SizeF = new System.Drawing.SizeF(80.20816F, 14.04167F);
|
||||
this.label18.StylePriority.UseFont = false;
|
||||
this.label18.StylePriority.UseTextAlignment = false;
|
||||
this.label18.Text = "Telj. dátuma";
|
||||
this.label18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// label16
|
||||
//
|
||||
this.label16.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label16.LocationFloat = new DevExpress.Utils.PointFloat(376.0417F, 100.1248F);
|
||||
this.label16.Name = "label16";
|
||||
this.label16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label16.SizeF = new System.Drawing.SizeF(117.7083F, 14.04167F);
|
||||
this.label16.StylePriority.UseFont = false;
|
||||
this.label16.StylePriority.UseTextAlignment = false;
|
||||
this.label16.Text = "Biz. szám";
|
||||
this.label16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// label14
|
||||
//
|
||||
this.label14.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label14.LocationFloat = new DevExpress.Utils.PointFloat(217.4583F, 100.1249F);
|
||||
this.label14.Name = "label14";
|
||||
this.label14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label14.SizeF = new System.Drawing.SizeF(84.62497F, 12.58332F);
|
||||
this.label14.StylePriority.UseFont = false;
|
||||
this.label14.StylePriority.UseTextAlignment = false;
|
||||
this.label14.Text = "Partner";
|
||||
this.label14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// label13
|
||||
//
|
||||
this.label13.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.label13.LocationFloat = new DevExpress.Utils.PointFloat(0F, 101.5833F);
|
||||
this.label13.Name = "label13";
|
||||
this.label13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label13.SizeF = new System.Drawing.SizeF(148.9584F, 12.58331F);
|
||||
this.label13.StylePriority.UseFont = false;
|
||||
this.label13.StylePriority.UseTextAlignment = false;
|
||||
this.label13.Text = "FK. Ellenszámla";
|
||||
this.label13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.Font = new System.Drawing.Font("Arial", 14F);
|
||||
this.label1.ForeColor = System.Drawing.Color.Black;
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(118.5F, 0F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.SizeF = new System.Drawing.SizeF(534.7084F, 33F);
|
||||
this.label1.StyleName = "Title";
|
||||
this.label1.StylePriority.UseFont = false;
|
||||
this.label1.StylePriority.UseForeColor = false;
|
||||
this.label1.StylePriority.UseTextAlignment = false;
|
||||
this.label1.Text = "Pesti Házak Csoport";
|
||||
this.label1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// pageInfo2
|
||||
//
|
||||
this.pageInfo2.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.pageInfo2.Format = "Oldal: {0} / {1}";
|
||||
this.pageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(682.0416F, 32.99999F);
|
||||
this.pageInfo2.Name = "pageInfo2";
|
||||
this.pageInfo2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.pageInfo2.SizeF = new System.Drawing.SizeF(86.95825F, 16.75F);
|
||||
this.pageInfo2.StyleName = "PageInfo";
|
||||
this.pageInfo2.StylePriority.UseFont = false;
|
||||
this.pageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label2.ForeColor = System.Drawing.Color.Black;
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(118.5F, 32.99999F);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(139.9168F, 23F);
|
||||
this.label2.StyleName = "Title";
|
||||
this.label2.StylePriority.UseFont = false;
|
||||
this.label2.StylePriority.UseForeColor = false;
|
||||
this.label2.StylePriority.UseTextAlignment = false;
|
||||
this.label2.Text = "Főkönyi karton";
|
||||
this.label2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// pageInfo3
|
||||
//
|
||||
this.pageInfo3.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.pageInfo3.Format = "{0:yyyy. MMMM d. HH:mm}";
|
||||
this.pageInfo3.LocationFloat = new DevExpress.Utils.PointFloat(653.5417F, 0F);
|
||||
this.pageInfo3.Name = "pageInfo3";
|
||||
this.pageInfo3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.pageInfo3.PageInfo = DevExpress.XtraPrinting.PageInfo.DateTime;
|
||||
this.pageInfo3.SizeF = new System.Drawing.SizeF(115.4583F, 23F);
|
||||
this.pageInfo3.StylePriority.UseFont = false;
|
||||
this.pageInfo3.StylePriority.UseTextAlignment = false;
|
||||
this.pageInfo3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.AutoWidth = true;
|
||||
this.label3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "GLCardsHeader.DateFrom", "{0:yyyy.MM.dd.}")});
|
||||
this.label3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label3.LocationFloat = new DevExpress.Utils.PointFloat(108.3332F, 69.91663F);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label3.SizeF = new System.Drawing.SizeF(80.20845F, 23.00001F);
|
||||
this.label3.StylePriority.UseFont = false;
|
||||
this.label3.Text = "label3";
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.AutoWidth = true;
|
||||
this.label4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "GLCardsHeader.DateTo", "{0:yyyy.MM.dd.}")});
|
||||
this.label4.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(205.2083F, 69.91663F);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label4.SizeF = new System.Drawing.SizeF(96.875F, 23F);
|
||||
this.label4.StylePriority.UseFont = false;
|
||||
this.label4.Text = "label4";
|
||||
//
|
||||
// label5
|
||||
//
|
||||
this.label5.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(188.5417F, 69.91663F);
|
||||
this.label5.Multiline = true;
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label5.SizeF = new System.Drawing.SizeF(16.66669F, 23F);
|
||||
this.label5.StylePriority.UseFont = false;
|
||||
this.label5.StylePriority.UseTextAlignment = false;
|
||||
this.label5.Text = "-\r\n";
|
||||
this.label5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 69.91663F);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label6.SizeF = new System.Drawing.SizeF(100.4166F, 23.00001F);
|
||||
this.label6.StylePriority.UseFont = false;
|
||||
this.label6.Text = "Dátum:";
|
||||
//
|
||||
// label8
|
||||
//
|
||||
this.label8.AutoWidth = true;
|
||||
this.label8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "GLCardsHeader.ChartOfAccount.Name")});
|
||||
this.label8.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label8.LocationFloat = new DevExpress.Utils.PointFloat(258.4167F, 32.99999F);
|
||||
this.label8.Name = "label8";
|
||||
this.label8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label8.SizeF = new System.Drawing.SizeF(394.7917F, 23F);
|
||||
this.label8.StylePriority.UseFont = false;
|
||||
this.label8.StylePriority.UseTextAlignment = false;
|
||||
this.label8.Text = "label8";
|
||||
this.label8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// label9
|
||||
//
|
||||
this.label9.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label9.LocationFloat = new DevExpress.Utils.PointFloat(549.3749F, 69.91663F);
|
||||
this.label9.Name = "label9";
|
||||
this.label9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label9.SizeF = new System.Drawing.SizeF(55.20831F, 23F);
|
||||
this.label9.StylePriority.UseFont = false;
|
||||
this.label9.Text = "Vállalat:";
|
||||
//
|
||||
// label10
|
||||
//
|
||||
this.label10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "GLCardsHeader.CustomersFrom.CustomerNumber")});
|
||||
this.label10.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label10.LocationFloat = new DevExpress.Utils.PointFloat(604.5833F, 69.91663F);
|
||||
this.label10.Name = "label10";
|
||||
this.label10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label10.SizeF = new System.Drawing.SizeF(48.95831F, 23F);
|
||||
this.label10.StylePriority.UseFont = false;
|
||||
this.label10.StylePriority.UseTextAlignment = false;
|
||||
this.label10.Text = "label10";
|
||||
this.label10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// label11
|
||||
//
|
||||
this.label11.AutoWidth = true;
|
||||
this.label11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "GLCardsHeader.CustomersFrom.DisplayName")});
|
||||
this.label11.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label11.LocationFloat = new DevExpress.Utils.PointFloat(653.5416F, 69.91663F);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label11.SizeF = new System.Drawing.SizeF(100F, 23F);
|
||||
this.label11.StylePriority.UseFont = false;
|
||||
this.label11.Text = "label11";
|
||||
//
|
||||
// line1
|
||||
//
|
||||
this.line1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 114.1666F);
|
||||
this.line1.Name = "line1";
|
||||
this.line1.SizeF = new System.Drawing.SizeF(768.9999F, 3.458382F);
|
||||
//
|
||||
// line2
|
||||
//
|
||||
this.line2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.line2.Name = "line2";
|
||||
this.line2.SizeF = new System.Drawing.SizeF(769F, 5.208333F);
|
||||
//
|
||||
// label15
|
||||
//
|
||||
this.label15.Font = new System.Drawing.Font("Arial", 5F);
|
||||
this.label15.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.label15.Name = "label15";
|
||||
this.label15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label15.SizeF = new System.Drawing.SizeF(94.24004F, 10.05889F);
|
||||
this.label15.StylePriority.UseFont = false;
|
||||
this.label15.Text = "Nuvolar Framework 2.0";
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.White;
|
||||
this.Title.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.White;
|
||||
this.FieldCaption.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.White;
|
||||
this.PageInfo.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.White;
|
||||
this.DataField.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// controlStyle1
|
||||
//
|
||||
this.controlStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
|
||||
this.controlStyle1.Name = "controlStyle1";
|
||||
this.controlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
|
||||
//
|
||||
// xafReport1
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.PageHeader,
|
||||
this.ReportFooter,
|
||||
this.PageFooter});
|
||||
this.DisplayName = "Főkönyvi karton";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Margins = new System.Drawing.Printing.Margins(29, 29, 23, 14);
|
||||
this.Name = "xafReport1";
|
||||
this.PageHeight = 1169;
|
||||
this.PageWidth = 827;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField,
|
||||
this.controlStyle1});
|
||||
this.Version = "11.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,753 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v11.1, Version=11.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v11.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Xpo.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.Xpo.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraReports.v11.1.Extensions\11.1.8.0__b88d1754d700e49a\DevExpress.XtraReports.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraBars.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraBars.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Reports.v11.1.Designer\11.1.8.0__b88d1754d700e49a\DevExpress.Reports.v11.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraCharts.v11.1.Extensions\11.1.8.0__b88d1754d700e49a\DevExpress.XtraCharts.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraPrinting.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraPrinting.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraRichEdit.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraRichEdit.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.RichEdit.v11.1.Core\11.1.8.0__b88d1754d700e49a\DevExpress.RichEdit.v11.1.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraTreeList.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraTreeList.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraNavBar.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraNavBar.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraVerticalGrid.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraVerticalGrid.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.CodeParser.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.CodeParser.v11.1.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class xafReport1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table3;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow3;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label4;
|
||||
private DevExpress.XtraReports.UI.XRLabel label5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.ReportHeaderBand reportHeaderBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table1;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label20;
|
||||
private DevExpress.XtraReports.UI.XRLabel label19;
|
||||
private DevExpress.XtraReports.UI.XRLabel label18;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader2;
|
||||
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter2;
|
||||
private DevExpress.XtraReports.UI.XRLine line6;
|
||||
private DevExpress.XtraReports.UI.XRTable table2;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow2;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label10;
|
||||
private DevExpress.XtraReports.UI.XRLabel label9;
|
||||
private DevExpress.XtraReports.UI.XRLabel label8;
|
||||
private DevExpress.XtraReports.UI.XRLabel label15;
|
||||
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1;
|
||||
private DevExpress.XtraReports.UI.XRLine line2;
|
||||
private DevExpress.XtraReports.UI.XRTable table4;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow4;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell3;
|
||||
private DevExpress.XtraReports.UI.XRLabel label16;
|
||||
private DevExpress.XtraReports.UI.XRLabel label14;
|
||||
private DevExpress.XtraReports.UI.XRLabel label13;
|
||||
private DevExpress.XtraReports.UI.XRLabel label11;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private DevExpress.XtraReports.UI.CalculatedField calculatedField1;
|
||||
private DevExpress.XtraReports.UI.CalculatedField Egyenleg;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public xafReport1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAHAAAAAAAAAFBBRFBBRFAFQIOWSF5ywcZ0uN7j8d/grBNR4gGHaUXVHBt5VgAAAAAAAACOAAAAZwAAAPQAAAArAAAAvwAAAPkBAAAmJAB0AGgAaQBzAC4AUwBjAHIAaQBwAHQAcwBTAG8AdQByAGMAZQAAAAAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQwBsAGEAcwBzAE4AYQBtAGUAAQEAAAxGAGkAbAB0AGUAcgAlAQAAIkYAaQBsAHQAZQByAEQAZQBzAGMAcgBpAHAAdABpAG8AbgAnAQAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlAHcAKQEAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQArAQAAFFIAZQBwAG8AcgB0AE4AYQBtAGUALAEAAAH+AVByaXZhdGUgU3ViIGxhYmVsMTVfQmVmb3JlUHJpbnQoQnlWYWwgc2VuZGVyIEFzIE9iamVjdCwgQnlWYWwgZSBBcyBTeXN0ZW0uRHJhd2luZy5QcmludGluZy5QcmludEV2ZW50QXJncykNCg0KaWYgR2V0Q3VycmVudENvbHVtblZhbHVlKCJBY2NvdW50U3VtIik9MCB0aGVuDQogbGFiZWwxNS50ZXh0PSIxLTQgc3rDoW1sYW9zenTDoWx5Ig0KZWxzZQ0KIGxhYmVsMTUudGV4dD0iNS05IHN6w6FtbGFvc3p0w6FseSINCmVuZCBpZg0KRW5kIFN1Yg0KASJTSVNCdXNpbmVzcy5Nb2R1bGUuVHJpYWxCYWxhbmNlU3VtAQABAAEAAAEiRsWRa8O2bnl2aSBraXZvbmF0ICjDlnNzemVzw610w6lzKQ==";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
DevExpress.XtraReports.UI.XRSummary summary1 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary2 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary3 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary4 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary5 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary6 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||
this.GroupFooter2 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.table3 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.table1 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label20 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label19 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label18 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line6 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.table2 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label15 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line2 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.table4 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label16 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label14 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label13 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.calculatedField1 = new DevExpress.XtraReports.UI.CalculatedField();
|
||||
this.Egyenleg = new DevExpress.XtraReports.UI.CalculatedField();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table3)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table4)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table3});
|
||||
this.detailBand1.Font = new System.Drawing.Font("Arial", 9.75F);
|
||||
this.detailBand1.HeightF = 20F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
this.detailBand1.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("AccountNumber", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
|
||||
this.detailBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// reportHeaderBand1
|
||||
//
|
||||
this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table1});
|
||||
this.reportHeaderBand1.Font = new System.Drawing.Font("Arial", 9.75F);
|
||||
this.reportHeaderBand1.HeightF = 65.04166F;
|
||||
this.reportHeaderBand1.Name = "reportHeaderBand1";
|
||||
this.reportHeaderBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 12F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 25.625F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// GroupHeader2
|
||||
//
|
||||
this.GroupHeader2.Expanded = false;
|
||||
this.GroupHeader2.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("AccountSum", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
|
||||
this.GroupHeader2.HeightF = 0F;
|
||||
this.GroupHeader2.KeepTogether = true;
|
||||
this.GroupHeader2.Name = "GroupHeader2";
|
||||
this.GroupHeader2.RepeatEveryPage = true;
|
||||
this.GroupHeader2.StylePriority.UseFont = false;
|
||||
this.GroupHeader2.Visible = false;
|
||||
//
|
||||
// GroupFooter2
|
||||
//
|
||||
this.GroupFooter2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line6,
|
||||
this.table2});
|
||||
this.GroupFooter2.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.GroupFooter2.HeightF = 40F;
|
||||
this.GroupFooter2.Name = "GroupFooter2";
|
||||
this.GroupFooter2.StylePriority.UseFont = false;
|
||||
//
|
||||
// GroupFooter1
|
||||
//
|
||||
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line2,
|
||||
this.table4});
|
||||
this.GroupFooter1.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.GroupFooter1.HeightF = 70.83334F;
|
||||
this.GroupFooter1.Level = 1;
|
||||
this.GroupFooter1.Name = "GroupFooter1";
|
||||
this.GroupFooter1.StylePriority.UseFont = false;
|
||||
//
|
||||
// table3
|
||||
//
|
||||
this.table3.LocationFloat = new DevExpress.Utils.PointFloat(196.5277F, 0F);
|
||||
this.table3.Name = "table3";
|
||||
this.table3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow3});
|
||||
this.table3.SizeF = new System.Drawing.SizeF(889.4733F, 20F);
|
||||
//
|
||||
// tableRow3
|
||||
//
|
||||
this.tableRow3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
|
||||
this.tableRow3.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.tableRow3.BorderWidth = 2;
|
||||
this.tableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell5});
|
||||
this.tableRow3.Name = "tableRow3";
|
||||
this.tableRow3.StylePriority.UseBorderDashStyle = false;
|
||||
this.tableRow3.StylePriority.UseBorders = false;
|
||||
this.tableRow3.StylePriority.UseBorderWidth = false;
|
||||
this.tableRow3.Weight = 1D;
|
||||
//
|
||||
// tableCell5
|
||||
//
|
||||
this.tableCell5.BorderWidth = 3;
|
||||
this.tableCell5.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label4,
|
||||
this.label5,
|
||||
this.label6,
|
||||
this.label2});
|
||||
this.tableCell5.Name = "tableCell5";
|
||||
this.tableCell5.StylePriority.UseBorderWidth = false;
|
||||
this.tableCell5.Weight = 3D;
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DebitAmountHUF", "{0:#,##0}")});
|
||||
this.label4.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(496.4723F, 0F);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label4.SizeF = new System.Drawing.SizeF(130F, 20F);
|
||||
this.label4.StylePriority.UseBorders = false;
|
||||
this.label4.StylePriority.UseFont = false;
|
||||
this.label4.StylePriority.UseTextAlignment = false;
|
||||
this.label4.Text = "label4";
|
||||
this.label4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label5
|
||||
//
|
||||
this.label5.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CreditAmountHUF", "{0:#,##0}")});
|
||||
this.label5.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(626.4722F, 0F);
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label5.SizeF = new System.Drawing.SizeF(129.9999F, 20F);
|
||||
this.label5.StylePriority.UseBorders = false;
|
||||
this.label5.StylePriority.UseFont = false;
|
||||
this.label5.StylePriority.UseTextAlignment = false;
|
||||
this.label5.Text = "label5";
|
||||
this.label5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BallanceHUFClose", "{0:#,##0}")});
|
||||
this.label6.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(756.4722F, 0F);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 5, 0, 0, 100F);
|
||||
this.label6.SizeF = new System.Drawing.SizeF(130F, 20F);
|
||||
this.label6.StylePriority.UseBorders = false;
|
||||
this.label6.StylePriority.UseFont = false;
|
||||
this.label6.StylePriority.UsePadding = false;
|
||||
this.label6.StylePriority.UseTextAlignment = false;
|
||||
this.label6.Text = "label6";
|
||||
this.label6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.AutoWidth = true;
|
||||
this.label2.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ShortName")});
|
||||
this.label2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(41.59694F, 0F);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(411.4032F, 20F);
|
||||
this.label2.StylePriority.UseBorders = false;
|
||||
this.label2.StylePriority.UseFont = false;
|
||||
this.label2.Text = "label2";
|
||||
//
|
||||
// table1
|
||||
//
|
||||
this.table1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
|
||||
this.table1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.table1.BorderWidth = 4;
|
||||
this.table1.LocationFloat = new DevExpress.Utils.PointFloat(196.5277F, 0F);
|
||||
this.table1.Name = "table1";
|
||||
this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow1});
|
||||
this.table1.SizeF = new System.Drawing.SizeF(889.4711F, 65.04166F);
|
||||
this.table1.StylePriority.UseBorderDashStyle = false;
|
||||
this.table1.StylePriority.UseBorders = false;
|
||||
this.table1.StylePriority.UseBorderWidth = false;
|
||||
//
|
||||
// tableRow1
|
||||
//
|
||||
this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell2});
|
||||
this.tableRow1.Name = "tableRow1";
|
||||
this.tableRow1.Weight = 1D;
|
||||
//
|
||||
// tableCell2
|
||||
//
|
||||
this.tableCell2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
|
||||
this.tableCell2.BorderWidth = 3;
|
||||
this.tableCell2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label20,
|
||||
this.label19,
|
||||
this.label18,
|
||||
this.label1});
|
||||
this.tableCell2.Name = "tableCell2";
|
||||
this.tableCell2.StylePriority.UseBorderDashStyle = false;
|
||||
this.tableCell2.StylePriority.UseBorderWidth = false;
|
||||
this.tableCell2.Weight = 3D;
|
||||
//
|
||||
// label20
|
||||
//
|
||||
this.label20.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label20.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label20.LocationFloat = new DevExpress.Utils.PointFloat(756.4722F, 12.99999F);
|
||||
this.label20.Name = "label20";
|
||||
this.label20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 5, 0, 0, 100F);
|
||||
this.label20.SizeF = new System.Drawing.SizeF(130F, 20F);
|
||||
this.label20.StylePriority.UseBorders = false;
|
||||
this.label20.StylePriority.UseFont = false;
|
||||
this.label20.StylePriority.UsePadding = false;
|
||||
this.label20.StylePriority.UseTextAlignment = false;
|
||||
this.label20.Text = "Egyenleg";
|
||||
this.label20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label19
|
||||
//
|
||||
this.label19.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label19.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label19.LocationFloat = new DevExpress.Utils.PointFloat(626.4723F, 12.99999F);
|
||||
this.label19.Name = "label19";
|
||||
this.label19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
|
||||
this.label19.SizeF = new System.Drawing.SizeF(129.9999F, 20F);
|
||||
this.label19.StylePriority.UseBorders = false;
|
||||
this.label19.StylePriority.UseFont = false;
|
||||
this.label19.StylePriority.UseTextAlignment = false;
|
||||
this.label19.Text = "Követel forgalom";
|
||||
this.label19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label18
|
||||
//
|
||||
this.label18.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label18.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label18.LocationFloat = new DevExpress.Utils.PointFloat(496.4723F, 12.99999F);
|
||||
this.label18.Name = "label18";
|
||||
this.label18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
|
||||
this.label18.SizeF = new System.Drawing.SizeF(130F, 20F);
|
||||
this.label18.StylePriority.UseBorders = false;
|
||||
this.label18.StylePriority.UseFont = false;
|
||||
this.label18.StylePriority.UseTextAlignment = false;
|
||||
this.label18.Text = "Tartozik forgalom";
|
||||
this.label18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.Font = new System.Drawing.Font("Arial", 11F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
|
||||
this.label1.ForeColor = System.Drawing.Color.Black;
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(59.79019F, 13F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.SizeF = new System.Drawing.SizeF(393.21F, 20F);
|
||||
this.label1.StyleName = "Title";
|
||||
this.label1.StylePriority.UseFont = false;
|
||||
this.label1.StylePriority.UseForeColor = false;
|
||||
this.label1.Text = "Számlaosztály összesítő";
|
||||
//
|
||||
// line6
|
||||
//
|
||||
this.line6.LocationFloat = new DevExpress.Utils.PointFloat(693F, 0F);
|
||||
this.line6.Name = "line6";
|
||||
this.line6.SizeF = new System.Drawing.SizeF(391F, 4.749998F);
|
||||
//
|
||||
// table2
|
||||
//
|
||||
this.table2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
|
||||
this.table2.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.table2.BorderWidth = 2;
|
||||
this.table2.LocationFloat = new DevExpress.Utils.PointFloat(196.5277F, 0F);
|
||||
this.table2.Name = "table2";
|
||||
this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow2});
|
||||
this.table2.SizeF = new System.Drawing.SizeF(889.4733F, 40F);
|
||||
this.table2.StylePriority.UseBorderDashStyle = false;
|
||||
this.table2.StylePriority.UseBorders = false;
|
||||
this.table2.StylePriority.UseBorderWidth = false;
|
||||
//
|
||||
// tableRow2
|
||||
//
|
||||
this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell1});
|
||||
this.tableRow2.Name = "tableRow2";
|
||||
this.tableRow2.Weight = 1.6000001541940987D;
|
||||
//
|
||||
// tableCell1
|
||||
//
|
||||
this.tableCell1.BorderWidth = 3;
|
||||
this.tableCell1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label10,
|
||||
this.label9,
|
||||
this.label8,
|
||||
this.label15});
|
||||
this.tableCell1.Name = "tableCell1";
|
||||
this.tableCell1.StylePriority.UseBorderWidth = false;
|
||||
this.tableCell1.Text = "tableCell1";
|
||||
this.tableCell1.Weight = 3D;
|
||||
//
|
||||
// label10
|
||||
//
|
||||
this.label10.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BallanceHUFClose")});
|
||||
this.label10.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label10.LocationFloat = new DevExpress.Utils.PointFloat(756.4722F, 4.999987F);
|
||||
this.label10.Name = "label10";
|
||||
this.label10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 5, 0, 0, 100F);
|
||||
this.label10.SizeF = new System.Drawing.SizeF(130F, 20F);
|
||||
this.label10.StylePriority.UseBorders = false;
|
||||
this.label10.StylePriority.UseFont = false;
|
||||
this.label10.StylePriority.UsePadding = false;
|
||||
this.label10.StylePriority.UseTextAlignment = false;
|
||||
summary1.FormatString = "{0:#,##0}";
|
||||
summary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label10.Summary = summary1;
|
||||
this.label10.Text = "label10";
|
||||
this.label10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label9
|
||||
//
|
||||
this.label9.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CreditAmountHUF")});
|
||||
this.label9.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label9.LocationFloat = new DevExpress.Utils.PointFloat(626.4722F, 4.749998F);
|
||||
this.label9.Name = "label9";
|
||||
this.label9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label9.SizeF = new System.Drawing.SizeF(130F, 20F);
|
||||
this.label9.StylePriority.UseBorders = false;
|
||||
this.label9.StylePriority.UseFont = false;
|
||||
this.label9.StylePriority.UseTextAlignment = false;
|
||||
summary2.FormatString = "{0:#,##0}";
|
||||
summary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label9.Summary = summary2;
|
||||
this.label9.Text = "label9";
|
||||
this.label9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label8
|
||||
//
|
||||
this.label8.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DebitAmountHUF")});
|
||||
this.label8.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label8.LocationFloat = new DevExpress.Utils.PointFloat(496.4723F, 4.749998F);
|
||||
this.label8.Name = "label8";
|
||||
this.label8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label8.SizeF = new System.Drawing.SizeF(130F, 20F);
|
||||
this.label8.StylePriority.UseBorders = false;
|
||||
this.label8.StylePriority.UseFont = false;
|
||||
this.label8.StylePriority.UseTextAlignment = false;
|
||||
summary3.FormatString = "{0:#,##0}";
|
||||
summary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label8.Summary = summary3;
|
||||
this.label8.Text = "label8";
|
||||
this.label8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label15
|
||||
//
|
||||
this.label15.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label15.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label15.LocationFloat = new DevExpress.Utils.PointFloat(23.9585F, 4.874992F);
|
||||
this.label15.Name = "label15";
|
||||
this.label15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label15.Scripts.OnBeforePrint = "label15_BeforePrint";
|
||||
this.label15.SizeF = new System.Drawing.SizeF(429.0417F, 19.875F);
|
||||
this.label15.StylePriority.UseBorders = false;
|
||||
this.label15.StylePriority.UseFont = false;
|
||||
this.label15.Text = "label15";
|
||||
//
|
||||
// line2
|
||||
//
|
||||
this.line2.LocationFloat = new DevExpress.Utils.PointFloat(692.9999F, 1.000007F);
|
||||
this.line2.Name = "line2";
|
||||
this.line2.SizeF = new System.Drawing.SizeF(391.0005F, 4.749998F);
|
||||
//
|
||||
// table4
|
||||
//
|
||||
this.table4.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
|
||||
this.table4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.table4.BorderWidth = 2;
|
||||
this.table4.LocationFloat = new DevExpress.Utils.PointFloat(196.5277F, 0F);
|
||||
this.table4.Name = "table4";
|
||||
this.table4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow4});
|
||||
this.table4.SizeF = new System.Drawing.SizeF(889.4733F, 64F);
|
||||
this.table4.StylePriority.UseBorderDashStyle = false;
|
||||
this.table4.StylePriority.UseBorders = false;
|
||||
this.table4.StylePriority.UseBorderWidth = false;
|
||||
//
|
||||
// tableRow4
|
||||
//
|
||||
this.tableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell3});
|
||||
this.tableRow4.Name = "tableRow4";
|
||||
this.tableRow4.Weight = 1D;
|
||||
//
|
||||
// tableCell3
|
||||
//
|
||||
this.tableCell3.BorderWidth = 3;
|
||||
this.tableCell3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label16,
|
||||
this.label14,
|
||||
this.label13,
|
||||
this.label11});
|
||||
this.tableCell3.Name = "tableCell3";
|
||||
this.tableCell3.StylePriority.UseBorderWidth = false;
|
||||
this.tableCell3.Weight = 3D;
|
||||
//
|
||||
// label16
|
||||
//
|
||||
this.label16.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label16.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label16.LocationFloat = new DevExpress.Utils.PointFloat(23.9585F, 9.999943F);
|
||||
this.label16.Name = "label16";
|
||||
this.label16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
|
||||
this.label16.SizeF = new System.Drawing.SizeF(429.0417F, 20.00001F);
|
||||
this.label16.StylePriority.UseBorders = false;
|
||||
this.label16.StylePriority.UseFont = false;
|
||||
this.label16.Text = "Mindösszesen:";
|
||||
//
|
||||
// label14
|
||||
//
|
||||
this.label14.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BallanceHUFClose")});
|
||||
this.label14.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label14.LocationFloat = new DevExpress.Utils.PointFloat(756.4722F, 9.999996F);
|
||||
this.label14.Name = "label14";
|
||||
this.label14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 5, 0, 0, 100F);
|
||||
this.label14.SizeF = new System.Drawing.SizeF(130F, 20.00001F);
|
||||
this.label14.StylePriority.UseBorders = false;
|
||||
this.label14.StylePriority.UseFont = false;
|
||||
this.label14.StylePriority.UsePadding = false;
|
||||
this.label14.StylePriority.UseTextAlignment = false;
|
||||
summary4.FormatString = "{0:#,##0}";
|
||||
summary4.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
|
||||
this.label14.Summary = summary4;
|
||||
this.label14.Text = "label14";
|
||||
this.label14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label13
|
||||
//
|
||||
this.label13.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CreditAmountHUF")});
|
||||
this.label13.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label13.LocationFloat = new DevExpress.Utils.PointFloat(626.4722F, 9.999953F);
|
||||
this.label13.Name = "label13";
|
||||
this.label13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label13.SizeF = new System.Drawing.SizeF(130F, 20F);
|
||||
this.label13.StylePriority.UseBorders = false;
|
||||
this.label13.StylePriority.UseFont = false;
|
||||
this.label13.StylePriority.UseTextAlignment = false;
|
||||
summary5.FormatString = "{0:#,##0}";
|
||||
summary5.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
|
||||
this.label13.Summary = summary5;
|
||||
this.label13.Text = "label13";
|
||||
this.label13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label11
|
||||
//
|
||||
this.label11.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DebitAmountHUF")});
|
||||
this.label11.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label11.LocationFloat = new DevExpress.Utils.PointFloat(496.4723F, 9.999953F);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label11.SizeF = new System.Drawing.SizeF(130F, 20F);
|
||||
this.label11.StylePriority.UseBorders = false;
|
||||
this.label11.StylePriority.UseFont = false;
|
||||
this.label11.StylePriority.UseTextAlignment = false;
|
||||
summary6.FormatString = "{0:#,##0}";
|
||||
summary6.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
|
||||
this.label11.Summary = summary6;
|
||||
this.label11.Text = "label11";
|
||||
this.label11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.White;
|
||||
this.Title.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.White;
|
||||
this.FieldCaption.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.White;
|
||||
this.PageInfo.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.White;
|
||||
this.DataField.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// calculatedField1
|
||||
//
|
||||
this.calculatedField1.Expression = "Substring(\'[TrialBalanceHeader.TrialBalance.ShortNameFormatted]\', 0 ,1 )";
|
||||
this.calculatedField1.Name = "calculatedField1";
|
||||
//
|
||||
// Egyenleg
|
||||
//
|
||||
this.Egyenleg.Expression = "[DebitAmountHUF]-[CreditAmountHUF]";
|
||||
this.Egyenleg.Name = "Egyenleg";
|
||||
//
|
||||
// xafReport1
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.reportHeaderBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.GroupHeader2,
|
||||
this.GroupFooter2,
|
||||
this.GroupFooter1});
|
||||
this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
|
||||
this.calculatedField1,
|
||||
this.Egyenleg});
|
||||
this.DisplayName = "Főkönyvi kivonat (Összesítés)";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.Landscape = true;
|
||||
this.Margins = new System.Drawing.Printing.Margins(39, 44, 12, 26);
|
||||
this.Name = "xafReport1";
|
||||
this.PageHeight = 827;
|
||||
this.PageWidth = 1169;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
this.ScriptLanguage = DevExpress.XtraReports.ScriptLanguage.VisualBasic;
|
||||
this.ScriptsSource = resources.GetString("$this.ScriptsSource");
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "11.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.table3)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table4)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,802 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v11.1, Version=11.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v11.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Xpo.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.Xpo.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraReports.v11.1.Extensions\11.1.8.0__b88d1754d700e49a\DevExpress.XtraReports.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraBars.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraBars.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Reports.v11.1.Designer\11.1.8.0__b88d1754d700e49a\DevExpress.Reports.v11.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraCharts.v11.1.Extensions\11.1.8.0__b88d1754d700e49a\DevExpress.XtraCharts.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraPrinting.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraPrinting.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraRichEdit.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraRichEdit.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.RichEdit.v11.1.Core\11.1.8.0__b88d1754d700e49a\DevExpress.RichEdit.v11.1.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraTreeList.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraTreeList.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraNavBar.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraNavBar.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraVerticalGrid.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraVerticalGrid.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.CodeParser.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.CodeParser.v11.1.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class xafReport1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label20;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Accountnumber_len1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label19;
|
||||
private DevExpress.XtraReports.UI.XRLabel label18;
|
||||
private DevExpress.XtraReports.UI.XRLabel label10;
|
||||
private DevExpress.XtraReports.UI.XRLabel label9;
|
||||
private DevExpress.XtraReports.UI.XRLabel label14;
|
||||
private DevExpress.XtraReports.UI.XRLabel label12;
|
||||
private DevExpress.XtraReports.UI.XRLabel label13;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Not_visible;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Accountnumber_len2;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Accountnumber_len3;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Accountnumber_len4;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Accountnumbre_len5;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Accountnumbre_len6;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter;
|
||||
private DevExpress.XtraReports.UI.XRLine line3;
|
||||
private DevExpress.XtraReports.UI.XRSubreport subreport1;
|
||||
private DevExpress.XtraReports.UI.PageHeaderBand PageHeader;
|
||||
private DevExpress.XtraReports.UI.XRLabel label11;
|
||||
private DevExpress.XtraReports.UI.XRLabel Header;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.XRPageInfo pageInfo2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label4;
|
||||
private DevExpress.XtraReports.UI.XRLabel label5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label7;
|
||||
private DevExpress.XtraReports.UI.XRPageInfo pageInfo1;
|
||||
private DevExpress.XtraReports.UI.PageFooterBand PageFooter;
|
||||
private DevExpress.XtraReports.UI.XRLine line2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label8;
|
||||
private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label17;
|
||||
private DevExpress.XtraReports.UI.XRLabel label16;
|
||||
private DevExpress.XtraReports.UI.XRLabel label15;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.XRLine line1;
|
||||
private DevExpress.XtraReports.UI.XRLabel Megnevezés;
|
||||
private DevExpress.XtraReports.UI.XRLabel Tartozik;
|
||||
private DevExpress.XtraReports.UI.XRLabel Követel;
|
||||
private DevExpress.XtraReports.UI.XRLabel label3;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public xafReport1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAHAAAAAAAAAFBBRFBBRFAFQIOWSF5ywcZ0uN7j8d/grBNR4gGHaUXVHBt5VgAAAAAAAACOAAAAZwAAAPQAAAArAAAAvwAAAPkBAAAmJAB0AGgAaQBzAC4AUwBjAHIAaQBwAHQAcwBTAG8AdQByAGMAZQAAAAAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQwBsAGEAcwBzAE4AYQBtAGUA4gAAAAxGAGkAbAB0AGUAcgAMAQAAIkYAaQBsAHQAZQByAEQAZQBzAGMAcgBpAHAAdABpAG8AbgAOAQAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlAHcAEAEAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQASAQAAFFIAZQBwAG8AcgB0AE4AYQBtAGUAEwEAAAHfAQ0KUHJpdmF0ZSBTdWIgc3VicmVwb3J0MV9CZWZvcmVQcmludChCeVZhbCBzZW5kZXIgQXMgT2JqZWN0LCBCeVZhbCBlIEFzIFN5c3RlbS5EcmF3aW5nLlByaW50aW5nLlByaW50RXZlbnRBcmdzKQ0KQ1R5cGUoc2VuZGVyLCBYUlN1YnJlcG9ydCkuUmVwb3J0U291cmNlLkZpbHRlclN0cmluZz0iVHJpYWxCYWxhbmNlSGVhZGVyLk9pZD0nIiAmIEhlYWRlci5UZXh0ICYgIiciDQpFbmQgU3ViDQoBKFNJU0J1c2luZXNzLk1vZHVsZS5UcmlhbEJhbGFuY2VPcGVuQ2xvc2UBAAEAAQAAARxGxZFrw7ZueXZpIGtpdm9uYXQgMSAoUsOpZ2kp";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
|
||||
this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
|
||||
this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
|
||||
this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||
this.label20 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label19 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label18 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label14 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label13 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line3 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.subreport1 = new DevExpress.XtraReports.UI.XRSubreport();
|
||||
this.label11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.Header = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.pageInfo2 = new DevExpress.XtraReports.UI.XRPageInfo();
|
||||
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.pageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo();
|
||||
this.line2 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label17 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label16 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label15 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line1 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.Megnevezés = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.Tartozik = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.Követel = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.Not_visible = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Accountnumber_len2 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Accountnumber_len3 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Accountnumber_len4 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Accountnumber_len1 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Accountnumbre_len5 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Accountnumbre_len6 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label20,
|
||||
this.label19,
|
||||
this.label18,
|
||||
this.label10,
|
||||
this.label9,
|
||||
this.label14,
|
||||
this.label12,
|
||||
this.label13});
|
||||
this.detailBand1.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.detailBand1.FormattingRules.Add(this.Not_visible);
|
||||
this.detailBand1.HeightF = 20.91665F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
this.detailBand1.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("AccountNumber", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
|
||||
this.detailBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.topMarginBand1.HeightF = 19F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
this.topMarginBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 24F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// ReportFooter
|
||||
//
|
||||
this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line3,
|
||||
this.subreport1});
|
||||
this.ReportFooter.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.ReportFooter.HeightF = 181.25F;
|
||||
this.ReportFooter.KeepTogether = true;
|
||||
this.ReportFooter.Name = "ReportFooter";
|
||||
this.ReportFooter.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand;
|
||||
this.ReportFooter.StylePriority.UseFont = false;
|
||||
//
|
||||
// PageHeader
|
||||
//
|
||||
this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label11,
|
||||
this.Header,
|
||||
this.label1,
|
||||
this.pageInfo2,
|
||||
this.label4,
|
||||
this.label5,
|
||||
this.label6,
|
||||
this.label7,
|
||||
this.pageInfo1});
|
||||
this.PageHeader.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.PageHeader.HeightF = 132.6667F;
|
||||
this.PageHeader.Name = "PageHeader";
|
||||
this.PageHeader.StylePriority.UseFont = false;
|
||||
this.PageHeader.StylePriority.UseTextAlignment = false;
|
||||
this.PageHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// PageFooter
|
||||
//
|
||||
this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line2,
|
||||
this.label8});
|
||||
this.PageFooter.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.PageFooter.HeightF = 23F;
|
||||
this.PageFooter.Name = "PageFooter";
|
||||
this.PageFooter.StylePriority.UseFont = false;
|
||||
//
|
||||
// GroupHeader1
|
||||
//
|
||||
this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label17,
|
||||
this.label16,
|
||||
this.label15,
|
||||
this.label2,
|
||||
this.line1,
|
||||
this.Megnevezés,
|
||||
this.Tartozik,
|
||||
this.Követel,
|
||||
this.label3});
|
||||
this.GroupHeader1.HeightF = 33.41667F;
|
||||
this.GroupHeader1.KeepTogether = true;
|
||||
this.GroupHeader1.Name = "GroupHeader1";
|
||||
this.GroupHeader1.RepeatEveryPage = true;
|
||||
//
|
||||
// label20
|
||||
//
|
||||
this.label20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BallanceHUF491", "{0:#,##0}")});
|
||||
this.label20.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label20.FormattingRules.Add(this.Accountnumber_len1);
|
||||
this.label20.LocationFloat = new DevExpress.Utils.PointFloat(241.9586F, 1.335144E-05F);
|
||||
this.label20.Name = "label20";
|
||||
this.label20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label20.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label20.StylePriority.UseFont = false;
|
||||
this.label20.StylePriority.UseTextAlignment = false;
|
||||
this.label20.Text = "label20";
|
||||
this.label20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label19
|
||||
//
|
||||
this.label19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BallanceHUFOpen", "{0:#,##0}")});
|
||||
this.label19.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label19.FormattingRules.Add(this.Accountnumber_len1);
|
||||
this.label19.LocationFloat = new DevExpress.Utils.PointFloat(361.9586F, 9.059906E-06F);
|
||||
this.label19.Name = "label19";
|
||||
this.label19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label19.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label19.StylePriority.UseFont = false;
|
||||
this.label19.StylePriority.UseTextAlignment = false;
|
||||
this.label19.Text = "label19";
|
||||
this.label19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label18
|
||||
//
|
||||
this.label18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BallanceHUF491Open", "{0:#,##0}")});
|
||||
this.label18.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label18.FormattingRules.Add(this.Accountnumber_len1);
|
||||
this.label18.LocationFloat = new DevExpress.Utils.PointFloat(481.9586F, 0F);
|
||||
this.label18.Name = "label18";
|
||||
this.label18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label18.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label18.StylePriority.UseFont = false;
|
||||
this.label18.StylePriority.UseTextAlignment = false;
|
||||
this.label18.Text = "label18";
|
||||
this.label18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label10
|
||||
//
|
||||
this.label10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BallanceHUFClose", "{0:#,##0}")});
|
||||
this.label10.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label10.FormattingRules.Add(this.Accountnumber_len1);
|
||||
this.label10.LocationFloat = new DevExpress.Utils.PointFloat(961.9586F, 0F);
|
||||
this.label10.Name = "label10";
|
||||
this.label10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label10.SizeF = new System.Drawing.SizeF(126.0411F, 20F);
|
||||
this.label10.StylePriority.UseFont = false;
|
||||
this.label10.StylePriority.UseTextAlignment = false;
|
||||
this.label10.Text = "label10";
|
||||
this.label10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label9
|
||||
//
|
||||
this.label9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BallanceHUF", "{0:#,##0}")});
|
||||
this.label9.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label9.FormattingRules.Add(this.Accountnumber_len1);
|
||||
this.label9.LocationFloat = new DevExpress.Utils.PointFloat(841.9586F, 0F);
|
||||
this.label9.Name = "label9";
|
||||
this.label9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label9.SizeF = new System.Drawing.SizeF(120F, 20.00001F);
|
||||
this.label9.StylePriority.UseFont = false;
|
||||
this.label9.StylePriority.UseTextAlignment = false;
|
||||
this.label9.Text = "label9";
|
||||
this.label9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label14
|
||||
//
|
||||
this.label14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CreditAmountHUF", "{0:#,##0}")});
|
||||
this.label14.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label14.FormattingRules.Add(this.Accountnumber_len1);
|
||||
this.label14.LocationFloat = new DevExpress.Utils.PointFloat(721.9586F, 0F);
|
||||
this.label14.Name = "label14";
|
||||
this.label14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label14.SizeF = new System.Drawing.SizeF(120F, 20.00001F);
|
||||
this.label14.StylePriority.UseFont = false;
|
||||
this.label14.StylePriority.UseTextAlignment = false;
|
||||
this.label14.Text = "label14";
|
||||
this.label14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label12
|
||||
//
|
||||
this.label12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DebitAmountHUF", "{0:#,##0}")});
|
||||
this.label12.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label12.FormattingRules.Add(this.Accountnumber_len1);
|
||||
this.label12.LocationFloat = new DevExpress.Utils.PointFloat(601.9586F, 0F);
|
||||
this.label12.Name = "label12";
|
||||
this.label12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label12.SizeF = new System.Drawing.SizeF(120F, 20.00001F);
|
||||
this.label12.StylePriority.UseFont = false;
|
||||
this.label12.StylePriority.UseTextAlignment = false;
|
||||
this.label12.Text = "label12";
|
||||
this.label12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label13
|
||||
//
|
||||
this.label13.AutoWidth = true;
|
||||
this.label13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ShortName")});
|
||||
this.label13.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label13.FormattingRules.Add(this.Not_visible);
|
||||
this.label13.FormattingRules.Add(this.Accountnumber_len2);
|
||||
this.label13.FormattingRules.Add(this.Accountnumber_len3);
|
||||
this.label13.FormattingRules.Add(this.Accountnumber_len4);
|
||||
this.label13.FormattingRules.Add(this.Accountnumber_len1);
|
||||
this.label13.FormattingRules.Add(this.Accountnumbre_len5);
|
||||
this.label13.FormattingRules.Add(this.Accountnumbre_len6);
|
||||
this.label13.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.label13.Name = "label13";
|
||||
this.label13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label13.SizeF = new System.Drawing.SizeF(241.9586F, 20.00001F);
|
||||
this.label13.StylePriority.UseFont = false;
|
||||
this.label13.Text = "label13";
|
||||
//
|
||||
// line3
|
||||
//
|
||||
this.line3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.line3.Name = "line3";
|
||||
this.line3.SizeF = new System.Drawing.SizeF(1088F, 3.833313F);
|
||||
//
|
||||
// subreport1
|
||||
//
|
||||
this.subreport1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 44.79167F);
|
||||
this.subreport1.Name = "subreport1";
|
||||
this.subreport1.ReportSourceUrl = "Főkönyvi kivonat 1 (Összesítés)";
|
||||
this.subreport1.Scripts.OnBeforePrint = "subreport1_BeforePrint";
|
||||
this.subreport1.SizeF = new System.Drawing.SizeF(1088F, 136.4583F);
|
||||
//
|
||||
// label11
|
||||
//
|
||||
this.label11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomersForm.FullName")});
|
||||
this.label11.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label11.LocationFloat = new DevExpress.Utils.PointFloat(0F, 84.12501F);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label11.SizeF = new System.Drawing.SizeF(1088F, 22.99999F);
|
||||
this.label11.StylePriority.UseFont = false;
|
||||
this.label11.StylePriority.UseTextAlignment = false;
|
||||
this.label11.Text = "label11";
|
||||
this.label11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// Header
|
||||
//
|
||||
this.Header.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "TrialBalanceHeader.Oid")});
|
||||
this.Header.LocationFloat = new DevExpress.Utils.PointFloat(0F, 61.12499F);
|
||||
this.Header.Name = "Header";
|
||||
this.Header.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.Header.SizeF = new System.Drawing.SizeF(246.875F, 21.875F);
|
||||
this.Header.Text = "Header";
|
||||
this.Header.Visible = false;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.Font = new System.Drawing.Font("Arial", 16F, System.Drawing.FontStyle.Bold);
|
||||
this.label1.ForeColor = System.Drawing.Color.Black;
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 22.91667F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.SizeF = new System.Drawing.SizeF(1088F, 38.20833F);
|
||||
this.label1.StyleName = "Title";
|
||||
this.label1.StylePriority.UseFont = false;
|
||||
this.label1.StylePriority.UseForeColor = false;
|
||||
this.label1.StylePriority.UseTextAlignment = false;
|
||||
this.label1.Text = "Főkönyvi kivonat";
|
||||
this.label1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// pageInfo2
|
||||
//
|
||||
this.pageInfo2.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.pageInfo2.Format = "{0}. / {1} oldal";
|
||||
this.pageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(942.1666F, 84.12501F);
|
||||
this.pageInfo2.Name = "pageInfo2";
|
||||
this.pageInfo2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.pageInfo2.SizeF = new System.Drawing.SizeF(145.8333F, 23F);
|
||||
this.pageInfo2.StyleName = "PageInfo";
|
||||
this.pageInfo2.StylePriority.UseFont = false;
|
||||
this.pageInfo2.StylePriority.UseTextAlignment = false;
|
||||
this.pageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(393.75F, 61.12501F);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label4.SizeF = new System.Drawing.SizeF(113.5417F, 23F);
|
||||
this.label4.StylePriority.UseFont = false;
|
||||
this.label4.Text = "Főkönyvi dátum:";
|
||||
//
|
||||
// label5
|
||||
//
|
||||
this.label5.AutoWidth = true;
|
||||
this.label5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "TrialBalanceHeader.DateFrom", "{0:yyyy.MM.dd.}")});
|
||||
this.label5.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(507.2917F, 61.12501F);
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label5.SizeF = new System.Drawing.SizeF(82.29166F, 23F);
|
||||
this.label5.StylePriority.UseFont = false;
|
||||
this.label5.StylePriority.UseTextAlignment = false;
|
||||
this.label5.Text = "label5";
|
||||
this.label5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.AutoWidth = true;
|
||||
this.label6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "TrialBalanceHeader.DateTo", "{0:yyyy.MM.dd.}")});
|
||||
this.label6.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(604.1667F, 61.12501F);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label6.SizeF = new System.Drawing.SizeF(90.625F, 23F);
|
||||
this.label6.StylePriority.UseFont = false;
|
||||
this.label6.StylePriority.UseTextAlignment = false;
|
||||
this.label6.Text = "label6";
|
||||
this.label6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// label7
|
||||
//
|
||||
this.label7.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label7.LocationFloat = new DevExpress.Utils.PointFloat(589.5833F, 61.12501F);
|
||||
this.label7.Name = "label7";
|
||||
this.label7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label7.SizeF = new System.Drawing.SizeF(14.58334F, 23F);
|
||||
this.label7.StylePriority.UseFont = false;
|
||||
this.label7.StylePriority.UseTextAlignment = false;
|
||||
this.label7.Text = "-";
|
||||
this.label7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// pageInfo1
|
||||
//
|
||||
this.pageInfo1.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.pageInfo1.Format = "{0:yyyy. MMMM d.}";
|
||||
this.pageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(942.1664F, 61.12501F);
|
||||
this.pageInfo1.Name = "pageInfo1";
|
||||
this.pageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.pageInfo1.PageInfo = DevExpress.XtraPrinting.PageInfo.DateTime;
|
||||
this.pageInfo1.SizeF = new System.Drawing.SizeF(145.8333F, 23F);
|
||||
this.pageInfo1.StylePriority.UseFont = false;
|
||||
this.pageInfo1.StylePriority.UseTextAlignment = false;
|
||||
this.pageInfo1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// line2
|
||||
//
|
||||
this.line2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.line2.Name = "line2";
|
||||
this.line2.SizeF = new System.Drawing.SizeF(1088F, 4.791609F);
|
||||
//
|
||||
// label8
|
||||
//
|
||||
this.label8.Font = new System.Drawing.Font("Arial", 5F);
|
||||
this.label8.LocationFloat = new DevExpress.Utils.PointFloat(0F, 4.791609F);
|
||||
this.label8.Name = "label8";
|
||||
this.label8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label8.SizeF = new System.Drawing.SizeF(102.3809F, 10.83339F);
|
||||
this.label8.StylePriority.UseFont = false;
|
||||
this.label8.Text = "Nuvolar Framework 2.0";
|
||||
//
|
||||
// label17
|
||||
//
|
||||
this.label17.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label17.LocationFloat = new DevExpress.Utils.PointFloat(481.9586F, 0F);
|
||||
this.label17.Name = "label17";
|
||||
this.label17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 5, 0, 0, 100F);
|
||||
this.label17.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label17.StylePriority.UseFont = false;
|
||||
this.label17.StylePriority.UsePadding = false;
|
||||
this.label17.StylePriority.UseTextAlignment = false;
|
||||
this.label17.Text = "Nyitó";
|
||||
this.label17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label16
|
||||
//
|
||||
this.label16.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label16.LocationFloat = new DevExpress.Utils.PointFloat(361.9586F, 3.178914E-05F);
|
||||
this.label16.Name = "label16";
|
||||
this.label16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label16.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label16.StylePriority.UseFont = false;
|
||||
this.label16.StylePriority.UseTextAlignment = false;
|
||||
this.label16.Text = "Megel. id. egy.";
|
||||
this.label16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label15
|
||||
//
|
||||
this.label15.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label15.LocationFloat = new DevExpress.Utils.PointFloat(241.9586F, 3.178914E-05F);
|
||||
this.label15.Name = "label15";
|
||||
this.label15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 5, 0, 0, 100F);
|
||||
this.label15.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label15.StylePriority.UseFont = false;
|
||||
this.label15.StylePriority.UsePadding = false;
|
||||
this.label15.StylePriority.UseTextAlignment = false;
|
||||
this.label15.Text = "491";
|
||||
this.label15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(841.9586F, 0F);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 5, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(120F, 19.99998F);
|
||||
this.label2.StylePriority.UseFont = false;
|
||||
this.label2.StylePriority.UsePadding = false;
|
||||
this.label2.StylePriority.UseTextAlignment = false;
|
||||
this.label2.Text = "Id. egyenleg";
|
||||
this.label2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// line1
|
||||
//
|
||||
this.line1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 20.00001F);
|
||||
this.line1.Name = "line1";
|
||||
this.line1.SizeF = new System.Drawing.SizeF(1088F, 3.833313F);
|
||||
//
|
||||
// Megnevezés
|
||||
//
|
||||
this.Megnevezés.AutoWidth = true;
|
||||
this.Megnevezés.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.Megnevezés.LocationFloat = new DevExpress.Utils.PointFloat(9.999974F, 0F);
|
||||
this.Megnevezés.Name = "Megnevezés";
|
||||
this.Megnevezés.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.Megnevezés.SizeF = new System.Drawing.SizeF(99.99997F, 20F);
|
||||
this.Megnevezés.StylePriority.UseFont = false;
|
||||
this.Megnevezés.Text = "Megnevezés";
|
||||
//
|
||||
// Tartozik
|
||||
//
|
||||
this.Tartozik.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.Tartozik.LocationFloat = new DevExpress.Utils.PointFloat(601.9586F, 0F);
|
||||
this.Tartozik.Name = "Tartozik";
|
||||
this.Tartozik.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.Tartozik.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.Tartozik.StylePriority.UseFont = false;
|
||||
this.Tartozik.StylePriority.UseTextAlignment = false;
|
||||
this.Tartozik.Text = "Tartozik forgalom";
|
||||
this.Tartozik.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// Követel
|
||||
//
|
||||
this.Követel.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.Követel.LocationFloat = new DevExpress.Utils.PointFloat(721.9586F, 3.178914E-05F);
|
||||
this.Követel.Name = "Követel";
|
||||
this.Követel.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.Követel.SizeF = new System.Drawing.SizeF(120F, 19.99998F);
|
||||
this.Követel.StylePriority.UseFont = false;
|
||||
this.Követel.StylePriority.UseTextAlignment = false;
|
||||
this.Követel.Text = "Követel forgalom";
|
||||
this.Követel.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label3.LocationFloat = new DevExpress.Utils.PointFloat(961.9586F, 0F);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label3.SizeF = new System.Drawing.SizeF(126.0411F, 20F);
|
||||
this.label3.StylePriority.UseFont = false;
|
||||
this.label3.StylePriority.UsePadding = false;
|
||||
this.label3.StylePriority.UseTextAlignment = false;
|
||||
this.label3.Text = "Záró egyenleg";
|
||||
this.label3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// Not_visible
|
||||
//
|
||||
this.Not_visible.Condition = "(IsNull([CreditAmountHUF]) or [CreditAmountHUF]=0) and (IsNull([DebitAmountHUF]) " +
|
||||
"or [DebitAmountHUF]=0)";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Not_visible.Formatting.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.Not_visible.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
|
||||
this.Not_visible.Name = "Not_visible";
|
||||
//
|
||||
// Accountnumber_len2
|
||||
//
|
||||
this.Accountnumber_len2.Condition = "Len([AccountNumber])=2";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Accountnumber_len2.Formatting.Padding = new DevExpress.XtraPrinting.PaddingInfo(20, 0, 0, 0, 100F);
|
||||
this.Accountnumber_len2.Name = "Accountnumber_len2";
|
||||
//
|
||||
// Accountnumber_len3
|
||||
//
|
||||
this.Accountnumber_len3.Condition = "Len([AccountNumber])=3";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Accountnumber_len3.Formatting.Padding = new DevExpress.XtraPrinting.PaddingInfo(40, 0, 0, 0, 100F);
|
||||
this.Accountnumber_len3.Name = "Accountnumber_len3";
|
||||
//
|
||||
// Accountnumber_len4
|
||||
//
|
||||
this.Accountnumber_len4.Condition = "Len([AccountNumber])=4";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Accountnumber_len4.Formatting.Padding = new DevExpress.XtraPrinting.PaddingInfo(60, 0, 0, 0, 100F);
|
||||
this.Accountnumber_len4.Name = "Accountnumber_len4";
|
||||
//
|
||||
// Accountnumber_len1
|
||||
//
|
||||
this.Accountnumber_len1.Condition = "Len([AccountNumber])=1";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Accountnumber_len1.Formatting.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.Accountnumber_len1.Name = "Accountnumber_len1";
|
||||
//
|
||||
// Accountnumbre_len5
|
||||
//
|
||||
this.Accountnumbre_len5.Condition = "Len([AccountNumber])=5";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Accountnumbre_len5.Formatting.Padding = new DevExpress.XtraPrinting.PaddingInfo(80, 0, 0, 0, 100F);
|
||||
this.Accountnumbre_len5.Name = "Accountnumbre_len5";
|
||||
//
|
||||
// Accountnumbre_len6
|
||||
//
|
||||
this.Accountnumbre_len6.Condition = "Len([AccountNumber])>=6";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Accountnumbre_len6.Formatting.Padding = new DevExpress.XtraPrinting.PaddingInfo(100, 0, 0, 0, 100F);
|
||||
this.Accountnumbre_len6.Name = "Accountnumbre_len6";
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.White;
|
||||
this.Title.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.White;
|
||||
this.FieldCaption.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.White;
|
||||
this.PageInfo.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.White;
|
||||
this.DataField.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// xafReport1
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.ReportFooter,
|
||||
this.PageHeader,
|
||||
this.PageFooter,
|
||||
this.GroupHeader1});
|
||||
this.DisplayName = "Főkönyvi kivonat 1 (Régi)";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Font = new System.Drawing.Font("Arial", 9.75F);
|
||||
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
|
||||
this.Not_visible,
|
||||
this.Accountnumber_len2,
|
||||
this.Accountnumber_len3,
|
||||
this.Accountnumber_len4,
|
||||
this.Accountnumber_len1,
|
||||
this.Accountnumbre_len5,
|
||||
this.Accountnumbre_len6});
|
||||
this.Landscape = true;
|
||||
this.Margins = new System.Drawing.Printing.Margins(34, 47, 19, 24);
|
||||
this.Name = "xafReport1";
|
||||
this.PageHeight = 827;
|
||||
this.PageWidth = 1169;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
this.ScriptLanguage = DevExpress.XtraReports.ScriptLanguage.VisualBasic;
|
||||
this.ScriptsSource = resources.GetString("$this.ScriptsSource");
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "11.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,901 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v11.1, Version=11.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v11.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.Reports.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.Reports.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.ExpressApp.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.ExpressApp.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Xpo.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.Xpo.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraReports.v11.1.Extensions\11.1.8.0__b88d1754d700e49a\DevExpress.XtraReports.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraBars.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraBars.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.Reports.v11.1.Designer\11.1.8.0__b88d1754d700e49a\DevExpress.Reports.v11.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraCharts.v11.1.Extensions\11.1.8.0__b88d1754d700e49a\DevExpress.XtraCharts.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraPrinting.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraPrinting.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraRichEdit.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraRichEdit.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.RichEdit.v11.1.Core\11.1.8.0__b88d1754d700e49a\DevExpress.RichEdit.v11.1.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraTreeList.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraTreeList.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraNavBar.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraNavBar.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.XtraVerticalGrid.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.XtraVerticalGrid.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\assembly\GAC_MSIL\DevExpress.CodeParser.v11.1\11.1.8.0__b88d1754d700e49a\DevExpress.CodeParser.v11.1.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class xafReport1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table3;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow3;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label22;
|
||||
private DevExpress.XtraReports.UI.XRLabel label4;
|
||||
private DevExpress.XtraReports.UI.XRLabel label3;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label5;
|
||||
private DevExpress.XtraReports.UI.ReportHeaderBand reportHeaderBand1;
|
||||
private DevExpress.XtraReports.UI.XRTable table1;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label21;
|
||||
private DevExpress.XtraReports.UI.XRLabel label20;
|
||||
private DevExpress.XtraReports.UI.XRLabel label19;
|
||||
private DevExpress.XtraReports.UI.XRLabel label18;
|
||||
private DevExpress.XtraReports.UI.XRLabel label17;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader2;
|
||||
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter2;
|
||||
private DevExpress.XtraReports.UI.XRLine line6;
|
||||
private DevExpress.XtraReports.UI.XRTable table2;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow2;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label23;
|
||||
private DevExpress.XtraReports.UI.XRLabel label10;
|
||||
private DevExpress.XtraReports.UI.XRLabel label9;
|
||||
private DevExpress.XtraReports.UI.XRLabel label8;
|
||||
private DevExpress.XtraReports.UI.XRLabel label7;
|
||||
private DevExpress.XtraReports.UI.XRLabel label15;
|
||||
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1;
|
||||
private DevExpress.XtraReports.UI.XRLine line2;
|
||||
private DevExpress.XtraReports.UI.XRTable table4;
|
||||
private DevExpress.XtraReports.UI.XRTableRow tableRow4;
|
||||
private DevExpress.XtraReports.UI.XRTableCell tableCell3;
|
||||
private DevExpress.XtraReports.UI.XRLabel label24;
|
||||
private DevExpress.XtraReports.UI.XRLabel label16;
|
||||
private DevExpress.XtraReports.UI.XRLabel label12;
|
||||
private DevExpress.XtraReports.UI.XRLabel label14;
|
||||
private DevExpress.XtraReports.UI.XRLabel label13;
|
||||
private DevExpress.XtraReports.UI.XRLabel label11;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private DevExpress.XtraReports.UI.CalculatedField calculatedField1;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public xafReport1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAHAAAAAAAAAFBBRFBBRFAFQIOWSF5ywcZ0uN7j8d/grBNR4gGHaUXVHBt5VgAAAAAAAACOAAAAZwAAAPQAAAArAAAAvwAAAPkBAAAmJAB0AGgAaQBzAC4AUwBjAHIAaQBwAHQAcwBTAG8AdQByAGMAZQAAAAAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQwBsAGEAcwBzAE4AYQBtAGUAAQEAAAxGAGkAbAB0AGUAcgAlAQAAIkYAaQBsAHQAZQByAEQAZQBzAGMAcgBpAHAAdABpAG8AbgAnAQAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlAHcAKQEAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQArAQAAFFIAZQBwAG8AcgB0AE4AYQBtAGUALAEAAAH+AVByaXZhdGUgU3ViIGxhYmVsMTVfQmVmb3JlUHJpbnQoQnlWYWwgc2VuZGVyIEFzIE9iamVjdCwgQnlWYWwgZSBBcyBTeXN0ZW0uRHJhd2luZy5QcmludGluZy5QcmludEV2ZW50QXJncykNCg0KaWYgR2V0Q3VycmVudENvbHVtblZhbHVlKCJBY2NvdW50U3VtIik9MCB0aGVuDQogbGFiZWwxNS50ZXh0PSIxLTQgc3rDoW1sYW9zenTDoWx5Ig0KZWxzZQ0KIGxhYmVsMTUudGV4dD0iNS05IHN6w6FtbGFvc3p0w6FseSINCmVuZCBpZg0KRW5kIFN1Yg0KASJTSVNCdXNpbmVzcy5Nb2R1bGUuVHJpYWxCYWxhbmNlU3VtAQABAAEAAAEkRsWRa8O2bnl2aSBraXZvbmF0IDEgKMOWc3N6ZXPDrXTDqXMp";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
DevExpress.XtraReports.UI.XRSummary summary1 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary2 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary3 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary4 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary5 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary6 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary7 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary8 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
DevExpress.XtraReports.UI.XRSummary summary9 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||
this.GroupFooter2 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.table3 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label22 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.table1 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label21 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label20 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label19 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label18 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label17 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line6 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.table2 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label23 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label15 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line2 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.table4 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.tableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.tableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.label24 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label16 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label14 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label13 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.calculatedField1 = new DevExpress.XtraReports.UI.CalculatedField();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table3)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table4)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table3});
|
||||
this.detailBand1.Font = new System.Drawing.Font("Arial", 9.75F);
|
||||
this.detailBand1.HeightF = 20F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
this.detailBand1.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("AccountNumber", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
|
||||
this.detailBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// reportHeaderBand1
|
||||
//
|
||||
this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.table1});
|
||||
this.reportHeaderBand1.Font = new System.Drawing.Font("Arial", 9.75F);
|
||||
this.reportHeaderBand1.HeightF = 64F;
|
||||
this.reportHeaderBand1.Name = "reportHeaderBand1";
|
||||
this.reportHeaderBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.HeightF = 12F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 25.625F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// GroupHeader2
|
||||
//
|
||||
this.GroupHeader2.Expanded = false;
|
||||
this.GroupHeader2.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("AccountSum", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
|
||||
this.GroupHeader2.HeightF = 0F;
|
||||
this.GroupHeader2.KeepTogether = true;
|
||||
this.GroupHeader2.Name = "GroupHeader2";
|
||||
this.GroupHeader2.RepeatEveryPage = true;
|
||||
this.GroupHeader2.StylePriority.UseFont = false;
|
||||
this.GroupHeader2.Visible = false;
|
||||
//
|
||||
// GroupFooter2
|
||||
//
|
||||
this.GroupFooter2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line6,
|
||||
this.table2});
|
||||
this.GroupFooter2.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.GroupFooter2.HeightF = 40F;
|
||||
this.GroupFooter2.Name = "GroupFooter2";
|
||||
this.GroupFooter2.StylePriority.UseFont = false;
|
||||
//
|
||||
// GroupFooter1
|
||||
//
|
||||
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line2,
|
||||
this.table4});
|
||||
this.GroupFooter1.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.GroupFooter1.HeightF = 70.83334F;
|
||||
this.GroupFooter1.Level = 1;
|
||||
this.GroupFooter1.Name = "GroupFooter1";
|
||||
this.GroupFooter1.StylePriority.UseFont = false;
|
||||
//
|
||||
// table3
|
||||
//
|
||||
this.table3.LocationFloat = new DevExpress.Utils.PointFloat(32.98607F, 0F);
|
||||
this.table3.Name = "table3";
|
||||
this.table3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow3});
|
||||
this.table3.SizeF = new System.Drawing.SizeF(1053.015F, 20F);
|
||||
//
|
||||
// tableRow3
|
||||
//
|
||||
this.tableRow3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
|
||||
this.tableRow3.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.tableRow3.BorderWidth = 2;
|
||||
this.tableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell5});
|
||||
this.tableRow3.Name = "tableRow3";
|
||||
this.tableRow3.StylePriority.UseBorderDashStyle = false;
|
||||
this.tableRow3.StylePriority.UseBorders = false;
|
||||
this.tableRow3.StylePriority.UseBorderWidth = false;
|
||||
this.tableRow3.Weight = 1D;
|
||||
//
|
||||
// tableCell5
|
||||
//
|
||||
this.tableCell5.BorderWidth = 3;
|
||||
this.tableCell5.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label22,
|
||||
this.label4,
|
||||
this.label3,
|
||||
this.label2,
|
||||
this.label6,
|
||||
this.label5});
|
||||
this.tableCell5.Name = "tableCell5";
|
||||
this.tableCell5.StylePriority.UseBorderWidth = false;
|
||||
this.tableCell5.Weight = 3D;
|
||||
//
|
||||
// label22
|
||||
//
|
||||
this.label22.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BallanceHUF", "{0:#,##0}")});
|
||||
this.label22.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label22.LocationFloat = new DevExpress.Utils.PointFloat(778.5573F, 0F);
|
||||
this.label22.Name = "label22";
|
||||
this.label22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label22.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label22.StylePriority.UseBorders = false;
|
||||
this.label22.StylePriority.UseFont = false;
|
||||
this.label22.StylePriority.UseTextAlignment = false;
|
||||
this.label22.Text = "label22";
|
||||
this.label22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DebitAmountHUF", "{0:#,##0}")});
|
||||
this.label4.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(538.5573F, 0F);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label4.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label4.StylePriority.UseBorders = false;
|
||||
this.label4.StylePriority.UseFont = false;
|
||||
this.label4.StylePriority.UseTextAlignment = false;
|
||||
this.label4.Text = "label4";
|
||||
this.label4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BallanceHUFOpen", "{0:#,##0}")});
|
||||
this.label3.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label3.LocationFloat = new DevExpress.Utils.PointFloat(418.5572F, 0F);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label3.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label3.StylePriority.UseBorders = false;
|
||||
this.label3.StylePriority.UseFont = false;
|
||||
this.label3.StylePriority.UseTextAlignment = false;
|
||||
this.label3.Text = "label3";
|
||||
this.label3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.AutoWidth = true;
|
||||
this.label2.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ShortName")});
|
||||
this.label2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(25.34726F, 0F);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(393.2099F, 20F);
|
||||
this.label2.StylePriority.UseBorders = false;
|
||||
this.label2.StylePriority.UseFont = false;
|
||||
this.label2.Text = "label2";
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BallanceHUFClose", "{0:#,##0}")});
|
||||
this.label6.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(898.5572F, 0F);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label6.SizeF = new System.Drawing.SizeF(129.9999F, 20F);
|
||||
this.label6.StylePriority.UseBorders = false;
|
||||
this.label6.StylePriority.UseFont = false;
|
||||
this.label6.StylePriority.UseTextAlignment = false;
|
||||
this.label6.Text = "label6";
|
||||
this.label6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label5
|
||||
//
|
||||
this.label5.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CreditAmountHUF", "{0:#,##0}")});
|
||||
this.label5.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(658.5573F, 0F);
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label5.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label5.StylePriority.UseBorders = false;
|
||||
this.label5.StylePriority.UseFont = false;
|
||||
this.label5.StylePriority.UseTextAlignment = false;
|
||||
this.label5.Text = "label5";
|
||||
this.label5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// table1
|
||||
//
|
||||
this.table1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
|
||||
this.table1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.table1.BorderWidth = 4;
|
||||
this.table1.LocationFloat = new DevExpress.Utils.PointFloat(32.98607F, 0F);
|
||||
this.table1.Name = "table1";
|
||||
this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow1});
|
||||
this.table1.SizeF = new System.Drawing.SizeF(1053.013F, 64F);
|
||||
this.table1.StylePriority.UseBorderDashStyle = false;
|
||||
this.table1.StylePriority.UseBorders = false;
|
||||
this.table1.StylePriority.UseBorderWidth = false;
|
||||
//
|
||||
// tableRow1
|
||||
//
|
||||
this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell2});
|
||||
this.tableRow1.Name = "tableRow1";
|
||||
this.tableRow1.Weight = 1D;
|
||||
//
|
||||
// tableCell2
|
||||
//
|
||||
this.tableCell2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
|
||||
this.tableCell2.BorderWidth = 3;
|
||||
this.tableCell2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label21,
|
||||
this.label20,
|
||||
this.label19,
|
||||
this.label18,
|
||||
this.label17,
|
||||
this.label1});
|
||||
this.tableCell2.Name = "tableCell2";
|
||||
this.tableCell2.StylePriority.UseBorderDashStyle = false;
|
||||
this.tableCell2.StylePriority.UseBorderWidth = false;
|
||||
this.tableCell2.Weight = 3D;
|
||||
//
|
||||
// label21
|
||||
//
|
||||
this.label21.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label21.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label21.LocationFloat = new DevExpress.Utils.PointFloat(778.5573F, 13F);
|
||||
this.label21.Name = "label21";
|
||||
this.label21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
|
||||
this.label21.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label21.StylePriority.UseBorders = false;
|
||||
this.label21.StylePriority.UseFont = false;
|
||||
this.label21.StylePriority.UseTextAlignment = false;
|
||||
this.label21.Text = "E. forgalom";
|
||||
this.label21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label20
|
||||
//
|
||||
this.label20.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label20.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label20.LocationFloat = new DevExpress.Utils.PointFloat(898.5573F, 13F);
|
||||
this.label20.Name = "label20";
|
||||
this.label20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
|
||||
this.label20.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label20.StylePriority.UseBorders = false;
|
||||
this.label20.StylePriority.UseFont = false;
|
||||
this.label20.StylePriority.UseTextAlignment = false;
|
||||
this.label20.Text = "E. záró";
|
||||
this.label20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label19
|
||||
//
|
||||
this.label19.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label19.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label19.LocationFloat = new DevExpress.Utils.PointFloat(658.5573F, 13F);
|
||||
this.label19.Name = "label19";
|
||||
this.label19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
|
||||
this.label19.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label19.StylePriority.UseBorders = false;
|
||||
this.label19.StylePriority.UseFont = false;
|
||||
this.label19.StylePriority.UseTextAlignment = false;
|
||||
this.label19.Text = "Követel forgalom";
|
||||
this.label19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label18
|
||||
//
|
||||
this.label18.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label18.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label18.LocationFloat = new DevExpress.Utils.PointFloat(538.5573F, 13F);
|
||||
this.label18.Name = "label18";
|
||||
this.label18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
|
||||
this.label18.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label18.StylePriority.UseBorders = false;
|
||||
this.label18.StylePriority.UseFont = false;
|
||||
this.label18.StylePriority.UseTextAlignment = false;
|
||||
this.label18.Text = "Tartozik forgalom";
|
||||
this.label18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label17
|
||||
//
|
||||
this.label17.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label17.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label17.LocationFloat = new DevExpress.Utils.PointFloat(418.5572F, 13F);
|
||||
this.label17.Name = "label17";
|
||||
this.label17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
|
||||
this.label17.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label17.StylePriority.UseBorders = false;
|
||||
this.label17.StylePriority.UseFont = false;
|
||||
this.label17.StylePriority.UseTextAlignment = false;
|
||||
this.label17.Text = "E. nyitó";
|
||||
this.label17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.Font = new System.Drawing.Font("Arial", 11F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
|
||||
this.label1.ForeColor = System.Drawing.Color.Black;
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(25.34722F, 12.99999F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.SizeF = new System.Drawing.SizeF(393.21F, 20F);
|
||||
this.label1.StyleName = "Title";
|
||||
this.label1.StylePriority.UseFont = false;
|
||||
this.label1.StylePriority.UseForeColor = false;
|
||||
this.label1.Text = "Számlaosztály összesítő";
|
||||
//
|
||||
// line6
|
||||
//
|
||||
this.line6.LocationFloat = new DevExpress.Utils.PointFloat(451.5433F, 0F);
|
||||
this.line6.Name = "line6";
|
||||
this.line6.SizeF = new System.Drawing.SizeF(632.4567F, 2.000006F);
|
||||
//
|
||||
// table2
|
||||
//
|
||||
this.table2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
|
||||
this.table2.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.table2.BorderWidth = 2;
|
||||
this.table2.LocationFloat = new DevExpress.Utils.PointFloat(32.98607F, 0F);
|
||||
this.table2.Name = "table2";
|
||||
this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow2});
|
||||
this.table2.SizeF = new System.Drawing.SizeF(1053.015F, 39.99999F);
|
||||
this.table2.StylePriority.UseBorderDashStyle = false;
|
||||
this.table2.StylePriority.UseBorders = false;
|
||||
this.table2.StylePriority.UseBorderWidth = false;
|
||||
//
|
||||
// tableRow2
|
||||
//
|
||||
this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell1});
|
||||
this.tableRow2.Name = "tableRow2";
|
||||
this.tableRow2.Weight = 1.6000001541940987D;
|
||||
//
|
||||
// tableCell1
|
||||
//
|
||||
this.tableCell1.BorderWidth = 3;
|
||||
this.tableCell1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label23,
|
||||
this.label10,
|
||||
this.label9,
|
||||
this.label8,
|
||||
this.label7,
|
||||
this.label15});
|
||||
this.tableCell1.Name = "tableCell1";
|
||||
this.tableCell1.StylePriority.UseBorderWidth = false;
|
||||
this.tableCell1.Text = "tableCell1";
|
||||
this.tableCell1.Weight = 3D;
|
||||
//
|
||||
// label23
|
||||
//
|
||||
this.label23.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BallanceHUF")});
|
||||
this.label23.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label23.LocationFloat = new DevExpress.Utils.PointFloat(778.5573F, 4.999987F);
|
||||
this.label23.Name = "label23";
|
||||
this.label23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
|
||||
this.label23.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label23.StylePriority.UseBorders = false;
|
||||
this.label23.StylePriority.UseFont = false;
|
||||
this.label23.StylePriority.UseTextAlignment = false;
|
||||
summary1.FormatString = "{0:#,##0}";
|
||||
summary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label23.Summary = summary1;
|
||||
this.label23.Text = "label23";
|
||||
this.label23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label10
|
||||
//
|
||||
this.label10.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BallanceHUFClose")});
|
||||
this.label10.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label10.LocationFloat = new DevExpress.Utils.PointFloat(898.5571F, 4.999987F);
|
||||
this.label10.Name = "label10";
|
||||
this.label10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label10.SizeF = new System.Drawing.SizeF(130F, 20F);
|
||||
this.label10.StylePriority.UseBorders = false;
|
||||
this.label10.StylePriority.UseFont = false;
|
||||
this.label10.StylePriority.UseTextAlignment = false;
|
||||
summary2.FormatString = "{0:#,##0}";
|
||||
summary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label10.Summary = summary2;
|
||||
this.label10.Text = "label10";
|
||||
this.label10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label9
|
||||
//
|
||||
this.label9.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CreditAmountHUF")});
|
||||
this.label9.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label9.LocationFloat = new DevExpress.Utils.PointFloat(658.5573F, 4.749998F);
|
||||
this.label9.Name = "label9";
|
||||
this.label9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label9.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label9.StylePriority.UseBorders = false;
|
||||
this.label9.StylePriority.UseFont = false;
|
||||
this.label9.StylePriority.UseTextAlignment = false;
|
||||
summary3.FormatString = "{0:#,##0}";
|
||||
summary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label9.Summary = summary3;
|
||||
this.label9.Text = "label9";
|
||||
this.label9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label8
|
||||
//
|
||||
this.label8.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DebitAmountHUF")});
|
||||
this.label8.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label8.LocationFloat = new DevExpress.Utils.PointFloat(538.5573F, 4.749998F);
|
||||
this.label8.Name = "label8";
|
||||
this.label8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label8.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label8.StylePriority.UseBorders = false;
|
||||
this.label8.StylePriority.UseFont = false;
|
||||
this.label8.StylePriority.UseTextAlignment = false;
|
||||
summary4.FormatString = "{0:#,##0}";
|
||||
summary4.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label8.Summary = summary4;
|
||||
this.label8.Text = "label8";
|
||||
this.label8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label7
|
||||
//
|
||||
this.label7.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BallanceHUFOpen")});
|
||||
this.label7.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label7.LocationFloat = new DevExpress.Utils.PointFloat(418.5572F, 4.999987F);
|
||||
this.label7.Name = "label7";
|
||||
this.label7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label7.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label7.StylePriority.UseBorders = false;
|
||||
this.label7.StylePriority.UseFont = false;
|
||||
this.label7.StylePriority.UseTextAlignment = false;
|
||||
summary5.FormatString = "{0:#,##0}";
|
||||
summary5.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.label7.Summary = summary5;
|
||||
this.label7.Text = "label7";
|
||||
this.label7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label15
|
||||
//
|
||||
this.label15.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label15.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label15.LocationFloat = new DevExpress.Utils.PointFloat(51.04166F, 4.874992F);
|
||||
this.label15.Name = "label15";
|
||||
this.label15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label15.Scripts.OnBeforePrint = "label15_BeforePrint";
|
||||
this.label15.SizeF = new System.Drawing.SizeF(367.5156F, 19.875F);
|
||||
this.label15.StylePriority.UseBorders = false;
|
||||
this.label15.StylePriority.UseFont = false;
|
||||
this.label15.Text = "label15";
|
||||
//
|
||||
// line2
|
||||
//
|
||||
this.line2.LocationFloat = new DevExpress.Utils.PointFloat(451.5428F, 0F);
|
||||
this.line2.Name = "line2";
|
||||
this.line2.SizeF = new System.Drawing.SizeF(632.4572F, 2F);
|
||||
//
|
||||
// table4
|
||||
//
|
||||
this.table4.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Double;
|
||||
this.table4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.table4.BorderWidth = 2;
|
||||
this.table4.LocationFloat = new DevExpress.Utils.PointFloat(32.98607F, 0F);
|
||||
this.table4.Name = "table4";
|
||||
this.table4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.tableRow4});
|
||||
this.table4.SizeF = new System.Drawing.SizeF(1053.013F, 64F);
|
||||
this.table4.StylePriority.UseBorderDashStyle = false;
|
||||
this.table4.StylePriority.UseBorders = false;
|
||||
this.table4.StylePriority.UseBorderWidth = false;
|
||||
//
|
||||
// tableRow4
|
||||
//
|
||||
this.tableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.tableCell3});
|
||||
this.tableRow4.Name = "tableRow4";
|
||||
this.tableRow4.Weight = 1D;
|
||||
//
|
||||
// tableCell3
|
||||
//
|
||||
this.tableCell3.BorderWidth = 3;
|
||||
this.tableCell3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label24,
|
||||
this.label16,
|
||||
this.label12,
|
||||
this.label14,
|
||||
this.label13,
|
||||
this.label11});
|
||||
this.tableCell3.Name = "tableCell3";
|
||||
this.tableCell3.StylePriority.UseBorderWidth = false;
|
||||
this.tableCell3.Weight = 3D;
|
||||
//
|
||||
// label24
|
||||
//
|
||||
this.label24.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BallanceHUF")});
|
||||
this.label24.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label24.LocationFloat = new DevExpress.Utils.PointFloat(778.5573F, 10.00001F);
|
||||
this.label24.Name = "label24";
|
||||
this.label24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
|
||||
this.label24.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label24.StylePriority.UseBorders = false;
|
||||
this.label24.StylePriority.UseFont = false;
|
||||
this.label24.StylePriority.UseTextAlignment = false;
|
||||
summary6.FormatString = "{0:#,##0}";
|
||||
summary6.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
|
||||
this.label24.Summary = summary6;
|
||||
this.label24.Text = "label24";
|
||||
this.label24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label16
|
||||
//
|
||||
this.label16.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label16.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||
this.label16.LocationFloat = new DevExpress.Utils.PointFloat(51.04166F, 9.999943F);
|
||||
this.label16.Name = "label16";
|
||||
this.label16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label16.SizeF = new System.Drawing.SizeF(367.5156F, 20.00001F);
|
||||
this.label16.StylePriority.UseBorders = false;
|
||||
this.label16.StylePriority.UseFont = false;
|
||||
this.label16.Text = "Mindösszesen:";
|
||||
//
|
||||
// label12
|
||||
//
|
||||
this.label12.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BallanceHUFOpen", "{0:#,##0}")});
|
||||
this.label12.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label12.LocationFloat = new DevExpress.Utils.PointFloat(418.5572F, 9.999996F);
|
||||
this.label12.Name = "label12";
|
||||
this.label12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label12.SizeF = new System.Drawing.SizeF(120F, 20.00001F);
|
||||
this.label12.StylePriority.UseBorders = false;
|
||||
this.label12.StylePriority.UseFont = false;
|
||||
this.label12.StylePriority.UseTextAlignment = false;
|
||||
this.label12.Text = "label12";
|
||||
this.label12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label14
|
||||
//
|
||||
this.label14.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BallanceHUFClose")});
|
||||
this.label14.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label14.LocationFloat = new DevExpress.Utils.PointFloat(898.5571F, 9.999996F);
|
||||
this.label14.Name = "label14";
|
||||
this.label14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label14.SizeF = new System.Drawing.SizeF(130F, 20.00001F);
|
||||
this.label14.StylePriority.UseBorders = false;
|
||||
this.label14.StylePriority.UseFont = false;
|
||||
this.label14.StylePriority.UseTextAlignment = false;
|
||||
summary7.FormatString = "{0:#,##0}";
|
||||
summary7.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
|
||||
this.label14.Summary = summary7;
|
||||
this.label14.Text = "label14";
|
||||
this.label14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label13
|
||||
//
|
||||
this.label13.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CreditAmountHUF")});
|
||||
this.label13.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label13.LocationFloat = new DevExpress.Utils.PointFloat(658.5573F, 9.999953F);
|
||||
this.label13.Name = "label13";
|
||||
this.label13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label13.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label13.StylePriority.UseBorders = false;
|
||||
this.label13.StylePriority.UseFont = false;
|
||||
this.label13.StylePriority.UseTextAlignment = false;
|
||||
summary8.FormatString = "{0:#,##0}";
|
||||
summary8.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
|
||||
this.label13.Summary = summary8;
|
||||
this.label13.Text = "label13";
|
||||
this.label13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label11
|
||||
//
|
||||
this.label11.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.label11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DebitAmountHUF")});
|
||||
this.label11.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label11.LocationFloat = new DevExpress.Utils.PointFloat(538.5573F, 9.999953F);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label11.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label11.StylePriority.UseBorders = false;
|
||||
this.label11.StylePriority.UseFont = false;
|
||||
this.label11.StylePriority.UseTextAlignment = false;
|
||||
summary9.FormatString = "{0:#,##0}";
|
||||
summary9.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
|
||||
this.label11.Summary = summary9;
|
||||
this.label11.Text = "label11";
|
||||
this.label11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.White;
|
||||
this.Title.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.White;
|
||||
this.FieldCaption.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.White;
|
||||
this.PageInfo.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.White;
|
||||
this.DataField.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// calculatedField1
|
||||
//
|
||||
this.calculatedField1.Expression = "Substring(\'[TrialBalanceHeader.TrialBalance.ShortNameFormatted]\', 0 ,1 )";
|
||||
this.calculatedField1.Name = "calculatedField1";
|
||||
//
|
||||
// xafReport1
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.reportHeaderBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.GroupHeader2,
|
||||
this.GroupFooter2,
|
||||
this.GroupFooter1});
|
||||
this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
|
||||
this.calculatedField1});
|
||||
this.DisplayName = "Főkönyvi kivonat 1 (Összesítés)";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.Landscape = true;
|
||||
this.Margins = new System.Drawing.Printing.Margins(39, 44, 12, 26);
|
||||
this.Name = "xafReport1";
|
||||
this.PageHeight = 827;
|
||||
this.PageWidth = 1169;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
this.ScriptLanguage = DevExpress.XtraReports.ScriptLanguage.VisualBasic;
|
||||
this.ScriptsSource = resources.GetString("$this.ScriptsSource");
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "11.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.table3)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.table4)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,700 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v11.1, Version=11.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v11.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v11.1.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.Xpo.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.XtraReports.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.XtraBars.v11.1.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.Reports.v11.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.XtraCharts.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.XtraPrinting.v11.1.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.XtraRichEdit.v11.1.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.RichEdit.v11.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.XtraTreeList.v11.1.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.XtraNavBar.v11.1.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.XtraVerticalGrid.v11.1.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.CodeParser.v11.1.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class xafReport1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label20;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Accountnumber_len1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label10;
|
||||
private DevExpress.XtraReports.UI.XRLabel label14;
|
||||
private DevExpress.XtraReports.UI.XRLabel label12;
|
||||
private DevExpress.XtraReports.UI.XRLabel label13;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Accountnumber_len2;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Accountnumber_len3;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Accountnumber_len4;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Accountnumbre_len5;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Accountnumbre_len6;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter;
|
||||
private DevExpress.XtraReports.UI.XRLine line3;
|
||||
private DevExpress.XtraReports.UI.XRSubreport subreport1;
|
||||
private DevExpress.XtraReports.UI.PageHeaderBand PageHeader;
|
||||
private DevExpress.XtraReports.UI.XRLabel label11;
|
||||
private DevExpress.XtraReports.UI.XRLabel Header;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.XRPageInfo pageInfo2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label4;
|
||||
private DevExpress.XtraReports.UI.XRLabel label5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label7;
|
||||
private DevExpress.XtraReports.UI.XRPageInfo pageInfo1;
|
||||
private DevExpress.XtraReports.UI.PageFooterBand PageFooter;
|
||||
private DevExpress.XtraReports.UI.XRLine line2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label8;
|
||||
private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label15;
|
||||
private DevExpress.XtraReports.UI.XRLine line1;
|
||||
private DevExpress.XtraReports.UI.XRLabel Megnevezés;
|
||||
private DevExpress.XtraReports.UI.XRLabel Tartozik;
|
||||
private DevExpress.XtraReports.UI.XRLabel Követel;
|
||||
private DevExpress.XtraReports.UI.XRLabel label3;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Not_visible;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public xafReport1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAHAAAAAAAAAFBBRFBBRFAFQIOWSF5ywcZ0uN7j8d/grBNR4gGHaUXVHBt5VgAAAAAAAACOAAAAZwAAAPQAAAArAAAAvwAAAPkBAAAmJAB0AGgAaQBzAC4AUwBjAHIAaQBwAHQAcwBTAG8AdQByAGMAZQAAAAAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQwBsAGEAcwBzAE4AYQBtAGUA4gAAAAxGAGkAbAB0AGUAcgAMAQAAIkYAaQBsAHQAZQByAEQAZQBzAGMAcgBpAHAAdABpAG8AbgAOAQAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlAHcAEAEAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQASAQAAFFIAZQBwAG8AcgB0AE4AYQBtAGUAEwEAAAHfAQ0KUHJpdmF0ZSBTdWIgc3VicmVwb3J0MV9CZWZvcmVQcmludChCeVZhbCBzZW5kZXIgQXMgT2JqZWN0LCBCeVZhbCBlIEFzIFN5c3RlbS5EcmF3aW5nLlByaW50aW5nLlByaW50RXZlbnRBcmdzKQ0KQ1R5cGUoc2VuZGVyLCBYUlN1YnJlcG9ydCkuUmVwb3J0U291cmNlLkZpbHRlclN0cmluZz0iVHJpYWxCYWxhbmNlSGVhZGVyLk9pZD0nIiAmIEhlYWRlci5UZXh0ICYgIiciDQpFbmQgU3ViDQoBKFNJU0J1c2luZXNzLk1vZHVsZS5UcmlhbEJhbGFuY2VPcGVuQ2xvc2UBAAEAAQAAARRGxZFrw7ZueXZpIGtpdm9uYXQgMQ==";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
|
||||
this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
|
||||
this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
|
||||
this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||
this.label20 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label14 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label13 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line3 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.subreport1 = new DevExpress.XtraReports.UI.XRSubreport();
|
||||
this.label11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.Header = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.pageInfo2 = new DevExpress.XtraReports.UI.XRPageInfo();
|
||||
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.pageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo();
|
||||
this.line2 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label15 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line1 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.Megnevezés = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.Tartozik = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.Követel = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.Not_visible = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Accountnumber_len2 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Accountnumber_len3 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Accountnumber_len4 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Accountnumber_len1 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Accountnumbre_len5 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Accountnumbre_len6 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label20,
|
||||
this.label10,
|
||||
this.label14,
|
||||
this.label12,
|
||||
this.label13});
|
||||
this.detailBand1.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.detailBand1.HeightF = 20.91665F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
this.detailBand1.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("AccountNumber", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
|
||||
this.detailBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.topMarginBand1.HeightF = 19F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
this.topMarginBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 24F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// ReportFooter
|
||||
//
|
||||
this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line3,
|
||||
this.subreport1});
|
||||
this.ReportFooter.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.ReportFooter.HeightF = 181.25F;
|
||||
this.ReportFooter.KeepTogether = true;
|
||||
this.ReportFooter.Name = "ReportFooter";
|
||||
this.ReportFooter.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand;
|
||||
this.ReportFooter.StylePriority.UseFont = false;
|
||||
//
|
||||
// PageHeader
|
||||
//
|
||||
this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label11,
|
||||
this.Header,
|
||||
this.label1,
|
||||
this.pageInfo2,
|
||||
this.label4,
|
||||
this.label5,
|
||||
this.label6,
|
||||
this.label7,
|
||||
this.pageInfo1});
|
||||
this.PageHeader.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.PageHeader.HeightF = 132.6667F;
|
||||
this.PageHeader.Name = "PageHeader";
|
||||
this.PageHeader.StylePriority.UseFont = false;
|
||||
this.PageHeader.StylePriority.UseTextAlignment = false;
|
||||
this.PageHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// PageFooter
|
||||
//
|
||||
this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line2,
|
||||
this.label8});
|
||||
this.PageFooter.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.PageFooter.HeightF = 23F;
|
||||
this.PageFooter.Name = "PageFooter";
|
||||
this.PageFooter.StylePriority.UseFont = false;
|
||||
//
|
||||
// GroupHeader1
|
||||
//
|
||||
this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label15,
|
||||
this.line1,
|
||||
this.Megnevezés,
|
||||
this.Tartozik,
|
||||
this.Követel,
|
||||
this.label3});
|
||||
this.GroupHeader1.HeightF = 33.41667F;
|
||||
this.GroupHeader1.KeepTogether = true;
|
||||
this.GroupHeader1.Name = "GroupHeader1";
|
||||
this.GroupHeader1.RepeatEveryPage = true;
|
||||
//
|
||||
// label20
|
||||
//
|
||||
this.label20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BallanceHUF491", "{0:#,##0}")});
|
||||
this.label20.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label20.FormattingRules.Add(this.Accountnumber_len1);
|
||||
this.label20.LocationFloat = new DevExpress.Utils.PointFloat(500F, 0F);
|
||||
this.label20.Name = "label20";
|
||||
this.label20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label20.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label20.StylePriority.UseFont = false;
|
||||
this.label20.StylePriority.UseTextAlignment = false;
|
||||
this.label20.Text = "label20";
|
||||
this.label20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label10
|
||||
//
|
||||
this.label10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "BallanceHUFClose", "{0:#,##0}")});
|
||||
this.label10.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label10.FormattingRules.Add(this.Accountnumber_len1);
|
||||
this.label10.LocationFloat = new DevExpress.Utils.PointFloat(950F, 0F);
|
||||
this.label10.Name = "label10";
|
||||
this.label10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label10.SizeF = new System.Drawing.SizeF(126.0411F, 20F);
|
||||
this.label10.StylePriority.UseFont = false;
|
||||
this.label10.StylePriority.UseTextAlignment = false;
|
||||
this.label10.Text = "label10";
|
||||
this.label10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label14
|
||||
//
|
||||
this.label14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CreditAmountHUF", "{0:#,##0}")});
|
||||
this.label14.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label14.FormattingRules.Add(this.Accountnumber_len1);
|
||||
this.label14.LocationFloat = new DevExpress.Utils.PointFloat(800F, 0F);
|
||||
this.label14.Name = "label14";
|
||||
this.label14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label14.SizeF = new System.Drawing.SizeF(120F, 20.00001F);
|
||||
this.label14.StylePriority.UseFont = false;
|
||||
this.label14.StylePriority.UseTextAlignment = false;
|
||||
this.label14.Text = "label14";
|
||||
this.label14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label12
|
||||
//
|
||||
this.label12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DebitAmountHUF", "{0:#,##0}")});
|
||||
this.label12.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label12.FormattingRules.Add(this.Accountnumber_len1);
|
||||
this.label12.LocationFloat = new DevExpress.Utils.PointFloat(650F, 0F);
|
||||
this.label12.Name = "label12";
|
||||
this.label12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label12.SizeF = new System.Drawing.SizeF(120F, 20.00001F);
|
||||
this.label12.StylePriority.UseFont = false;
|
||||
this.label12.StylePriority.UseTextAlignment = false;
|
||||
this.label12.Text = "label12";
|
||||
this.label12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label13
|
||||
//
|
||||
this.label13.AutoWidth = true;
|
||||
this.label13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ShortName")});
|
||||
this.label13.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label13.FormattingRules.Add(this.Accountnumber_len2);
|
||||
this.label13.FormattingRules.Add(this.Accountnumber_len3);
|
||||
this.label13.FormattingRules.Add(this.Accountnumber_len4);
|
||||
this.label13.FormattingRules.Add(this.Accountnumber_len1);
|
||||
this.label13.FormattingRules.Add(this.Accountnumbre_len5);
|
||||
this.label13.FormattingRules.Add(this.Accountnumbre_len6);
|
||||
this.label13.LocationFloat = new DevExpress.Utils.PointFloat(9.999974F, 0F);
|
||||
this.label13.Name = "label13";
|
||||
this.label13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label13.SizeF = new System.Drawing.SizeF(490F, 20.00001F);
|
||||
this.label13.StylePriority.UseFont = false;
|
||||
this.label13.Text = "label13";
|
||||
//
|
||||
// line3
|
||||
//
|
||||
this.line3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.line3.Name = "line3";
|
||||
this.line3.SizeF = new System.Drawing.SizeF(1088F, 3.833313F);
|
||||
//
|
||||
// subreport1
|
||||
//
|
||||
this.subreport1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 44.79167F);
|
||||
this.subreport1.Name = "subreport1";
|
||||
this.subreport1.ReportSourceUrl = "Főkönyvi kivonat 1 (Összesítés)";
|
||||
this.subreport1.Scripts.OnBeforePrint = "subreport1_BeforePrint";
|
||||
this.subreport1.SizeF = new System.Drawing.SizeF(1088F, 136.4583F);
|
||||
//
|
||||
// label11
|
||||
//
|
||||
this.label11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomersForm.FullName")});
|
||||
this.label11.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label11.LocationFloat = new DevExpress.Utils.PointFloat(0F, 84.12501F);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 5, 0, 0, 100F);
|
||||
this.label11.SizeF = new System.Drawing.SizeF(1088F, 22.99999F);
|
||||
this.label11.StylePriority.UseFont = false;
|
||||
this.label11.StylePriority.UsePadding = false;
|
||||
this.label11.StylePriority.UseTextAlignment = false;
|
||||
this.label11.Text = "label11";
|
||||
this.label11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// Header
|
||||
//
|
||||
this.Header.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "TrialBalanceHeader.Oid")});
|
||||
this.Header.LocationFloat = new DevExpress.Utils.PointFloat(0F, 61.12499F);
|
||||
this.Header.Name = "Header";
|
||||
this.Header.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.Header.SizeF = new System.Drawing.SizeF(246.875F, 21.875F);
|
||||
this.Header.Text = "Header";
|
||||
this.Header.Visible = false;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.Font = new System.Drawing.Font("Arial", 16F, System.Drawing.FontStyle.Bold);
|
||||
this.label1.ForeColor = System.Drawing.Color.Black;
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 22.91667F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.SizeF = new System.Drawing.SizeF(1088F, 38.20833F);
|
||||
this.label1.StyleName = "Title";
|
||||
this.label1.StylePriority.UseFont = false;
|
||||
this.label1.StylePriority.UseForeColor = false;
|
||||
this.label1.StylePriority.UseTextAlignment = false;
|
||||
this.label1.Text = "Főkönyvi kivonat";
|
||||
this.label1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// pageInfo2
|
||||
//
|
||||
this.pageInfo2.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.pageInfo2.Format = "{0}. / {1} oldal";
|
||||
this.pageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(942.1666F, 84.12501F);
|
||||
this.pageInfo2.Name = "pageInfo2";
|
||||
this.pageInfo2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.pageInfo2.SizeF = new System.Drawing.SizeF(145.8333F, 23F);
|
||||
this.pageInfo2.StyleName = "PageInfo";
|
||||
this.pageInfo2.StylePriority.UseFont = false;
|
||||
this.pageInfo2.StylePriority.UseTextAlignment = false;
|
||||
this.pageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(393.75F, 61.12501F);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label4.SizeF = new System.Drawing.SizeF(113.5417F, 23F);
|
||||
this.label4.StylePriority.UseFont = false;
|
||||
this.label4.Text = "Főkönyvi dátum:";
|
||||
//
|
||||
// label5
|
||||
//
|
||||
this.label5.AutoWidth = true;
|
||||
this.label5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "TrialBalanceHeader.DateFrom", "{0:yyyy.MM.dd.}")});
|
||||
this.label5.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(507.2917F, 61.12501F);
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label5.SizeF = new System.Drawing.SizeF(82.29166F, 23F);
|
||||
this.label5.StylePriority.UseFont = false;
|
||||
this.label5.StylePriority.UseTextAlignment = false;
|
||||
this.label5.Text = "label5";
|
||||
this.label5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.AutoWidth = true;
|
||||
this.label6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "TrialBalanceHeader.DateTo", "{0:yyyy.MM.dd.}")});
|
||||
this.label6.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(604.1667F, 61.12501F);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label6.SizeF = new System.Drawing.SizeF(90.625F, 23F);
|
||||
this.label6.StylePriority.UseFont = false;
|
||||
this.label6.StylePriority.UseTextAlignment = false;
|
||||
this.label6.Text = "label6";
|
||||
this.label6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// label7
|
||||
//
|
||||
this.label7.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label7.LocationFloat = new DevExpress.Utils.PointFloat(589.5833F, 61.12501F);
|
||||
this.label7.Name = "label7";
|
||||
this.label7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label7.SizeF = new System.Drawing.SizeF(14.58334F, 23F);
|
||||
this.label7.StylePriority.UseFont = false;
|
||||
this.label7.StylePriority.UseTextAlignment = false;
|
||||
this.label7.Text = "-";
|
||||
this.label7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// pageInfo1
|
||||
//
|
||||
this.pageInfo1.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.pageInfo1.Format = "{0:yyyy. MMMM d.}";
|
||||
this.pageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(942.1664F, 61.12501F);
|
||||
this.pageInfo1.Name = "pageInfo1";
|
||||
this.pageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.pageInfo1.PageInfo = DevExpress.XtraPrinting.PageInfo.DateTime;
|
||||
this.pageInfo1.SizeF = new System.Drawing.SizeF(145.8333F, 23F);
|
||||
this.pageInfo1.StylePriority.UseFont = false;
|
||||
this.pageInfo1.StylePriority.UseTextAlignment = false;
|
||||
this.pageInfo1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// line2
|
||||
//
|
||||
this.line2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.line2.Name = "line2";
|
||||
this.line2.SizeF = new System.Drawing.SizeF(1088F, 4.791609F);
|
||||
//
|
||||
// label8
|
||||
//
|
||||
this.label8.Font = new System.Drawing.Font("Arial", 5F);
|
||||
this.label8.LocationFloat = new DevExpress.Utils.PointFloat(0F, 4.791609F);
|
||||
this.label8.Name = "label8";
|
||||
this.label8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label8.SizeF = new System.Drawing.SizeF(102.3809F, 10.83339F);
|
||||
this.label8.StylePriority.UseFont = false;
|
||||
this.label8.Text = "Nuvolar Framework 2.0";
|
||||
//
|
||||
// label15
|
||||
//
|
||||
this.label15.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label15.LocationFloat = new DevExpress.Utils.PointFloat(500F, 0F);
|
||||
this.label15.Name = "label15";
|
||||
this.label15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 5, 0, 0, 100F);
|
||||
this.label15.SizeF = new System.Drawing.SizeF(120F, 20F);
|
||||
this.label15.StylePriority.UseFont = false;
|
||||
this.label15.StylePriority.UsePadding = false;
|
||||
this.label15.StylePriority.UseTextAlignment = false;
|
||||
this.label15.Text = "Éves nyitó";
|
||||
this.label15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// line1
|
||||
//
|
||||
this.line1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 20.00001F);
|
||||
this.line1.Name = "line1";
|
||||
this.line1.SizeF = new System.Drawing.SizeF(1088F, 3.833313F);
|
||||
//
|
||||
// Megnevezés
|
||||
//
|
||||
this.Megnevezés.AutoWidth = true;
|
||||
this.Megnevezés.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.Megnevezés.LocationFloat = new DevExpress.Utils.PointFloat(9.999974F, 0F);
|
||||
this.Megnevezés.Name = "Megnevezés";
|
||||
this.Megnevezés.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.Megnevezés.SizeF = new System.Drawing.SizeF(99.99997F, 20F);
|
||||
this.Megnevezés.StylePriority.UseFont = false;
|
||||
this.Megnevezés.Text = "Megnevezés";
|
||||
//
|
||||
// Tartozik
|
||||
//
|
||||
this.Tartozik.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.Tartozik.LocationFloat = new DevExpress.Utils.PointFloat(634.375F, 0F);
|
||||
this.Tartozik.Name = "Tartozik";
|
||||
this.Tartozik.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.Tartozik.SizeF = new System.Drawing.SizeF(135.625F, 20F);
|
||||
this.Tartozik.StylePriority.UseFont = false;
|
||||
this.Tartozik.StylePriority.UseTextAlignment = false;
|
||||
this.Tartozik.Text = "Tartozik forgalom";
|
||||
this.Tartozik.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// Követel
|
||||
//
|
||||
this.Követel.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.Követel.LocationFloat = new DevExpress.Utils.PointFloat(800F, 0F);
|
||||
this.Követel.Name = "Követel";
|
||||
this.Követel.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.Követel.SizeF = new System.Drawing.SizeF(120F, 19.99998F);
|
||||
this.Követel.StylePriority.UseFont = false;
|
||||
this.Követel.StylePriority.UseTextAlignment = false;
|
||||
this.Követel.Text = "Követel forgalom";
|
||||
this.Követel.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label3.LocationFloat = new DevExpress.Utils.PointFloat(950F, 0F);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label3.SizeF = new System.Drawing.SizeF(126.0411F, 20F);
|
||||
this.label3.StylePriority.UseFont = false;
|
||||
this.label3.StylePriority.UsePadding = false;
|
||||
this.label3.StylePriority.UseTextAlignment = false;
|
||||
this.label3.Text = "Záró egyenleg";
|
||||
this.label3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// Not_visible
|
||||
//
|
||||
this.Not_visible.Condition = "(IsNull([CreditAmountHUF]) or [CreditAmountHUF]=0) and (IsNull([DebitAmountHUF]) " +
|
||||
"or [DebitAmountHUF]=0)";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Not_visible.Formatting.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.Not_visible.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
|
||||
this.Not_visible.Name = "Not_visible";
|
||||
//
|
||||
// Accountnumber_len2
|
||||
//
|
||||
this.Accountnumber_len2.Condition = "Len([AccountNumber])=2";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Accountnumber_len2.Formatting.Padding = new DevExpress.XtraPrinting.PaddingInfo(20, 0, 0, 0, 100F);
|
||||
this.Accountnumber_len2.Name = "Accountnumber_len2";
|
||||
//
|
||||
// Accountnumber_len3
|
||||
//
|
||||
this.Accountnumber_len3.Condition = "Len([AccountNumber])=3";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Accountnumber_len3.Formatting.Padding = new DevExpress.XtraPrinting.PaddingInfo(40, 0, 0, 0, 100F);
|
||||
this.Accountnumber_len3.Name = "Accountnumber_len3";
|
||||
//
|
||||
// Accountnumber_len4
|
||||
//
|
||||
this.Accountnumber_len4.Condition = "Len([AccountNumber])=4";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Accountnumber_len4.Formatting.Padding = new DevExpress.XtraPrinting.PaddingInfo(60, 0, 0, 0, 100F);
|
||||
this.Accountnumber_len4.Name = "Accountnumber_len4";
|
||||
//
|
||||
// Accountnumber_len1
|
||||
//
|
||||
this.Accountnumber_len1.Condition = "Len([AccountNumber])=1";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Accountnumber_len1.Formatting.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.Accountnumber_len1.Name = "Accountnumber_len1";
|
||||
//
|
||||
// Accountnumbre_len5
|
||||
//
|
||||
this.Accountnumbre_len5.Condition = "Len([AccountNumber])=5";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Accountnumbre_len5.Formatting.Padding = new DevExpress.XtraPrinting.PaddingInfo(80, 0, 0, 0, 100F);
|
||||
this.Accountnumbre_len5.Name = "Accountnumbre_len5";
|
||||
//
|
||||
// Accountnumbre_len6
|
||||
//
|
||||
this.Accountnumbre_len6.Condition = "Len([AccountNumber])>=6";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Accountnumbre_len6.Formatting.Padding = new DevExpress.XtraPrinting.PaddingInfo(100, 0, 0, 0, 100F);
|
||||
this.Accountnumbre_len6.Name = "Accountnumbre_len6";
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.White;
|
||||
this.Title.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.White;
|
||||
this.FieldCaption.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.White;
|
||||
this.PageInfo.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.White;
|
||||
this.DataField.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// xafReport1
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.ReportFooter,
|
||||
this.PageHeader,
|
||||
this.PageFooter,
|
||||
this.GroupHeader1});
|
||||
this.DisplayName = "Főkönyvi kivonat 1";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Font = new System.Drawing.Font("Arial", 9.75F);
|
||||
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
|
||||
this.Not_visible,
|
||||
this.Accountnumber_len2,
|
||||
this.Accountnumber_len3,
|
||||
this.Accountnumber_len4,
|
||||
this.Accountnumber_len1,
|
||||
this.Accountnumbre_len5,
|
||||
this.Accountnumbre_len6});
|
||||
this.Landscape = true;
|
||||
this.Margins = new System.Drawing.Printing.Margins(34, 47, 19, 24);
|
||||
this.Name = "xafReport1";
|
||||
this.PageHeight = 827;
|
||||
this.PageWidth = 1169;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
this.ScriptLanguage = DevExpress.XtraReports.ScriptLanguage.VisualBasic;
|
||||
this.ScriptsSource = resources.GetString("$this.ScriptsSource");
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "11.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,698 @@
|
||||
/// <XRTypeInfo>
|
||||
/// <AssemblyFullName>DevExpress.ExpressApp.Reports.v11.1, Version=11.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</AssemblyFullName>
|
||||
/// <AssemblyLocation>C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v11.1.dll</AssemblyLocation>
|
||||
/// <TypeName>DevExpress.ExpressApp.Reports.XafReport</TypeName>
|
||||
/// <Localization>hu-HU</Localization>
|
||||
/// <References>
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.Reports.v11.1.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.ExpressApp.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.SqlXml\v4.0_4.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.Xpo.v11.1.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Framework\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualC\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Remoting\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.Protocols\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Accessibility\v4.0_4.0.0.0__b03f5f7f11d50a3a\Accessibility.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Tasks.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.v4.0.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration.Install\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Runtime.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Messaging\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel.Selectors\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.Selectors.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Transactions.Bridge\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Transactions.Bridge.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_64\Microsoft.VisualBasic.Activities.Compiler\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Activities.Compiler.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities.DurableInstancing\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.DurableInstancing.dll" />
|
||||
/// <Reference Path="C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.XtraReports.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.XtraBars.v11.1.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.Reports.v11.1.Designer.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.XtraCharts.v11.1.Extensions.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.XtraPrinting.v11.1.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.XtraRichEdit.v11.1.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.RichEdit.v11.1.Core.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.XtraTreeList.v11.1.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.XtraNavBar.v11.1.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.XtraVerticalGrid.v11.1.dll" />
|
||||
/// <Reference Path="C:\Users\sis\AppData\Roaming\SIS\Active\DevExpress.CodeParser.v11.1.dll" />
|
||||
/// </References>
|
||||
/// </XRTypeInfo>
|
||||
namespace XtraReportSerialization {
|
||||
|
||||
public class xafReport1 : DevExpress.XtraReports.UI.XtraReport {
|
||||
private DevExpress.XtraReports.UI.DetailBand detailBand1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label10;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Accountnumber_len1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label9;
|
||||
private DevExpress.XtraReports.UI.XRLabel label14;
|
||||
private DevExpress.XtraReports.UI.XRLabel label12;
|
||||
private DevExpress.XtraReports.UI.XRLabel label13;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Not_visible;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Accountnumber_len2;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Accountnumber_len3;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Accountnumber_len4;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Accountnumbre_len5;
|
||||
private DevExpress.XtraReports.UI.FormattingRule Accountnumbre_len6;
|
||||
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||
private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter;
|
||||
private DevExpress.XtraReports.UI.XRLine line3;
|
||||
private DevExpress.XtraReports.UI.XRSubreport subreport1;
|
||||
private DevExpress.XtraReports.UI.PageHeaderBand PageHeader;
|
||||
private DevExpress.XtraReports.UI.XRLabel label11;
|
||||
private DevExpress.XtraReports.UI.XRLabel Header;
|
||||
private DevExpress.XtraReports.UI.XRLabel label1;
|
||||
private DevExpress.XtraReports.UI.XRPageInfo pageInfo2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label4;
|
||||
private DevExpress.XtraReports.UI.XRLabel label5;
|
||||
private DevExpress.XtraReports.UI.XRLabel label6;
|
||||
private DevExpress.XtraReports.UI.XRLabel label7;
|
||||
private DevExpress.XtraReports.UI.XRPageInfo pageInfo1;
|
||||
private DevExpress.XtraReports.UI.PageFooterBand PageFooter;
|
||||
private DevExpress.XtraReports.UI.XRLine line2;
|
||||
private DevExpress.XtraReports.UI.XRLabel label8;
|
||||
private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader1;
|
||||
private DevExpress.XtraReports.UI.XRLabel label2;
|
||||
private DevExpress.XtraReports.UI.XRLine line1;
|
||||
private DevExpress.XtraReports.UI.XRLabel Megnevezés;
|
||||
private DevExpress.XtraReports.UI.XRLabel Tartozik;
|
||||
private DevExpress.XtraReports.UI.XRLabel Követel;
|
||||
private DevExpress.XtraReports.UI.XRLabel label3;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle Title;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle FieldCaption;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle PageInfo;
|
||||
private DevExpress.XtraReports.UI.XRControlStyle DataField;
|
||||
private System.Resources.ResourceManager _resources;
|
||||
public xafReport1() {
|
||||
this.InitializeComponent();
|
||||
}
|
||||
private System.Resources.ResourceManager resources {
|
||||
get {
|
||||
if (_resources == null) {
|
||||
string resourceString = @"zsrvvgEAAACRAAAAbFN5c3RlbS5SZXNvdXJjZXMuUmVzb3VyY2VSZWFkZXIsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OSNTeXN0ZW0uUmVzb3VyY2VzLlJ1bnRpbWVSZXNvdXJjZVNldAIAAAAHAAAAAAAAAFBBRFBBRFAFQIOWSF5ywcZ0uN7j8d/grBNR4gGHaUXVHBt5VgAAAAAAAACOAAAAZwAAAPQAAAArAAAAvwAAAPkBAAAmJAB0AGgAaQBzAC4AUwBjAHIAaQBwAHQAcwBTAG8AdQByAGMAZQAAAAAAJkQAYQB0AGEAUwBvAHUAcgBjAGUAQwBsAGEAcwBzAE4AYQBtAGUA4gAAAAxGAGkAbAB0AGUAcgADAQAAIkYAaQBsAHQAZQByAEQAZQBzAGMAcgBpAHAAdABpAG8AbgAFAQAALEYAaQBsAHQAZQByAEYAbwByAEQAZQBzAGkAZwBuAFAAcgBlAHYAaQBlAHcABwEAADBQAGEAcgBhAG0AZQB0AGUAcgBzAE8AYgBqAGUAYwB0AFQAeQBwAGUATgBhAG0AZQAJAQAAFFIAZQBwAG8AcgB0AE4AYQBtAGUACgEAAAHfAQ0KUHJpdmF0ZSBTdWIgc3VicmVwb3J0MV9CZWZvcmVQcmludChCeVZhbCBzZW5kZXIgQXMgT2JqZWN0LCBCeVZhbCBlIEFzIFN5c3RlbS5EcmF3aW5nLlByaW50aW5nLlByaW50RXZlbnRBcmdzKQ0KQ1R5cGUoc2VuZGVyLCBYUlN1YnJlcG9ydCkuUmVwb3J0U291cmNlLkZpbHRlclN0cmluZz0iVHJpYWxCYWxhbmNlSGVhZGVyLk9pZD0nIiAmIEhlYWRlci5UZXh0ICYgIiciDQpFbmQgU3ViDQoBH1NJU0J1c2luZXNzLk1vZHVsZS5UcmlhbEJhbGFuY2UBAAEAAQAAARJGxZFrw7ZueXZpIGtpdm9uYXQ=";
|
||||
this._resources = new DevExpress.XtraReports.Serialization.XRResourceManager(resourceString);
|
||||
}
|
||||
return this._resources;
|
||||
}
|
||||
}
|
||||
private void InitializeComponent() {
|
||||
this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
|
||||
this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
|
||||
this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
|
||||
this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||
this.label10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label14 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label13 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line3 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.subreport1 = new DevExpress.XtraReports.UI.XRSubreport();
|
||||
this.label11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.Header = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.pageInfo2 = new DevExpress.XtraReports.UI.XRPageInfo();
|
||||
this.label4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.pageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo();
|
||||
this.line2 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.label8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.line1 = new DevExpress.XtraReports.UI.XRLine();
|
||||
this.Megnevezés = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.Tartozik = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.Követel = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.label3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.Not_visible = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Accountnumber_len2 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Accountnumber_len3 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Accountnumber_len4 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Accountnumber_len1 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Accountnumbre_len5 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Accountnumbre_len6 = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.Title = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.FieldCaption = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.PageInfo = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
this.DataField = new DevExpress.XtraReports.UI.XRControlStyle();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// detailBand1
|
||||
//
|
||||
this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label10,
|
||||
this.label9,
|
||||
this.label14,
|
||||
this.label12,
|
||||
this.label13});
|
||||
this.detailBand1.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.detailBand1.HeightF = 20.00001F;
|
||||
this.detailBand1.Name = "detailBand1";
|
||||
this.detailBand1.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("AccountNumber", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
|
||||
this.detailBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// topMarginBand1
|
||||
//
|
||||
this.topMarginBand1.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.topMarginBand1.HeightF = 19F;
|
||||
this.topMarginBand1.Name = "topMarginBand1";
|
||||
this.topMarginBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.HeightF = 24F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// ReportFooter
|
||||
//
|
||||
this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line3,
|
||||
this.subreport1});
|
||||
this.ReportFooter.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.ReportFooter.HeightF = 181.25F;
|
||||
this.ReportFooter.KeepTogether = true;
|
||||
this.ReportFooter.Name = "ReportFooter";
|
||||
this.ReportFooter.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand;
|
||||
this.ReportFooter.StylePriority.UseFont = false;
|
||||
//
|
||||
// PageHeader
|
||||
//
|
||||
this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label11,
|
||||
this.Header,
|
||||
this.label1,
|
||||
this.pageInfo2,
|
||||
this.label4,
|
||||
this.label5,
|
||||
this.label6,
|
||||
this.label7,
|
||||
this.pageInfo1});
|
||||
this.PageHeader.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.PageHeader.HeightF = 132.6667F;
|
||||
this.PageHeader.Name = "PageHeader";
|
||||
this.PageHeader.StylePriority.UseFont = false;
|
||||
this.PageHeader.StylePriority.UseTextAlignment = false;
|
||||
this.PageHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// PageFooter
|
||||
//
|
||||
this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.line2,
|
||||
this.label8});
|
||||
this.PageFooter.Font = new System.Drawing.Font("Arial", 8F);
|
||||
this.PageFooter.HeightF = 23F;
|
||||
this.PageFooter.Name = "PageFooter";
|
||||
this.PageFooter.StylePriority.UseFont = false;
|
||||
//
|
||||
// GroupHeader1
|
||||
//
|
||||
this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.label2,
|
||||
this.line1,
|
||||
this.Megnevezés,
|
||||
this.Tartozik,
|
||||
this.Követel,
|
||||
this.label3});
|
||||
this.GroupHeader1.HeightF = 29.16667F;
|
||||
this.GroupHeader1.KeepTogether = true;
|
||||
this.GroupHeader1.Name = "GroupHeader1";
|
||||
this.GroupHeader1.RepeatEveryPage = true;
|
||||
//
|
||||
// label10
|
||||
//
|
||||
this.label10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CreditRAmountHUF", "{0:#,##0}")});
|
||||
this.label10.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label10.FormattingRules.Add(this.Accountnumber_len1);
|
||||
this.label10.LocationFloat = new DevExpress.Utils.PointFloat(938F, 0F);
|
||||
this.label10.Name = "label10";
|
||||
this.label10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label10.SizeF = new System.Drawing.SizeF(145F, 20F);
|
||||
this.label10.StylePriority.UseFont = false;
|
||||
this.label10.StylePriority.UseTextAlignment = false;
|
||||
this.label10.Text = "label10";
|
||||
this.label10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label9
|
||||
//
|
||||
this.label9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DebitRAmountHUF", "{0:#,##0}")});
|
||||
this.label9.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label9.FormattingRules.Add(this.Accountnumber_len1);
|
||||
this.label9.LocationFloat = new DevExpress.Utils.PointFloat(788F, 0F);
|
||||
this.label9.Name = "label9";
|
||||
this.label9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label9.SizeF = new System.Drawing.SizeF(150F, 20.00001F);
|
||||
this.label9.StylePriority.UseFont = false;
|
||||
this.label9.StylePriority.UseTextAlignment = false;
|
||||
this.label9.Text = "label9";
|
||||
this.label9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label14
|
||||
//
|
||||
this.label14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CreditAmountHUF", "{0:#,##0}")});
|
||||
this.label14.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label14.FormattingRules.Add(this.Accountnumber_len1);
|
||||
this.label14.LocationFloat = new DevExpress.Utils.PointFloat(638F, 0F);
|
||||
this.label14.Name = "label14";
|
||||
this.label14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label14.SizeF = new System.Drawing.SizeF(150F, 20.00001F);
|
||||
this.label14.StylePriority.UseFont = false;
|
||||
this.label14.StylePriority.UseTextAlignment = false;
|
||||
this.label14.Text = "label14";
|
||||
this.label14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label12
|
||||
//
|
||||
this.label12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DebitAmountHUF", "{0:#,##0}")});
|
||||
this.label12.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label12.FormattingRules.Add(this.Accountnumber_len1);
|
||||
this.label12.LocationFloat = new DevExpress.Utils.PointFloat(488F, 0F);
|
||||
this.label12.Name = "label12";
|
||||
this.label12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label12.SizeF = new System.Drawing.SizeF(150F, 20.00001F);
|
||||
this.label12.StylePriority.UseFont = false;
|
||||
this.label12.StylePriority.UseTextAlignment = false;
|
||||
this.label12.Text = "label12";
|
||||
this.label12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label13
|
||||
//
|
||||
this.label13.AutoWidth = true;
|
||||
this.label13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ShortName")});
|
||||
this.label13.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.label13.FormattingRules.Add(this.Not_visible);
|
||||
this.label13.FormattingRules.Add(this.Accountnumber_len2);
|
||||
this.label13.FormattingRules.Add(this.Accountnumber_len3);
|
||||
this.label13.FormattingRules.Add(this.Accountnumber_len4);
|
||||
this.label13.FormattingRules.Add(this.Accountnumber_len1);
|
||||
this.label13.FormattingRules.Add(this.Accountnumbre_len5);
|
||||
this.label13.FormattingRules.Add(this.Accountnumbre_len6);
|
||||
this.label13.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.label13.Name = "label13";
|
||||
this.label13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label13.SizeF = new System.Drawing.SizeF(488F, 20.00001F);
|
||||
this.label13.StylePriority.UseFont = false;
|
||||
this.label13.Text = "label13";
|
||||
//
|
||||
// line3
|
||||
//
|
||||
this.line3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.line3.Name = "line3";
|
||||
this.line3.SizeF = new System.Drawing.SizeF(1088F, 3.833313F);
|
||||
//
|
||||
// subreport1
|
||||
//
|
||||
this.subreport1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 44.79167F);
|
||||
this.subreport1.Name = "subreport1";
|
||||
this.subreport1.ReportSourceUrl = "Főkönyvi kivonat (Összesítés)";
|
||||
this.subreport1.Scripts.OnBeforePrint = "subreport1_BeforePrint";
|
||||
this.subreport1.SizeF = new System.Drawing.SizeF(1088F, 136.4583F);
|
||||
//
|
||||
// label11
|
||||
//
|
||||
this.label11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomersForm.FullName")});
|
||||
this.label11.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label11.LocationFloat = new DevExpress.Utils.PointFloat(0F, 84.12501F);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label11.SizeF = new System.Drawing.SizeF(1088F, 22.99999F);
|
||||
this.label11.StylePriority.UseFont = false;
|
||||
this.label11.StylePriority.UseTextAlignment = false;
|
||||
this.label11.Text = "label11";
|
||||
this.label11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// Header
|
||||
//
|
||||
this.Header.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "TrialBalanceHeader.Oid")});
|
||||
this.Header.LocationFloat = new DevExpress.Utils.PointFloat(0F, 61.12499F);
|
||||
this.Header.Name = "Header";
|
||||
this.Header.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.Header.SizeF = new System.Drawing.SizeF(246.875F, 21.875F);
|
||||
this.Header.Text = "Header";
|
||||
this.Header.Visible = false;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.Font = new System.Drawing.Font("Arial", 16F, System.Drawing.FontStyle.Bold);
|
||||
this.label1.ForeColor = System.Drawing.Color.Black;
|
||||
this.label1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 22.91667F);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label1.SizeF = new System.Drawing.SizeF(1088F, 38.20833F);
|
||||
this.label1.StyleName = "Title";
|
||||
this.label1.StylePriority.UseFont = false;
|
||||
this.label1.StylePriority.UseForeColor = false;
|
||||
this.label1.StylePriority.UseTextAlignment = false;
|
||||
this.label1.Text = "Főkönyvi kivonat";
|
||||
this.label1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// pageInfo2
|
||||
//
|
||||
this.pageInfo2.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.pageInfo2.Format = "{0}. / {1} oldal";
|
||||
this.pageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(942.1666F, 84.12501F);
|
||||
this.pageInfo2.Name = "pageInfo2";
|
||||
this.pageInfo2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.pageInfo2.SizeF = new System.Drawing.SizeF(145.8333F, 23F);
|
||||
this.pageInfo2.StyleName = "PageInfo";
|
||||
this.pageInfo2.StylePriority.UseFont = false;
|
||||
this.pageInfo2.StylePriority.UseTextAlignment = false;
|
||||
this.pageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label4
|
||||
//
|
||||
this.label4.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label4.LocationFloat = new DevExpress.Utils.PointFloat(393.75F, 61.12501F);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label4.SizeF = new System.Drawing.SizeF(113.5417F, 23F);
|
||||
this.label4.StylePriority.UseFont = false;
|
||||
this.label4.Text = "Főkönyvi dátum:";
|
||||
//
|
||||
// label5
|
||||
//
|
||||
this.label5.AutoWidth = true;
|
||||
this.label5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "TrialBalanceHeader.DateFrom", "{0:yyyy.MM.dd.}")});
|
||||
this.label5.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label5.LocationFloat = new DevExpress.Utils.PointFloat(507.2917F, 61.12501F);
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label5.SizeF = new System.Drawing.SizeF(82.29166F, 23F);
|
||||
this.label5.StylePriority.UseFont = false;
|
||||
this.label5.StylePriority.UseTextAlignment = false;
|
||||
this.label5.Text = "label5";
|
||||
this.label5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.AutoWidth = true;
|
||||
this.label6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "TrialBalanceHeader.DateTo", "{0:yyyy.MM.dd.}")});
|
||||
this.label6.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label6.LocationFloat = new DevExpress.Utils.PointFloat(604.1667F, 61.12501F);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label6.SizeF = new System.Drawing.SizeF(90.625F, 23F);
|
||||
this.label6.StylePriority.UseFont = false;
|
||||
this.label6.StylePriority.UseTextAlignment = false;
|
||||
this.label6.Text = "label6";
|
||||
this.label6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// label7
|
||||
//
|
||||
this.label7.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.label7.LocationFloat = new DevExpress.Utils.PointFloat(589.5833F, 61.12501F);
|
||||
this.label7.Name = "label7";
|
||||
this.label7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label7.SizeF = new System.Drawing.SizeF(14.58334F, 23F);
|
||||
this.label7.StylePriority.UseFont = false;
|
||||
this.label7.StylePriority.UseTextAlignment = false;
|
||||
this.label7.Text = "-";
|
||||
this.label7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||
//
|
||||
// pageInfo1
|
||||
//
|
||||
this.pageInfo1.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.pageInfo1.Format = "{0:yyyy. MMMM d.}";
|
||||
this.pageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(942.1664F, 61.12501F);
|
||||
this.pageInfo1.Name = "pageInfo1";
|
||||
this.pageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.pageInfo1.PageInfo = DevExpress.XtraPrinting.PageInfo.DateTime;
|
||||
this.pageInfo1.SizeF = new System.Drawing.SizeF(145.8333F, 23F);
|
||||
this.pageInfo1.StylePriority.UseFont = false;
|
||||
this.pageInfo1.StylePriority.UseTextAlignment = false;
|
||||
this.pageInfo1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// line2
|
||||
//
|
||||
this.line2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.line2.Name = "line2";
|
||||
this.line2.SizeF = new System.Drawing.SizeF(1088F, 4.791609F);
|
||||
//
|
||||
// label8
|
||||
//
|
||||
this.label8.Font = new System.Drawing.Font("Arial", 5F);
|
||||
this.label8.LocationFloat = new DevExpress.Utils.PointFloat(0F, 4.791609F);
|
||||
this.label8.Name = "label8";
|
||||
this.label8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label8.SizeF = new System.Drawing.SizeF(102.3809F, 10.83339F);
|
||||
this.label8.StylePriority.UseFont = false;
|
||||
this.label8.Text = "Nuvolar Framework 2.0";
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label2.LocationFloat = new DevExpress.Utils.PointFloat(788F, 0F);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label2.SizeF = new System.Drawing.SizeF(150.0001F, 19.99998F);
|
||||
this.label2.StylePriority.UseFont = false;
|
||||
this.label2.StylePriority.UseTextAlignment = false;
|
||||
this.label2.Text = "Tartozik egyenleg";
|
||||
this.label2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// line1
|
||||
//
|
||||
this.line1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 20.00001F);
|
||||
this.line1.Name = "line1";
|
||||
this.line1.SizeF = new System.Drawing.SizeF(1088F, 3.833313F);
|
||||
//
|
||||
// Megnevezés
|
||||
//
|
||||
this.Megnevezés.AutoWidth = true;
|
||||
this.Megnevezés.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.Megnevezés.LocationFloat = new DevExpress.Utils.PointFloat(9.999974F, 0F);
|
||||
this.Megnevezés.Name = "Megnevezés";
|
||||
this.Megnevezés.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.Megnevezés.SizeF = new System.Drawing.SizeF(99.99997F, 20F);
|
||||
this.Megnevezés.StylePriority.UseFont = false;
|
||||
this.Megnevezés.Text = "Megnevezés";
|
||||
//
|
||||
// Tartozik
|
||||
//
|
||||
this.Tartozik.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.Tartozik.LocationFloat = new DevExpress.Utils.PointFloat(488F, 0F);
|
||||
this.Tartozik.Name = "Tartozik";
|
||||
this.Tartozik.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.Tartozik.SizeF = new System.Drawing.SizeF(150F, 20F);
|
||||
this.Tartozik.StylePriority.UseFont = false;
|
||||
this.Tartozik.StylePriority.UseTextAlignment = false;
|
||||
this.Tartozik.Text = "Tartozik forgalom";
|
||||
this.Tartozik.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// Követel
|
||||
//
|
||||
this.Követel.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.Követel.LocationFloat = new DevExpress.Utils.PointFloat(638F, 0F);
|
||||
this.Követel.Name = "Követel";
|
||||
this.Követel.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.Követel.SizeF = new System.Drawing.SizeF(150F, 19.99998F);
|
||||
this.Követel.StylePriority.UseFont = false;
|
||||
this.Követel.StylePriority.UseTextAlignment = false;
|
||||
this.Követel.Text = "Követel forgalom";
|
||||
this.Követel.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.label3.LocationFloat = new DevExpress.Utils.PointFloat(938F, 0F);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.label3.SizeF = new System.Drawing.SizeF(147F, 20F);
|
||||
this.label3.StylePriority.UseFont = false;
|
||||
this.label3.StylePriority.UseTextAlignment = false;
|
||||
this.label3.Text = "Követel egyenleg";
|
||||
this.label3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
//
|
||||
// Not_visible
|
||||
//
|
||||
this.Not_visible.Condition = "(IsNull([CreditAmountHUF]) or [CreditAmountHUF]=0) and (IsNull([DebitAmountHUF]) " +
|
||||
"or [DebitAmountHUF]=0)";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Not_visible.Formatting.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
||||
this.Not_visible.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
|
||||
this.Not_visible.Name = "Not_visible";
|
||||
//
|
||||
// Accountnumber_len2
|
||||
//
|
||||
this.Accountnumber_len2.Condition = "Len([AccountNumber])=2";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Accountnumber_len2.Formatting.Padding = new DevExpress.XtraPrinting.PaddingInfo(20, 0, 0, 0, 100F);
|
||||
this.Accountnumber_len2.Name = "Accountnumber_len2";
|
||||
//
|
||||
// Accountnumber_len3
|
||||
//
|
||||
this.Accountnumber_len3.Condition = "Len([AccountNumber])=3";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Accountnumber_len3.Formatting.Padding = new DevExpress.XtraPrinting.PaddingInfo(40, 0, 0, 0, 100F);
|
||||
this.Accountnumber_len3.Name = "Accountnumber_len3";
|
||||
//
|
||||
// Accountnumber_len4
|
||||
//
|
||||
this.Accountnumber_len4.Condition = "Len([AccountNumber])=4";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Accountnumber_len4.Formatting.Padding = new DevExpress.XtraPrinting.PaddingInfo(60, 0, 0, 0, 100F);
|
||||
this.Accountnumber_len4.Name = "Accountnumber_len4";
|
||||
//
|
||||
// Accountnumber_len1
|
||||
//
|
||||
this.Accountnumber_len1.Condition = "Len([AccountNumber])=1";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Accountnumber_len1.Formatting.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.Accountnumber_len1.Name = "Accountnumber_len1";
|
||||
//
|
||||
// Accountnumbre_len5
|
||||
//
|
||||
this.Accountnumbre_len5.Condition = "Len([AccountNumber])=5";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Accountnumbre_len5.Formatting.Padding = new DevExpress.XtraPrinting.PaddingInfo(80, 0, 0, 0, 100F);
|
||||
this.Accountnumbre_len5.Name = "Accountnumbre_len5";
|
||||
//
|
||||
// Accountnumbre_len6
|
||||
//
|
||||
this.Accountnumbre_len6.Condition = "Len([AccountNumber])>=6";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.Accountnumbre_len6.Formatting.Padding = new DevExpress.XtraPrinting.PaddingInfo(100, 0, 0, 0, 100F);
|
||||
this.Accountnumbre_len6.Name = "Accountnumbre_len6";
|
||||
//
|
||||
// Title
|
||||
//
|
||||
this.Title.BackColor = System.Drawing.Color.White;
|
||||
this.Title.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.Title.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.Title.BorderWidth = 1;
|
||||
this.Title.Font = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.Title.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.Title.Name = "Title";
|
||||
//
|
||||
// FieldCaption
|
||||
//
|
||||
this.FieldCaption.BackColor = System.Drawing.Color.White;
|
||||
this.FieldCaption.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.FieldCaption.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.FieldCaption.BorderWidth = 1;
|
||||
this.FieldCaption.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.FieldCaption.ForeColor = System.Drawing.Color.Maroon;
|
||||
this.FieldCaption.Name = "FieldCaption";
|
||||
//
|
||||
// PageInfo
|
||||
//
|
||||
this.PageInfo.BackColor = System.Drawing.Color.White;
|
||||
this.PageInfo.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.PageInfo.BorderWidth = 1;
|
||||
this.PageInfo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.PageInfo.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.PageInfo.Name = "PageInfo";
|
||||
//
|
||||
// DataField
|
||||
//
|
||||
this.DataField.BackColor = System.Drawing.Color.White;
|
||||
this.DataField.BorderColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.DataField.BorderWidth = 1;
|
||||
this.DataField.Font = new System.Drawing.Font("Times New Roman", 10F);
|
||||
this.DataField.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.DataField.Name = "DataField";
|
||||
this.DataField.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
//
|
||||
// xafReport1
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.detailBand1,
|
||||
this.topMarginBand1,
|
||||
this.bottomMarginBand1,
|
||||
this.ReportFooter,
|
||||
this.PageHeader,
|
||||
this.PageFooter,
|
||||
this.GroupHeader1});
|
||||
this.DisplayName = "Főkönyvi kivonat";
|
||||
this.Extensions.Add("DataSerializationExtension", "XafReport");
|
||||
this.Extensions.Add("DataEditorExtension", "XafReport");
|
||||
this.Extensions.Add("ParameterEditorExtension", "XafReport");
|
||||
this.Font = new System.Drawing.Font("Arial", 9.75F);
|
||||
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
|
||||
this.Not_visible,
|
||||
this.Accountnumber_len2,
|
||||
this.Accountnumber_len3,
|
||||
this.Accountnumber_len4,
|
||||
this.Accountnumber_len1,
|
||||
this.Accountnumbre_len5,
|
||||
this.Accountnumbre_len6});
|
||||
this.Landscape = true;
|
||||
this.Margins = new System.Drawing.Printing.Margins(34, 47, 19, 24);
|
||||
this.Name = "xafReport1";
|
||||
this.PageHeight = 827;
|
||||
this.PageWidth = 1169;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
this.ScriptLanguage = DevExpress.XtraReports.ScriptLanguage.VisualBasic;
|
||||
this.ScriptsSource = resources.GetString("$this.ScriptsSource");
|
||||
this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
|
||||
this.Title,
|
||||
this.FieldCaption,
|
||||
this.PageInfo,
|
||||
this.DataField});
|
||||
this.Version = "11.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
}
|
||||
}
|
||||
}
|
||||
+1026
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user