36 lines
1.2 KiB
VB.net
36 lines
1.2 KiB
VB.net
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.Data.Filtering
|
|
Imports DevExpress.Xpo
|
|
Imports DevExpress.ExpressApp.SystemModule
|
|
Imports System.Linq
|
|
Imports System.IO
|
|
Imports DevExpress.ExpressApp.Editors
|
|
Public Module GLBaseCheck
|
|
Public Function CheckGLBaseInfo(_onew As Xpo.XPObjectSpace, _
|
|
_Application As DevExpress.ExpressApp.XafApplication, _
|
|
_DateFrom As Date, _
|
|
_DateTo As Date, _
|
|
_CustomersFrom As CustomersFrom, _
|
|
_e As DevExpress.ExpressApp.Actions.SimpleActionExecuteEventArgs) As Boolean
|
|
'// Az eljárás leellenőrzi, hogy van-e
|
|
'// - fel nem adott iktatás
|
|
'// - fel nem adott vevői számla
|
|
'// - szerkeszthető dokumentum GLAccounts,GLBank,GLCassa,GLCompensation,GLMoxed
|
|
Dim _GLBaseMainCheck As GLBaseMainCheck = Nothing
|
|
Dim _CheckGLBaseInfo As Boolean = False
|
|
|
|
|
|
|
|
|
|
Return _CheckGLBaseInfo
|
|
End Function
|
|
End Module
|