Mezőgazdaság termeltetés IsActive Számviteli készletnél szállítólevél DateExecution
40 lines
1.5 KiB
VB.net
40 lines
1.5 KiB
VB.net
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.ExpressApp.ConditionalAppearance
|
|
|
|
<DefaultClassOptions(), NonPersistent, CreatableItem(False), NavigationItem(False)>
|
|
<Appearance("Hide ReInvoice_Customers if IsReinvoice is false", AppearanceItemType.ViewItem, "IsReinvoice=False", TargetItems:="ReInvoice_Customers", Visibility:=Editors.ViewItemVisibility.Hide)>
|
|
Public Class RegistryTaskGoToNewtStepWithGLAccount
|
|
Inherits BaseObject
|
|
Public Sub New(ByVal session As Session)
|
|
MyBase.New(session)
|
|
End Sub
|
|
Public Overrides Sub AfterConstruction()
|
|
MyBase.AfterConstruction()
|
|
End Sub
|
|
|
|
<Browsable(False)>
|
|
Property CustomersFrom As CustomersFrom
|
|
|
|
Property Controlling As Controlling
|
|
<DataSourceCriteria("IsActive != False")> Property UniqueObjects As UniqueObjects
|
|
<DataSourceCriteria("IsActive != False")> Property JobNumberObjects As JobNumberObjects
|
|
<DataSourceCriteria("IsActive != False")> Property CostHolder As CostHolder
|
|
<DataSourceCriteria("IsActive != False")> Property CostPlace As CostPlace
|
|
<ImmediatePostData()>
|
|
Property IsReinvoice As Boolean = False
|
|
|
|
<VisibleInListView(False), VisibleInDetailView(False), VisibleInLookupListView(False)>
|
|
Property SelectedTasks As ArrayList
|
|
|
|
End Class
|
|
|