📄 bos_billinfo.cls
字号:
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "BOS_BillInfo"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
'''''''''''''''''''''''''''''''''''''''''''''''
''物理复检单
''建立日期:2005-07-18
''建立人:闫建学
'''''''''''''''''''''''''''''''''''''''''''''''''
Option Explicit
'定义 BillEvent 接口. 必须具有的声明, 以此来获得事件
Private WithEvents m_BillInterface As BillEvent
Attribute m_BillInterface.VB_VarHelpID = -1
'定义 ListEvents 接口. 必须具有的声明, 以此来获得事件
Private WithEvents m_ListInterface As ListEvents
Attribute m_ListInterface.VB_VarHelpID = -1
'定义 BaseClassEvent 接口. 必须具有的声明, 以此来获得事件
Private WithEvents m_BaseListInterface As BaseClassEvent
Attribute m_BaseListInterface.VB_VarHelpID = -1
Public Sub Show(ByVal oBosInterface As Object)
'BillEvent 接口实现
'注意: 此方法必须存在, 请勿修改
Select Case VBA.TypeName(oBosInterface)
Case "BillEvent"
Set m_BillInterface = oBosInterface
Case "ListEvents"
Set m_ListInterface = oBosInterface
Case "BaseClassEvent"
Set m_BaseListInterface = oBosInterface
End Select
End Sub
Private Sub Class_Terminate()
'释放接口对象
'注意: 此方法必须存在, 请勿修改
Set m_BillInterface = Nothing
Set m_ListInterface = Nothing
Set m_BaseListInterface = Nothing
End Sub
Private Sub m_BaseListInterface_AfterGetData()
MsgBox "aaa-- " & m_BaseListInterface.GetSelectedItemID
End Sub
Private Sub m_BaseListInterface_ClassGroupSelected(ByVal Button As Long, ByVal ClassGroupType As Long, ByVal ClassGroupID As Long, ByVal ClassGroupFullNumber As String)
MsgBox m_BaseListInterface.GetSelectedItemID
End Sub
Private Sub m_BillInterface_BeforeSave(bCancel As Boolean)
Dim sFOutType As String
Dim sFOutDate As String
sFOutType = Trim(m_BillInterface.GetFieldValue("FOutType"))
sFOutDate = Trim(m_BillInterface.GetFieldValue("FOutDate"))
If sFOutType <> "" Then
If sFOutDate = "" Then
MsgBox "出票方式不为空,则必须填写出票日期!", vbCritical + vbOKOnly, "金蝶提示"
bCancel = True
End If
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -