b
资源名称:ERPSYS.zip [点击查看]
上传用户:zhpu1995
上传日期:2013-09-06
资源大小:61151k
文件大小:124k
源码类别:
企业管理
开发平台:
Visual Basic
- '对存盘进行事务处理(Fixed)
- On Error GoTo Swcwcl
- Cw_DataEnvi.DataConnect.BeginTrans
- '判断单据状态以进行不同处理
- '1.先对单据主表进行处理
- If Trim(Lab_OperStatus) = "2" Then
- '新增单据
- '1.对于某些单据号自动生成的单据则可在此处自动生成
- '[<<为了和在不与采购接口的模式中的单据号保持一致
- LrText(14).Text = CreatBillCode(1505, True)
- '>>]
- LrText(14).Text = CreatBillCode(BillCode, True)
- '2.开始存盘
- '打开单据主表动态集
- If Rec_VouchMain.State = 1 Then Rec_VouchMain.Close
- Rec_VouchMain.Open "Select * From QC_stockCheckMain Where 1=2", Cw_DataEnvi.DataConnect, adOpenDynamic, adLockOptimistic
- With Rec_VouchMain
- .AddNew
- '[<<为了和在不与采购接口的模式中的单据号保持一致
- .Fields("stockcheckmainid") = CreatBillID(1505) '自动生成的单据ID
- '>>]
- .Fields("stockcheckmainid") = CreatBillID(BillCode) '自动生成的单据ID
- .Fields("StockCheckNum") = Trim(LrText(14).Text) '单据号
- .Fields("PurReciptMainID") = Trim(LrText(1).Tag) '收料统治单主表ID
- .Fields("mnumber") = Trim(LrText(1).Text) '物料编码
- .Fields("suppliercode") = Trim(LrText(5).Tag) '供应商
- .Fields("quantity") = Trim(LrText(6).Text) '数量
- .Fields("PurReciptDate") = Format(Trim(LrText(7).Text), "yyyy-mm-dd") '收料日期
- .Fields("AreaCode") = Trim(LrText(8).Tag) '物料产地
- .Fields("StoCheckDate") = Format(Trim(LrText(9).Text), "yyyy-mm-dd") '检验日期
- .Fields("GradeCode") = gradecode(Cbo_Result.ListIndex) '质量等级
- .Fields("Maker") = Trim(LrText(11).Text) '制单人
- .Fields("MakeDate") = Format(Trim(LrText(12).Text), "yyyy-mm-dd") '制单日期
- .Update
- '系统读出单据ID写入Lab_BillID
- Lab_BillId.Caption = .Fields("stockcheckmainid")
- End With
- Else
- '修改单据
- '1.删除原单据子表中所有内容
- Cw_DataEnvi.DataConnect.Execute ("Delete QC_StockCheckSub Where stockcheckmainid=" & Val(Lab_BillId.Caption))
- '打开单据主表动态集
- If Rec_VouchMain.State = 1 Then Rec_VouchMain.Close
- Rec_VouchMain.Open "Select * From QC_StockCheckMain Where stockcheckmainid=" & Val(Lab_BillId.Caption), Cw_DataEnvi.DataConnect, adOpenDynamic, adLockOptimistic
- With Rec_VouchMain
- .Fields("PurReciptMainID") = Trim(LrText(1).Tag) '收料统治单主表ID
- .Fields("suppliercode") = Trim(LrText(5).Tag) '供应商
- .Fields("AreaCode") = Trim(LrText(8).Tag) '物料产地
- .Fields("StoCheckDate") = Format(Trim(LrText(9).Text), "yyyy-mm-dd") '检验日期
- .Fields("GradeCode") = gradecode(Cbo_Result.ListIndex) '质量等级
- .Fields("Maker") = Trim(LrText(11).Text) '制单人
- .Fields("MakeDate") = Format(Trim(LrText(12).Text), "yyyy-mm-dd") '制单日期
- .Update
- End With
- End If
- '写入采购系统
- If Rec_VouchMain.State = 1 Then Rec_VouchMain.Close
- Rec_VouchMain.Open "Select * From cg_purreciptsub Where PurReciptMainID='" & LrText(1).Tag & "' AND MNumber='" & LrText(1).Text & "'", Cw_DataEnvi.DataConnect, adOpenDynamic, adLockOptimistic
- With Rec_VouchMain
- .Fields("gradecode") = gradecode(Cbo_Result.ListIndex) '质量等级
- .Update
- End With
- '2.对单据子表进行处理
- '打开单据子表动态集
- If Rec_VouchSub.State = 1 Then Rec_VouchSub.Close
- Rec_VouchSub.Open "Select * From QC_stockCheckSub Where 1=2", Cw_DataEnvi.DataConnect, adOpenDynamic, adLockOptimistic
- '将网格中有效数据行写入单据子表
- For Rowjsq = WglrGrid.FixedRows To WglrGrid.Rows - 1
- If WglrGrid.TextMatrix(Rowjsq, 0) <> "*" Then
- Exit For
- End If
- With Rec_VouchSub
- .AddNew
- .Fields("stockCheckSubId") = Rowjsq - WglrGrid.FixedRows + 1 '单据记录顺序号
- .Fields("stockCheckMainId") = Val(Lab_BillId.Caption) '单据ID
- .Fields("ItemCode") = Trim(WglrGrid.TextMatrix(Rowjsq, 1)) '检验项目
- .Fields("Stand") = Trim(WglrGrid.TextMatrix(Rowjsq, Sydz("002", GridStr(), Szzls))) '检验标准
- .Fields("result") = Trim(WglrGrid.TextMatrix(Rowjsq, Sydz("003", GridStr(), Szzls))) '结果
- .Fields("Remark") = Trim(WglrGrid.TextMatrix(Rowjsq, Sydz("005", GridStr(), Szzls))) '备注
- .Update
- End With
- Next Rowjsq
- Cw_DataEnvi.DataConnect.CommitTrans
- Sub_SaveBill = True
- Tsxx = "单据存盘完毕! 单据号:" & Trim(LrText(14).Text)
- Call Xtxxts(Tsxx, 0, 4)
- '标识单据发生改动
- Bln_BillChange = True
- '设置单据改变后的状态
- Lab_OperStatus = "1"
- Call Sub_OperStatus("10")
- Rec_Query.Requery
- Rec_Query.Find "stockcheckmainid=" & Val(Lab_BillId.Caption)
- Exit Function
- Swcwcl: '数据存盘时出现错误
- Cw_DataEnvi.DataConnect.RollbackTrans
- With WglrGrid
- Tsxx = "存盘过程中出现未知错误,程序自动恢复保存前状态!"
- Call Xtxxts(Tsxx, 0, 1)
- Exit Function
- End With
- Lrcwcl: '录入错误处理(存盘前逐行有效性判断)
- With WglrGrid
- Call Xtxxts("(第 " & Trim(Str(Rowjsq - .FixedRows + 1)) & " 条单据分录)-" & Tsxx, 0, 1)
- Changelock = True
- .Select Rowjsq, Lrywlz
- WglrGrid.SetFocus
- Changelock = False
- Exit Function
- End With
- End Function
- '选择首张,上张,下张,末张(此4个过程只需用您的单据ID字段名替换"stockcheckmainid"即可)
- Private Sub Sub_First() '首 张
- With Rec_Query
- If .RecordCount = 0 Then
- Exit Sub
- End If
- .MoveFirst
- Lab_BillId.Caption = .Fields("stockcheckmainid")
- Call Sub_ShowBill
- End With
- End Sub
- Private Sub Sub_Prev() '上 张
- With Rec_Query
- If .RecordCount = 0 Then
- Exit Sub
- End If
- If Not .BOF Then
- .MovePrevious
- End If
- If Not .BOF Then
- Lab_BillId.Caption = .Fields("stockcheckmainid")
- Else
- .MoveNext
- End If
- Call Sub_ShowBill
- End With
- End Sub
- Private Sub Sub_Next() '下 张
- With Rec_Query
- If .RecordCount = 0 Then
- Exit Sub
- End If
- If Not .EOF Then
- .MoveNext
- End If
- If Not .EOF Then
- Lab_BillId.Caption = .Fields("stockcheckmainid")
- Else
- .MovePrevious
- End If
- Call Sub_ShowBill
- End With
- End Sub
- Private Sub Sub_Last() '末 张
- With Rec_Query
- If .RecordCount = 0 Then
- Exit Sub
- End If
- .MoveLast
- Lab_BillId.Caption = .Fields("stockcheckmainid")
- Call Sub_ShowBill
- End With
- End Sub
- '[>>===================以下为根据实际业务需要自定义过程区域=============================<<]
- '审核,弃审
- Private Sub Sub_CheckBill() '审 核
- '[>>
- '此处可以写入禁止单据审核的理由
- '<<]
- '判断用户是否有此功能执行权限,如有则写上机日志(进入)
- If Not Security_Log(Str_RightCheck, Xtczybm, 1, True) Then
- Exit Sub
- End If
- '将单据写入审核标识
- Cw_DataEnvi.DataConnect.Execute ("Update QC_StockCheckMain Set Checker='" & Xtczy & "' Where stockcheckmainid=" & Val(Lab_BillId.Caption))
- '写入系统操作员
- LrText(13).Text = Xtczy
- '设置审核弃审按钮状态
- Call Sub_CheckStatus
- '标识单据发生变化
- Bln_BillChange = True
- End Sub
- Private Sub Sub_AbandonCheck() '弃 审
- '[>>
- '此处可以写入禁止单据弃审的理由
- '<<]
- '判断用户是否有此功能执行权限,如有则写上机日志(进入)
- If Not Security_Log(Str_RightCheck, Xtczybm, 1, True) Then
- Exit Sub
- End If
- '将单据清除审核标识
- Cw_DataEnvi.DataConnect.Execute ("Update QC_StockCheckMain Set Checker='' Where stockcheckmainid=" & Val(Lab_BillId.Caption))
- '清空单据审核人
- LrText(13).Text = ""
- '设置审核弃审按钮状态
- Call Sub_CheckStatus
- '标识单据发生变化
- Bln_BillChange = True
- End Sub
- Private Function Fun_AllowEdit() As Boolean '判断当前单据是否允许编辑或删除
- Dim RecTemp As New ADODB.Recordset '临时使用动态集
- Fun_AllowEdit = False
- Sqlstr = "Select Checker From QC_StockCheckMain Where stockcheckmainid=" & Val(Lab_BillId.Caption)
- Set RecTemp = Cw_DataEnvi.DataConnect.Execute(Sqlstr)
- With RecTemp
- If Not .EOF Then
- If Trim(.Fields("Checker") & "") <> "" Then
- Tsxx = "该单据已审核确认,不能修改或删除!"
- Call Xtxxts(Tsxx, 0, 4)
- Exit Function
- End If
- End If
- End With
- Fun_AllowEdit = True
- End Function
- Private Sub Cbo_Result_DropDown()
- If Trim(Lab_OperStatus.Caption) <> "3" Then Exit Sub '非修改状态不执行此过程
- str_TempSql = "SELECT GradeCode, GradeName From dbo.Qc_V_StockStandMain WHERE (MNumber = '" & Trim(LrText(1)) & "') ORDER BY GradeCode"
- If rs_Temp.State = 1 Then rs_Temp.Close
- Set rs_Temp = Cw_DataEnvi.DataConnect.Execute(str_TempSql)
- If Not rs_Temp.EOF Then '有此物料的等级标准
- Cbo_Result.Clear
- ReDim gradecode(rs_Temp.RecordCount)
- Do While Not rs_Temp.EOF '填充检验结果中质量等级
- Cbo_Result.AddItem rs_Temp.Fields("gradename")
- gradecode(Cbo_Result.NewIndex) = rs_Temp.Fields("gradecode")
- rs_Temp.MoveNext
- Loop
- Cbo_Result.ListIndex = 0
- End If
- End Sub
- Private Sub cbo_result_Click()
- If LrText(1) = "" Then Exit Sub
- For Jsqte = WglrGrid.FixedRows To WglrGrid.Rows - 1
- WglrGrid.TextMatrix(Jsqte, Sydz("002", GridStr(), Szzls)) = ""
- Next Jsqte
- Sqlstr = "select * from Qc_V_StockStandSub where mnumber='" & Trim(LrText(1) & "") & "' and gradecode='" & Trim(gradecode(Cbo_Result.ListIndex)) & "' order by itemcode"
- Set rec_wh = Cw_DataEnvi.DataConnect.Execute(Sqlstr)
- If rec_wh.RecordCount > 0 Then '此物料有检验标准,填充网格检验项目
- With rec_wh
- Do While Not .EOF
- Jsqte = WglrGrid.FindRow(Trim(.Fields("itemcode")), , 1)
- If Jsqte <> -1 Then WglrGrid.TextMatrix(Jsqte, Sydz("002", GridStr(), Szzls)) = Trim(.Fields("stand") & "")
- .MoveNext
- Loop
- End With
- End If
- End Sub
- '[>>===================以上为根据实际业务需要自定义过程区域=============================<<]
- '===================以 下 程 序 为 通 用 部 分 ,一 般 不 需 更 改(程序动作部分)======================='
- Private Sub Sub_AdjustGrid()
- '调 整 网 格
- With WglrGrid
- '加 1 保持一行录入行
- If .Rows < Pmbcsjhs + .FixedRows + Fzxwghs + 1 Then
- .Rows = Pmbcsjhs + .FixedRows + Fzxwghs + 1
- For Jsqte = .FixedRows To .Rows - 1
- .RowHeight(Jsqte) = Sjhgd
- Next Jsqte
- End If
- '判断是否有辅助行和录入行,如没有则加行
- Do While .TextMatrix(.Rows - 1 - Fzxwghs, 0) = "*"
- .AddItem ""
- .RowHeight(.Rows - 1) = Sjhgd
- Loop
- End With
- End Sub
- Private Sub Lrzdbz() '录入字段帮助
- If Not Ydcommand.Visible Then
- Exit Sub
- End If
- With WglrGrid
- Valilock = True
- '处理通用部分
- Changelock = True '调入另外窗体必须加锁
- Call Drbmhelp(GridInt(.Col, 6), GridStr(.Col, 3), Trim(Ydtext.Text))
- Changelock = False
- If Len(Xtfhcs) <> 0 Then
- If GridInt(.Col, 7) = 0 Then
- Ydtext.Text = Xtfhcs
- Else
- Ydtext.Text = Xtfhcsfz
- End If
- End If
- Valilock = False
- If Ydtext.Visible Then
- Ydtext.SetFocus
- End If
- End With
- End Sub
- Private Sub Cshhjwg() '初始化合计网格(*对合计网格来说,录入网格为容器)
- With HjGrid
- '是否显示合计网格
- If Not Sfxshjwg Then
- .Visible = False
- Exit Sub
- Else
- .Visible = True
- End If
- '设置网格相关属性
- .Enabled = False
- .Appearance = flexFlat
- .BorderStyle = flexBorderNone
- .ScrollBars = flexScrollBarNone
- .Width = WglrGrid.Width
- .FixedRows = 0
- .Rows = 1
- .Cols = WglrGrid.Cols
- .LeftCol = WglrGrid.LeftCol
- .TextMatrix(0, Qslz) = "合 计"
- For Jsqte = 0 To WglrGrid.Cols - 1
- .ColHidden(Jsqte) = WglrGrid.ColHidden(Jsqte)
- .ColWidth(Jsqte) = WglrGrid.ColWidth(Jsqte)
- .ColAlignment(Jsqte) = WglrGrid.ColAlignment(Jsqte)
- .ColFormat(Jsqte) = WglrGrid.ColFormat(Jsqte)
- Next Jsqte
- .ColAlignment(Qslz) = flexAlignCenterTop
- For Jsqte = .FixedRows To .Rows - 1
- .RowHeight(Jsqte) = .Height / .Rows
- Next Jsqte
- '程序自动调整网格高度(自动设置为网格剩余高度+辅助项网格行数(默认为1)*数据行高度)、并设置其位置信息
- .Height = Fzxwghs * Sjhgd + ((WglrGrid.Height - WglrGrid.FixedRows * WglrGrid.RowHeight(0)) Mod Sjhgd)
- .RowHeight(0) = .Height
- .Move 0, WglrGrid.Height - .Height, WglrGrid.Width, .Height
- End With
- End Sub
- Private Sub Form_Resize() '窗体大小发生变化时,重新显示文本框
- Call Cxxswbk
- End Sub
- Private Function Fun_Drfrmyxxpd() As Boolean '调入其它窗体或功能产生的有效性判断(包括数据回写)
- Fun_Drfrmyxxpd = True
- With WglrGrid
- '如果当前网格处于编辑状态,则先进行数据回写再进行有效性判断
- If Ydtext.Visible Or YdCombo.Visible Then
- Call Lrsjhx
- If Not sjzdyxxpd(Dqlrwgh, Dqlrwgl) Then
- Fun_Drfrmyxxpd = False
- Exit Function
- End If
- End If
- '进行行有效性判断
- If Not Sjhzyxxpd(.Row) Then
- Fun_Drfrmyxxpd = False
- Exit Function
- End If
- End With
- End Function
- Private Sub WglrGrid_AfterUserResize(ByVal Row As Long, ByVal Col As Long) '调整列宽
- If HjGrid.Visible Then
- With HjGrid
- .ColWidth(Col) = WglrGrid.ColWidth(Col)
- End With
- End If
- End Sub
- Private Sub WglrGrid_EnterCell() '显示当前数据行相关信息
- With WglrGrid
- If .Row >= .FixedRows Then
- '[>>
- '此处可以填写显示与此网格行相关信息
- '<<]
- End If
- End With
- End Sub
- Private Sub WglrGrid_GotFocus() '网格得到焦点
- '网格得到焦点,如果当前选择行为非数据行
- '则调整当前焦点至有效数据行
- With WglrGrid
- If .Row < .FixedRows And .Rows > .FixedRows Then
- Changelock = True
- .Select .FixedRows, .Col
- Changelock = False
- End If
- If .Col < Qslz Then
- Changelock = True
- .Select .Row, Qslz
- Changelock = False
- End If
- End With
- End Sub
- Private Sub WglrGrid_LostFocus() '录入网格失去焦点
- '用以屏蔽调用其它窗体时发生网格失去焦点事件
- If Changelock Then
- Exit Sub
- End If
- '引发网格RowcolChange事件
- With WglrGrid
- If Not (Ydtext.Visible Or YdCombo.Visible) Then
- .Select 0, 0
- End If
- End With
- End Sub
- Private Sub WglrGrid_AfterScroll(ByVal OldTopRow As Long, ByVal OldLeftCol As Long, ByVal NewTopRow As Long, ByVal NewLeftCol As Long) '限制用户在录入过程中滚动鼠标
- If Gdtlock Then
- Exit Sub
- End If
- If WglrGrid.TextMatrix(WglrGrid.Row, 0) = "*" Then Exit Sub
- With WglrGrid
- If Ydtext.Visible Or YdCombo.Visible Then
- Gdtlock = True
- .TopRow = Dqtoprow
- .LeftCol = Dqleftcol
- Gdtlock = False
- Exit Sub
- End If
- HjGrid.LeftCol = .LeftCol
- End With
- End Sub
- Private Sub WglrGrid_LeaveCell() '离开单元格
- If Changelock Then
- Exit Sub
- End If
- If WglrGrid.TextMatrix(WglrGrid.Row, 0) <> "*" Then Exit Sub
- '记录刚刚离开网格单元的行列值
- Dqlkwgh = WglrGrid.Row
- Dqlkwgl = WglrGrid.Col
- '判断是否需要录入数据回写
- If Not (Ydtext.Visible Or YdCombo.Visible) Then
- Exit Sub
- End If
- Call Lrsjhx
- End Sub
- Private Sub WglrGrid_RowColChange() '网格录入行列发生变化时,进行有效性判断
- Valilock = True '屏蔽文本框失去焦点进行有效性判断
- With WglrGrid
- If .TextMatrix(.Row, 0) = "*" Then Exit Sub
- If Changelock Then
- Exit Sub
- End If
- If Not sjzdyxxpd(Dqlrwgh, Dqlrwgl) Then
- Exit Sub
- End If
- If .Row <> Dqlkwgh Then
- If Not Sjhzyxxpd(Dqlkwgh) Then
- Exit Sub
- End If
- End If
- End With
- Call fhyxh
- Call Xldql
- End Sub
- Private Sub WglrGrid_DblClick() '鼠标双击网格显示文本框
- With WglrGrid
- If .TextMatrix(.Row, 0) = "*" Then Call xswbk
- End With
- End Sub
- Private Sub Ycwbk() '隐藏文本框,帮助按钮,列表组合框
- Valilock = True
- Ydtext.Visible = False
- YdCombo.Visible = False
- Ydcommand.Visible = False
- End Sub
- Private Sub YdCombo_KeyDown(KeyCode As Integer, Shift As Integer) '列表框移动
- With WglrGrid
- Select Case KeyCode
- Case vbKeyEscape 'ESC 键放弃录入
- Valilock = True
- .SetFocus
- Call Ycwbk
- Valilock = False
- Case vbKeyReturn '回 车 键 =13
- KeyCode = 0
- .SetFocus
- Call Lrsjhx
- Rowjsq = .Row
- Coljsq = .Col + 1
- If Coljsq > .Cols - 1 Then
- If Rowjsq < .Rows - 1 Then
- Rowjsq = Rowjsq + 1
- End If
- Coljsq = Qslz
- End If
- Do While Rowjsq <= .Rows - 1
- If .ColHidden(Coljsq) Or (Not GridBoolean(Coljsq, 1)) Then
- Coljsq = Coljsq + 1
- If Coljsq > .Cols - 1 Then
- Rowjsq = Rowjsq + 1
- Coljsq = Qslz
- End If
- Else
- Exit Do
- End If
- Loop
- .Select Rowjsq, Coljsq
- Case vbKeyLeft '左 箭 头 =37
- If .Col - 1 = Qslz Then
- If .ColHidden(Qslz) Or (Not GridBoolean(Qslz, 1)) Then
- GoTo jzzx
- End If
- End If
- If .Col > Qslz Then
- KeyCode = 0
- .SetFocus
- Call Lrsjhx
- Coljsq = .Col - 1
- Do While Coljsq > Qslz
- If Coljsq - 1 = Qslz Then
- If .ColHidden(Qslz) Or (Not GridBoolean(Qslz, 1)) Then
- GoTo jzzx
- End If
- End If
- If .ColHidden(Coljsq) Or (Not GridBoolean(Coljsq, 1)) Then
- Coljsq = Coljsq - 1
- Else
- Exit Do
- End If
- Loop
- .Select .Row, Coljsq
- End If
- Case vbKeyRight '右 箭 头 =39
- KeyCode = 0
- .SetFocus
- Call Lrsjhx
- Rowjsq = .Row
- Coljsq = .Col + 1
- If Coljsq > .Cols - 1 Then
- If Rowjsq < .Rows - 1 Then
- Rowjsq = Rowjsq + 1
- End If
- Coljsq = Qslz
- End If
- Do While Rowjsq <= .Rows - 1
- If .ColHidden(Coljsq) Or (Not GridBoolean(Coljsq, 1)) Then
- Coljsq = Coljsq + 1
- If Coljsq > .Cols - 1 Then
- Rowjsq = Rowjsq + 1
- Coljsq = Qslz
- End If
- Else
- Exit Do
- End If
- Loop
- .Select Rowjsq, Coljsq
- Case Else
- End Select
- jzzx:
- End With
- End Sub
- Private Sub YdCombo_LostFocus()
- With WglrGrid '因为选中网格会先发生Rowcolchange事件置Valiock
- If Not Valilock Then '为TRUE
- Call Lrsjhx
- If Not Sjhzyxxpd(Dqlrwgh) Then
- Exit Sub
- End If
- End If
- End With
- End Sub
- Private Sub Ydcommand_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
- Call Lrzdbz
- End Sub
- Private Sub ydtext_KeyDown(KeyCode As Integer, Shift As Integer)
- Dim Rowjsq As Long, Coljsq As Long
- With WglrGrid
- Select Case KeyCode
- Case vbKeyF2
- Call Lrzdbz
- Case vbKeyEscape 'ESC 键放弃录入
- Valilock = True
- Call Ycwbk
- .SetFocus
- Case vbKeyReturn '回 车 键 =13
- KeyCode = 0
- .SetFocus
- Call Lrsjhx
- Rowjsq = .Row
- Coljsq = .Col + 1
- If Coljsq > .Cols - 1 Then
- If Rowjsq < .Rows - 1 Then
- Rowjsq = Rowjsq + 1
- End If
- Coljsq = Qslz
- End If
- Do While Rowjsq <= .Rows - 1
- If .ColHidden(Coljsq) Or (Not GridBoolean(Coljsq, 1)) Then
- Coljsq = Coljsq + 1
- If Coljsq > .Cols - 1 Then
- Rowjsq = Rowjsq + 1
- Coljsq = Qslz
- End If
- Else
- Exit Do
- End If
- Loop
- If Rowjsq <= .Rows - 1 Then
- .Select Rowjsq, Coljsq
- End If
- Case vbKeyUp '上 箭 头 =38
- KeyCode = 0
- .SetFocus
- Call Lrsjhx
- If .Row > .FixedRows Then
- .Row = .Row - 1
- End If
- Case vbKeyDown '下 箭 头 =40
- KeyCode = 0
- .SetFocus
- Call Lrsjhx
- If .Row < .Rows - 1 Then
- .Row = .Row + 1
- End If
- Case vbKeyLeft '左 箭 头 =37
- If .Col - 1 = Qslz Then
- If .ColHidden(Qslz) Or (Not GridBoolean(Qslz, 1)) Then
- GoTo jzzx
- End If
- End If
- If Ydtext.SelStart = 0 And .Col > Qslz Then
- KeyCode = 0
- .SetFocus
- Call Lrsjhx
- Coljsq = .Col - 1
- Do While Coljsq > Qslz
- If Coljsq - 1 = Qslz Then
- If .ColHidden(Qslz) Or (Not GridBoolean(Qslz, 1)) Then
- GoTo jzzx
- End If
- End If
- If .ColHidden(Coljsq) Or (Not GridBoolean(Coljsq, 1)) Then
- Coljsq = Coljsq - 1
- Else
- Exit Do
- End If
- Loop
- .Select .Row, Coljsq
- End If
- jzzx:
- Case vbKeyRight '右 箭 头 =39
- wblong = Len(Ydtext.Text)
- If (Ydtext.SelStart = wblong Or Ydtext.SelLength = wblong) Then
- KeyCode = 0
- .SetFocus
- Call Lrsjhx
- Rowjsq = .Row
- Coljsq = .Col + 1
- If Coljsq > .Cols - 1 Then
- If Rowjsq < .Rows - 1 Then
- Rowjsq = Rowjsq + 1
- End If
- Coljsq = Qslz
- End If
- Do While Rowjsq <= .Rows - 1
- If .ColHidden(Coljsq) Or (Not GridBoolean(Coljsq, 1)) Then
- Coljsq = Coljsq + 1
- If Coljsq > .Cols - 1 Then
- Rowjsq = Rowjsq + 1
- Coljsq = Qslz
- End If
- Else
- Exit Do
- End If
- Loop
- .Select Rowjsq, Coljsq
- End If
- Case Else
- End Select
- End With
- End Sub
- Private Sub ydtext_KeyPress(KeyAscii As Integer) '录入字符事中控制
- Call InputFieldLimit(Ydtext, GridInt(WglrGrid.Col, 1), KeyAscii)
- If KeyAscii <> 0 Then
- Call Xyxhbz(Dqlrwgh)
- End If
- End Sub
- Private Sub ydtext_Change() '录入事中变化处理
- '防止程序改变但不进行处理
- If Wbkbhlock Then
- Exit Sub
- End If
- With WglrGrid
- '限制字段录入长度
- Wbkbhlock = True
- Call TextChangeLimit(Ydtext, GridInt(.Col, 1)) '去掉无效字符
- Select Case GridInt(.Col, 1)
- Case 8, 11 '金额型
- Call Sjgskz(Ydtext, Xtjezws - Xtjexsws - 1, Xtjexsws)
- Case 9, 12 '数量型
- Call Sjgskz(Ydtext, Xtslzws - Xtslxsws - 1, Xtslxsws)
- Case 10 '单价型
- Call Sjgskz(Ydtext, Xtdjzws - Xtdjxsws - 1, Xtdjxsws)
- Case Else '其他类型
- If GridInt(.Col, 3) <> 0 Or GridInt(.Col, 4) <> 0 Then
- Call Sjgskz(Ydtext, GridInt(.Col, 3), GridInt(.Col, 4))
- End If
- End Select
- Wbkbhlock = False
- End With
- End Sub
- Private Sub ydtext_LostFocus() '如果由于选中网格之外的控件而发生有效性判断(选中网格会先发生Rowcolchange事件置Valiock为TRUE)
- With WglrGrid
- If Not Valilock Then
- Call Lrsjhx
- If Not sjzdyxxpd(Dqlrwgh, Dqlrwgl) Then
- Exit Sub
- End If
- If Not Sjhzyxxpd(Dqlrwgh) Then
- Exit Sub
- End If
- End If
- End With
- End Sub
- Private Sub xswbk() '在当前选中单元显示文本框,列表框,帮助按钮(通用)
- Dim Wbkpy As Integer, Wbkpy1 As Integer '文本框偏移量
- '当某种条件成立时禁止文本框激活使单据处于录入状态
- If Not Fun_AllowInput Then
- Exit Sub
- End If
- '显示文本框前返回有效行列(解决滚动条问题)
- Call Xldqh
- Call Xldql
- '隐藏文本框,帮助按钮,列表组合框
- Call Ycwbk
- With WglrGrid
- Dqlrwgh = .Row
- Dqlrwgl = .Col
- If Not GridBoolean(.Col, 1) Or .Row < .FixedRows Then
- Exit Sub
- End If
- Wbkpy = 30
- Wbkpy1 = 15
- On Error Resume Next
- If GridBoolean(.Col, 3) Then
- YdCombo.Left = .CellLeft + .Left + Wbkpy
- YdCombo.Top = .CellTop + .Top + Wbkpy
- YdCombo.Width = .CellWidth - Wbkpy1
- Call Wbkcl
- YdCombo.Visible = True
- YdCombo.SetFocus
- Ydcommand.Visible = False
- Ydtext.Visible = False
- Else
- If GridBoolean(.Col, 2) Then
- Ydcommand.Left = .Left + .CellLeft + .CellWidth - Ydcommand.Width + Wbkpy
- Ydcommand.Top = .Top + .CellTop + .CellHeight - Ydcommand.Height + Wbkpy
- Ydcommand.Visible = True
- Else
- Ydcommand.Visible = False
- End If
- Ydtext.Left = .CellLeft + .Left + Wbkpy
- Ydtext.Top = .CellTop + .Top + Wbkpy
- If Ydcommand.Visible Then
- If Sfblbzkd Then
- Ydtext.Width = .CellWidth - Ydcommand.Width
- Else
- Ydtext.Width = .CellWidth - Wbkpy1
- End If
- Else
- Ydtext.Width = .CellWidth - Wbkpy1
- End If
- Ydtext.Height = .CellHeight - Wbkpy1
- If GridInt(.Col, 2) <> 0 Then
- Ydtext.MaxLength = GridInt(.Col, 2)
- Else
- Ydtext.MaxLength = 3000
- End If
- Call Wbkcl
- Ydtext.Visible = True
- Ydtext.SetFocus
- End If
- Dqtoprow = .TopRow
- Dqleftcol = .LeftCol
- '重置锁值
- Valilock = False
- Wbkbhlock = False
- End With
- End Sub
- Private Function Fun_AllowInput() As Boolean '当某种条件成立时禁止文本框激活使单据处于录入状态
- '如果单据操作状态为浏览状态则不能显示录入载体(通用)
- If Trim(Lab_OperStatus.Caption) = "1" Then
- Exit Function
- End If
- '[>>
- '此处可以填写禁止文本框激活使单据处于录入状态的理由
- '<<]
- Fun_AllowInput = True
- End Function
- Private Sub Cxxswbk() 'Formresize中重新显示文本框,列表框,帮助按钮(通用)
- Dim Wbkpy As Integer, Wbkpy1 As Integer
- Wbkpy = 30
- Wbkpy1 = 15
- With WglrGrid
- If YdCombo.Visible Then
- YdCombo.Left = .CellLeft + .Left + Wbkpy
- YdCombo.Top = .CellTop + .Top + Wbkpy
- YdCombo.Width = .CellWidth - Wbkpy1
- End If
- If Ydcommand.Visible Then
- Ydcommand.Left = .Left + .CellLeft + .CellWidth - Ydcommand.Width + Wbkpy
- Ydcommand.Top = .Top + .CellTop + .CellHeight - Ydcommand.Height + Wbkpy
- End If
- If Ydtext.Visible Then
- If Ydcommand.Visible Then
- If Sfblbzkd Then
- Ydtext.Width = .CellWidth - Ydcommand.Width
- Else
- Ydtext.Width = .CellWidth - Wbkpy1
- End If
- Else
- Ydtext.Width = .CellWidth - Wbkpy1
- End If
- Ydtext.Left = .CellLeft + .Left + Wbkpy
- Ydtext.Top = .CellTop + .Top + Wbkpy
- Ydtext.Height = .CellHeight - Wbkpy1
- End If
- End With
- End Sub
- Private Sub Lrsjhx() '文本框录入数据回写
- With WglrGrid
- If YdCombo.Visible Then
- .Text = Trim(YdCombo.Text)
- End If
- If Ydtext.Visible Then
- .Text = Trim(Ydtext.Text)
- End If
- '(如果字段录入内容发生变化,则打开有效性判断锁)
- If Zdlrqnr <> Trim(.Text) Then
- Yxxpdlock = False
- Hyxxpdlock = False
- End If
- '如果字段录入内容不为空则写数据行有效性标志
- If Len(Trim(.Text)) <> 0 Then
- Call Xyxhbz(.Row)
- End If
- '隐藏文本框,帮助按钮,列表组合框
- Call Ycwbk
- End With
- End Sub
- Private Sub WglrGrid_KeyDown(KeyCode As Integer, Shift As Integer) '网格录入增行,删行快捷键
- '如果单据操作状态为浏览状态则不能显示录入载体
- If Trim(Lab_OperStatus.Caption) = "1" Then
- Exit Sub
- End If
- If WglrGrid.TextMatrix(WglrGrid.Row, 0) <> "*" Then Exit Sub
- Select Case KeyCode
- Case vbKeyF2 '按F2键参照
- Call xswbk
- Call Lrzdbz
- End Select
- End Sub
- Private Sub WglrGrid_KeyPress(KeyAscii As Integer) '网格接受键盘录入
- '当某种条件成立时禁止文本框激活使单据处于录入状态
- If Not Fun_AllowInput Then
- Exit Sub
- End If
- If WglrGrid.TextMatrix(WglrGrid.Row, 0) <> "*" Then Exit Sub
- With WglrGrid
- '屏 蔽 回 车 键
- If KeyAscii = vbKeyReturn Then
- KeyAscii = 0
- Rowjsq = .Row
- Coljsq = .Col + 1
- If Coljsq > .Cols - 1 Then
- If Rowjsq < .Rows - 1 Then
- Rowjsq = Rowjsq + 1
- End If
- Coljsq = Qslz
- End If
- Do While Rowjsq <= .Rows - 1
- If .ColHidden(Coljsq) Or (Not GridBoolean(Coljsq, 1)) Then
- Coljsq = Coljsq + 1
- If Coljsq > .Cols - 1 Then
- Rowjsq = Rowjsq + 1
- Coljsq = Qslz
- End If
- Else
- Exit Do
- End If
- Loop
- If Rowjsq <= .Rows - 1 Then
- .Select Rowjsq, Coljsq
- End If
- Exit Sub
- End If
- '接受用户录入
- Select Case KeyAscii
- Case 0 To 32 '用户输入KeyAscii为0-32的键 如空格
- '显示录入载体
- Call xswbk
- Case Else
- '防止非编辑字段SendKeys()出现死循环
- If Not GridBoolean(.Col, 1) Or .Row < .FixedRows Then
- Exit Sub
- End If
- '如果此字段为列表框录入则调入相应列表框
- If GridBoolean(.Col, 3) Then
- '列表框录入
- Call xswbk
- Else
- Ydtext.Text = ""
- '录入限制
- Call InputFieldLimit(Ydtext, GridInt(WglrGrid.Col, 1), KeyAscii)
- If KeyAscii = 0 Then
- Exit Sub
- End If
- '如果录入字符有效则写有效行数据标志
- Call Xyxhbz(.Row)
- Call xswbk
- Ydtext.Text = ""
- Valilock = True
- SendKeys Chr(KeyAscii), True
- DoEvents
- Valilock = False
- End If
- End Select
- End With
- End Sub
- Private Sub zjlrfl() '增加录入分录
- With WglrGrid
- If Not (Ydtext.Visible Or YdCombo.Visible) Then
- If Not Fun_Drfrmyxxpd Then
- Exit Sub
- End If
- Else
- Exit Sub
- End If
- If .Row < .FixedRows Then
- Exit Sub
- End If
- .AddItem "", .Row
- .RowHeight(.Row) = Sjhgd
- If .Row <> .Rows - 1 Then
- If .TextMatrix(.Row + 1, 0) = "*" Then
- .TextMatrix(.Row, 0) = "*"
- Else
- .RemoveItem .Rows - 1
- End If
- End If
- Call Xldqh
- Call Xldql
- Hyxxpdlock = False
- End With
- End Sub
- Private Sub Scdqfl() '删除当前分录
- Dim Answer As Integer, Scqwghz As Long, Scqwglz As Long, Hjlzte As Long, Sflrzt As Boolean
- With WglrGrid
- Scqwghz = .Row
- Scqwglz = .Col
- If .TextMatrix(.Row, 0) = "*" Then
- '判断是否为录入状态
- If Ydtext.Visible Or YdCombo.Visible Then
- Sflrzt = True
- Validate = True
- Call Lrsjhx
- Validate = False
- End If
- Call Xldqh
- Changelock = True
- .Select .Row, 0
- Changelock = False
- If Shsfts Then
- .Cell(flexcpBackColor, .Row, Qslz, .Row, .Cols - 1) = QBColor(12)
- Tsxx = "请确认是否删除当前记录?"
- yhAnswer = Xtxxts(Tsxx, 2, 2)
- If yhAnswer = 2 Then
- .Cell(flexcpBackColor, .Row, Qslz, .Row, .Cols - 1) = &H80000005
- Changelock = True
- .Select Scqwghz, Scqwglz
- Changelock = False
- '如为录入状态,则恢复录入
- If Sflrzt Then
- Call xswbk
- End If
- Exit Sub
- End If
- End If
- .RemoveItem .Row
- If .Rows < Pmbcsjhs + .FixedRows + Fzxwghs + 1 Then
- .AddItem ""
- .RowHeight(.Rows - 1) = Sjhgd
- End If
- Changelock = True
- .Select .Row, Scqwglz
- Changelock = False
- End If
- End With
- End Sub
- Private Sub Sjhj(Hjwgl As Long) '网格列数据合计
- Dim Hjjg As Double
- If Not GridBoolean(Hjwgl, 4) Then
- Exit Sub
- End If
- With WglrGrid
- Hjjg = 0
- For Jsqte = .FixedRows To .Rows - 1
- If .TextMatrix(Jsqte, 0) = "*" Then
- Hjjg = Hjjg + Val(.TextMatrix(Jsqte, Hjwgl))
- End If
- Next Jsqte
- If GridBoolean(Hjwgl, 5) And Hjjg = 0 Then
- HjGrid.TextMatrix(0, Hjwgl) = ""
- Else
- HjGrid.TextMatrix(0, Hjwgl) = Hjjg
- End If
- End With
- End Sub
- Private Sub Qkwlzd(sjh As Long, Sjl As Long) '清空为零字段
- If Not GridBoolean(Sjl, 5) Then
- Exit Sub
- End If
- With WglrGrid
- If Val(Trim(.TextMatrix(sjh, Sjl))) = 0 Then
- .TextMatrix(sjh, Sjl) = ""
- End If
- End With
- End Sub
- Private Sub fhyxh() '返回录入数据有效行,同时让得到焦点网格可见
- With WglrGrid
- If .Row >= .FixedRows Then
- If .TextMatrix(.Row, 0) <> "*" Then
- For Rowjsq = .FixedRows To .Rows - 1
- If .TextMatrix(Rowjsq, 0) <> "*" Then
- Exit For
- End If
- Next Rowjsq
- If Rowjsq <= .Rows - 1 Then
- Changelock = True
- .Select Rowjsq, .Col
- Changelock = False
- Else
- Changelock = True
- .Select .Rows - 1, .Col
- Changelock = False
- End If
- End If
- Call Xldqh
- End If
- End With
- End Sub
- Private Sub Xldqh() '显露当前行
- Dim Toprowte As Long
- With WglrGrid
- Toprowte = 0
- Do While .CellTop + .RowHeight(.Row) + Fzxwghs * Sjhgd > .Height And .TopRow <> Toprowte
- Toprowte = .TopRow
- .TopRow = .TopRow + 1
- Loop
- Toprowte = 0
- Do While .CellTop < .FixedRows * .RowHeight(0) And .TopRow <> Toprowte
- Toprowte = .TopRow
- If .TopRow > 1 Then
- .TopRow = .TopRow - 1
- End If
- Loop
- End With
- End Sub
- Private Sub Xldql() '显露当前列
- Dim Leftcolte As Long
- With WglrGrid
- If .Col >= Qslz And .Col >= .FixedCols Then
- If .LeftCol > .Col Then
- .LeftCol = .Col
- End If
- Leftcolte = 0
- Do While .CellLeft + .CellWidth > .Width And .LeftCol <> Leftcolte
- Leftcolte = .LeftCol
- .LeftCol = .LeftCol + 1
- Loop
- End If
- End With
- End Sub
- Private Function pdhwk(sjh As Long) '判断网格行是否为空行(所有录入字段均为空*非录入字段除外)
- With WglrGrid
- For Coljsq = Qslz To .Cols - 1
- If Len(Trim(.TextMatrix(sjh, Coljsq))) <> 0 And GridBoolean(Coljsq, 1) Then
- pdhwk = False
- Exit Function
- End If
- Next Coljsq
- pdhwk = True
- End With
- End Function
- Private Sub Xyxhbz(sjh As Long) '写行有效性标志,并判断是否增行
- With WglrGrid
- If .TextMatrix(sjh, 0) = "*" Then
- Exit Sub
- End If
- .TextMatrix(sjh, 0) = "*"
- If sjh >= .Rows - Fzxwghs - 1 Then
- .AddItem ""
- .RowHeight(.Rows - 1) = Sjhgd
- End If
- End With
- End Sub
- '*****************************以下为文本框录入处理程序(固定不变部分)*******************************'
- Private Sub Wbklrwbcl(Index As Integer) '文本框录入事后处理程序
- '以下为依据实际情况自定义部分[
- '在此填写文本框录入事后处理程序
- Select Case Index
- Case 0
- If Trim(LrText(0).Tag) = "" Then Exit Sub
- LrText(1) = Right(Trim(LrText(0).Tag), Len(Trim(LrText(0).Tag)) - InStr(Trim(LrText(0).Tag), "*"))
- LrText(1).Tag = Left(Trim(LrText(0).Tag), InStr(Trim(LrText(0).Tag), "*") - 1)
- str_TempSql = "select a.*,b.mname,b.model,b.purunitname from qc_stockmaterial a left join gy_material b on a.mnumber=b.mnumber where a.mnumber='" & Trim(LrText(1)) & "' "
- Set rs_Temp = Cw_DataEnvi.DataConnect.Execute(str_TempSql)
- If rs_Temp.EOF() Then
- Call Xtxxts("请先在进料物料编码中定义该物料属性!", 0, 3)
- LrText(0).SetFocus
- Ydcommand1.Visible = True
- TextChangeLock = False
- Valilock = False
- For Jsqte = Max_Text_Index To 0 Step -1
- If Jsqte <> 14 And Jsqte <> 11 And Jsqte <> 12 Then '不清空单据号、制单人、制单日期
- LrText(Jsqte).Text = ""
- LrText(Jsqte).Tag = ""
- End If
- Next Jsqte
- Cbo_Result.Clear
- With WglrGrid
- .Rows = Pmbcsjhs + .FixedRows + Fzxwghs + 1
- For Jsqte = .FixedRows To .Rows - 1
- .RowHeight(Jsqte) = Sjhgd
- Next Jsqte
- WglrGrid.Clear 1
- Changelock = True
- .Select .FixedRows, Qslz
- Changelock = False
- End With
- Exit Sub
- Else
- LrText(2) = Trim(rs_Temp.Fields("mname") & "") '物料名称
- LrText(3) = Trim(rs_Temp.Fields("model") & "") '规格型号
- LrText(4) = Trim(rs_Temp.Fields("purunitname") & "") '计量单位
- End If
- str_TempSql = " select * from Qc_V_StockCheckCg where checker<>'' and notcheck<>1 and checkfinishflag=0 and purreciptmainid='" & Trim(LrText(1).Tag) & "' and MNumber = '" & Trim(LrText(1)) & "' "
- If rs_Temp.State = 1 Then rs_Temp.Close
- Set rs_Temp = Cw_DataEnvi.DataConnect.Execute(str_TempSql)
- With rs_Temp
- If Not .EOF Then
- LrText(5) = Trim(rs_Temp.Fields("suppliername") & "") '供应商名称
- LrText(5).Tag = Trim(rs_Temp.Fields("suppliercode") & "") '供应商编码
- LrText(6) = Trim(rs_Temp.Fields("quantity") & "") '数量
- LrText(7) = Format(Trim(rs_Temp.Fields("purreciptdate") & ""), "yyyy-mm-dd") '进料日期
- LrText(9) = Format(Xtrq, "yyyy-mm-dd") '检验日期默认系统日期
- End If
- End With
- str_TempSql = "SELECT GradeCode, GradeName From dbo.Qc_V_StockStandMain WHERE (MNumber = '" & Trim(LrText(1)) & "') ORDER BY GradeCode"
- If rs_Temp.State = 1 Then rs_Temp.Close
- Set rs_Temp = Cw_DataEnvi.DataConnect.Execute(str_TempSql)
- With rs_Temp
- If Not .EOF Then '有此物料的等级标准
- Cbo_Result.Clear
- ReDim gradecode(rs_Temp.RecordCount)
- Do While Not rs_Temp.EOF '填充检验结果中质量等级
- Cbo_Result.AddItem rs_Temp.Fields("gradename") '质量等级名称
- gradecode(Cbo_Result.NewIndex) = rs_Temp.Fields("gradecode") '质量等级编码
- rs_Temp.MoveNext
- Loop
- Set rec_wh = Cw_DataEnvi.DataConnect.Execute("SELECT * From dbo.qc_v_stockstandsub WHERE (MNumber = '" & Trim(LrText(1)) & "') ORDER BY ItemCode")
- WglrGrid.Clear 1
- WglrGrid.Rows = WglrGrid.FixedRows + rec_wh.RecordCount
- With rec_wh
- Jsqte = WglrGrid.FixedRows
- Do While Not .EOF '[>>显示单据分录
- If Trim(.Fields("itemcode") & "") = Trim(WglrGrid.TextMatrix(Jsqte - 1, 1) & "") Then
- Jsqte = Jsqte - 1
- Else
- WglrGrid.TextMatrix(Jsqte, 0) = "*"
- WglrGrid.TextMatrix(Jsqte, 1) = Trim(.Fields("itemcode") & "") '检验项目编码
- WglrGrid.TextMatrix(Jsqte, Sydz("001", GridStr(), Szzls)) = Trim(.Fields("itemname")) '检验项目名称
- WglrGrid.TextMatrix(Jsqte, Sydz("004", GridStr(), Szzls)) = Trim(.Fields("unitname") & "") '检验项目计量单位
- End If
- Jsqte = Jsqte + 1
- .MoveNext
- Loop
- WglrGrid.Rows = WglrGrid.FixedRows + Jsqte
- WglrGrid.TextMatrix(Jsqte, 0) = "*" '数据有效行标识(必填)
- WglrGrid.RowHeight(Jsqte) = Sjhgd
- End With
- Cbo_Result.ListIndex = 0
- Else '无此物料的检验标准
- Tsxx = "请设置此物料的检验标准!"
- Call Xtxxts(Tsxx, 0, 3)
- LrText(0).SetFocus
- Ydcommand1.Visible = True
- TextChangeLock = False
- Valilock = False
- For Jsqte = Max_Text_Index To 0 Step -1
- If Jsqte <> 14 And Jsqte <> 11 And Jsqte <> 12 Then '不清空单据号、制单人、制单日期
- LrText(Jsqte).Text = ""
- LrText(Jsqte).Tag = ""
- End If
- Next Jsqte
- Cbo_Result.Clear
- With WglrGrid
- .Rows = Pmbcsjhs + .FixedRows + Fzxwghs + 1
- For Jsqte = .FixedRows To .Rows - 1
- .RowHeight(Jsqte) = Sjhgd
- Next Jsqte
- WglrGrid.Clear 1
- Changelock = True
- .Select .FixedRows, Qslz
- Changelock = False
- End With
- Exit Sub
- End If
- End With
- End Select
- ']以上为依据实际情况自定义部分
- End Sub
- Private Sub LrText_Change(Index As Integer)
- '屏蔽程序改变控制
- If TextChangeLock Then
- Exit Sub
- End If
- TextValiJudgeLock(Index) = False '打开有效性判断锁
- '限制字段录入长度
- TextChangeLock = True '加锁(防止执行Lrtext_Change)
- Call TextChangeLimit(LrText(Index), Textint(Index, 1)) '去掉无效字符
- Select Case Textint(Index, 1)
- Case 8, 11 '金额型
- Call Sjgskz(LrText(Index), Xtjezws - Xtjexsws - 1, Xtjexsws)
- Case 9, 12 '数量型
- Call Sjgskz(LrText(Index), Xtslzws - Xtslxsws - 1, Xtslxsws)
- Case 10 '单价型
- Call Sjgskz(LrText(Index), Xtdjzws - Xtdjxsws - 1, Xtdjxsws)
- Case Else '其他小数类型控制
- If Textint(Index, 6) <> 0 Or Textint(Index, 7) <> 0 Then
- Call Sjgskz(LrText(Index), Textint(Index, 6), Textint(Index, 7))
- End If
- End Select
- TextChangeLock = False '解锁
- End Sub
- Private Sub LrText_GotFocus(Index As Integer) '文本框得到焦点,显示相应信息
- Call TextShow(Index)
- End Sub
- Private Sub LrText_KeyDown(Index As Integer, KeyCode As Integer, Shift As Integer) '字段按F2键提供帮助
- Select Case KeyCode
- Case vbKeyF2
- '[[
- If LrText(0).Text = "" Then Help_Flag = False
- ']]
- Bln_Hlp = False
- Call Text_Help(Index)
- End Select
- End Sub
- Private Sub LrText_KeyPress(Index As Integer, KeyAscii As Integer) '文本框录入事中控制
- Call InputFieldLimit(LrText(Index), Textint(Index, 1), KeyAscii)
- End Sub
- Private Sub LrText_LostFocus(Index As Integer) '文本框失去焦点进行有效性判断及相应处理
- If Textint(Index, 9) = 0 Or Textint(Index, 9) = 1 Then '事中判断
- Call TextYxxpd(Index)
- End If
- End Sub
- Private Sub Ydcommand1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single) '点击按钮
- '[[
- If LrText(0).Text = "" Then Help_Flag = False
- ']]
- Bln_Hlp = False
- Me.bln_Help = True
- Call Text_Help(Ydcommand1.Tag)
- Me.bln_Help = False
- End Sub
- Private Sub Text_Help(Index As Integer) '录入字段帮助
- If Not Ydcommand1.Visible Then
- Exit Sub
- End If
- TextValiLock = True
- Call Drbmhelp(Textint(Index, 2), Textstr(Index, 4), Trim(LrText(Index).Text))
- '[[
- If LrText(0).Text = "" Then Help_Flag = True
- ']]
- If Len(Xtfhcs) <> 0 Then
- If Textint(Index, 3) = 1 Then
- LrText(Index).Text = Xtfhcsfz
- LrText(Index).Tag = Xtfhcs
- Else
- LrText(Index).Text = Xtfhcs
- LrText(Index).Tag = Xtfhcsfz
- End If
- End If
- Bln_Hlp = True
- TextValiLock = False
- LrText(Index).SetFocus
- '[<< zjs 加下 '为了能使其自动带出
- If (Index = 0) And Len(Xtfhcs) <> 0 Then
- Call LrText_LostFocus(Index)
- End If
- '>>] zjs 加上
- End Sub
- Private Sub TextShow(Index As Integer) '文本框得到焦点,显示相应信息
- '如果文本框有帮助,则显示帮助按钮
- If Textboolean(Index, 1) Then
- Ydcommand1.Visible = True
- Ydcommand1.Move LrText(Index).Left + LrText(Index).Width, LrText(Index).Top
- Ydcommand1.Tag = Index
- Else
- Ydcommand1.Tag = ""
- Ydcommand1.Visible = False
- End If
- '[>>
- '可在此处定义其他处理动作
- '<<]
- End Sub
- Private Sub Wbkcsh() '录入文本框初始化
- Dim Int_TabIndex As Integer 'Tab焦点计数器
- '单据录入中文本框焦点由0开始
- LrText(0).TabIndex = 0
- '最大录入文本框索引值
- Max_Text_Index = Textvar(1)
- ReDim TextValiJudgeLock(Max_Text_Index)
- For Jsqte = 0 To Max_Text_Index
- '判断此文本框录入索引号是否存在,如存在则对其进行初始化
- If Len(Trim(Textstr(Jsqte, 1))) <> 0 Then
- '自动装入录入文本框和其解释标签
- If Jsqte <> 0 Then
- Load LrText(Jsqte)
- Load TsLabel(Jsqte)
- '判断录入文本框是否显示
- If Textboolean(Jsqte, 4) Then
- LrText(Jsqte).Visible = True
- TsLabel(Jsqte).Visible = True
- End If
- '判断文本框是否可编辑
- If Textboolean(Jsqte, 5) Then
- LrText(Jsqte).Enabled = True
- Else
- LrText(Jsqte).Enabled = False
- End If
- End If
- '初始化其内容
- TextChangeLock = True
- LrText(Jsqte).Text = ""
- LrText(Jsqte).Tag = ""
- If Textint(Jsqte, 5) <> 0 Then
- LrText(Jsqte).MaxLength = Textint(Jsqte, 5)
- End If
- TextChangeLock = False
- '设置文本框位置及大小,并设置相应标签内容及其位置
- LrText(Jsqte).Move Textint(Jsqte, 13), Textint(Jsqte, 12), Textint(Jsqte, 11), Textint(Jsqte, 10)
- TsLabel(Jsqte).Caption = Textstr(Jsqte, 7) & ":"
- TsLabel(Jsqte).Move Textint(Jsqte, 13) - TsLabel(Jsqte).Width - 20, Textint(Jsqte, 12) + (Textint(Jsqte, 10) - TsLabel(Jsqte).Height) / 2 - 30
- End If
- '将文本框有效性判断进行加锁,在文本框内容发生变化时将锁打开
- TextValiJudgeLock(Jsqte) = True
- Next Jsqte
- '设置文本框焦点转移顺序(前提文本焦点从0至Max_Text_Index)
- For Int_TabIndex = 0 To Max_Text_Index
- For Jsqte = 0 To Max_Text_Index
- If Textint(Jsqte, 14) = Int_TabIndex Then
- LrText(Jsqte).TabIndex = Int_TabIndex
- End If
- Next Jsqte
- Next Int_TabIndex
- End Sub
- Private Function TextYxxpd(Index As Integer) As Boolean '文本框有效性判断
- Dim Sqlstr As String
- Dim Findrec As New ADODB.Recordset
- '按帮助不进行有效性判断
- If TextValiLock Then
- TextValiLock = False
- TextYxxpd = True
- Exit Function
- End If
- '文本框内容未曾改变不进行有效性判断
- If TextValiJudgeLock(Index) Then
- Ydcommand1.Visible = False
- TextYxxpd = True
- Exit Function
- End If
- '浏览状态不进行有效性判断
- If Lab_OperStatus = 1 Then
- Ydcommand1.Visible = False
- TextYxxpd = True
- Exit Function
- End If
- If Trim(LrText(Index)) = "" Then
- LrText(Index).Tag = ""
- Call Wbklrwbcl(Index)
- Ydcommand1.Visible = False
- TextValiJudgeLock(Index) = True
- TextYxxpd = True
- Exit Function
- End If
- '[>>
- '可在此加入不做有效性判断的理由(参照上面程序)
- '<<]
- Select Case Textint(Index, 4)
- Case 1 '编码型
- Sqlstr = Trim(Textstr(Index, 5))
- Sqlstr = Replace(Sqlstr, "@", "'" + Trim(LrText(Index).Text) + "'")
- If Index = 0 Then
- If Trim(LrText(Index).Tag) <> "" Then
- Sqlstr = Sqlstr & " and rtrim(convert(char(50),purreciptmainid))+'*'+rtrim(convert(char(20),mnumber))='" & Trim(LrText(Index).Tag) & "'"
- End If
- End If
- Set Findrec = Cw_DataEnvi.DataConnect.Execute(Sqlstr)
- If Findrec.EOF Then
- Call Xtxxts(Trim(Textstr(Index, 6)), 0, 1)
- LrText(Index).SetFocus
- Exit Function
- Else
- If Index = 0 Then
- LrText(0).Tag = Findrec.Fields("id")
- If Not Help_Flag Then
- If Findrec.RecordCount > 1 Then
- Call Text_Help(Ydcommand1.Tag)
- End If
- End If
- Help_Flag = False
- Bln_Hlp = False
- Ydcommand1.Visible = True
- Else
- Select Case Textint(Index, 3)
- Case 0
- If Len(Trim(Textstr(Index, 2))) <> 0 Then
- LrText(Index).Text = Trim(Findrec.Fields(Trim(Textstr(Index, 2))))
- End If
- If Len(Trim(Textstr(Index, 3) & "")) <> 0 Then
- LrText(Index).Tag = Trim(Findrec.Fields(Trim(Textstr(Index, 3))))
- End If
- Case 1
- If Len(Trim(Textstr(Index, 3) & "")) <> 0 Then
- LrText(Index).Text = Trim(Findrec.Fields(Trim(Textstr(Index, 3))))
- End If
- If Len(Trim(Textstr(Index, 2))) <> 0 Then
- LrText(Index).Tag = Trim(Findrec.Fields(Trim(Textstr(Index, 2))))
- End If
- End Select
- End If
- End If
- Case 2 '日期型
- If IsDate(LrText(Index).Text) Then
- LrText(Index).Text = Format(LrText(Index).Text, "yyyy-mm-dd")
- If Val(Mid(LrText(Index), 1, 4)) < 1900 Then
- LrText(Index).Text = "1900" + Mid(LrText(Index), 5, 6)
- End If
- Else
- Tsxx = "非法公历日期!(格式:" + Format(Date, "yyyy-mm-dd") + ")"
- Call Xtxxts(Tsxx, 0, 1)
- LrText(Index).SetFocus
- Exit Function
- End If
- Case 3 '其他类型
- End Select
- '隐藏帮助按钮
- Ydcommand1.Visible = False
- '如果有效则加锁,用户不改变内容则不再进行有效性判断
- TextValiJudgeLock(Index) = True
- '调用文本框事后处理程序
- Call Wbklrwbcl(Index)
- '有效性判断通过则返回True
- TextYxxpd = True
- End Function