+
来自「VB开发的ERP系统」· 代码 · 共 1,326 行 · 第 1/4 页
TXT
1,326 行
Key = "last"
EndProperty
BeginProperty ListImage18 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "物料需求计划_汇总需求列表.frx":22B6C
Key = "xx"
EndProperty
BeginProperty ListImage19 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "物料需求计划_汇总需求列表.frx":22F06
Key = "define"
EndProperty
BeginProperty ListImage20 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "物料需求计划_汇总需求列表.frx":232A0
Key = "exec"
EndProperty
BeginProperty ListImage21 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "物料需求计划_汇总需求列表.frx":2363A
Key = "xz"
EndProperty
BeginProperty ListImage22 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "物料需求计划_汇总需求列表.frx":239D4
Key = "sc"
EndProperty
BeginProperty ListImage23 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "物料需求计划_汇总需求列表.frx":23D6E
Key = "sx"
EndProperty
BeginProperty ListImage24 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "物料需求计划_汇总需求列表.frx":24108
Key = "cx"
EndProperty
BeginProperty ListImage25 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "物料需求计划_汇总需求列表.frx":244A2
Key = "zd"
EndProperty
BeginProperty ListImage26 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "物料需求计划_汇总需求列表.frx":2483C
Key = "dz"
EndProperty
BeginProperty ListImage27 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "物料需求计划_汇总需求列表.frx":24BD6
Key = "ph"
EndProperty
BeginProperty ListImage28 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "物料需求计划_汇总需求列表.frx":24F70
Key = "fz"
EndProperty
BeginProperty ListImage29 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "物料需求计划_汇总需求列表.frx":2530A
Key = "dw"
EndProperty
BeginProperty ListImage30 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "物料需求计划_汇总需求列表.frx":256A4
Key = "hf"
EndProperty
BeginProperty ListImage31 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "物料需求计划_汇总需求列表.frx":25A3E
Key = "pz"
EndProperty
BeginProperty ListImage32 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "物料需求计划_汇总需求列表.frx":25DD8
Key = "check"
EndProperty
EndProperty
End
End
End
Attribute VB_Name = "MRP_TotalDemandList"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'******************************************************************
'* 模 块 名 称 :物料需求计划--汇总物料需求列表
'* 功 能 描 述 :汇总物料需求列表
'* 程序员姓名 :乔进
'* 最后修改人 :乔进
'* 最后修改时间:2001/12/10
'* 备 注:程序中所有依实际情况自定义部分均用[>> <<]括起
'******************************************************************
Dim ReportTitle As String '报表主标题
Dim Str_QueryCondi As String '用户录入查询条件
Dim Rec_BillID As New ADODB.Recordset '用户查询单据ID动态集
'以下为固定使用变量
Dim Dyymctbl As New DY_Dyymsz '打印页面窗体变量
Dim GridCode As String '显示网格网格代码
Dim GridInf() As Variant '整个网格设置信息
Dim Tsxx As String '系统提示信息
Dim Qslz As Long '网格隐藏(非操作显示)列数
Dim Sjhgd As Double '网格数据行高度
Dim Sfxshjwg As Boolean '是否显示合计网格
Dim GridBoolean() As Boolean '网格列信息(布尔型)
Dim GridStr() As String '网格列信息(字符型)
Dim GridInt() As Integer '网格列信息(整型)
Dim Szzls As Integer '数组总列数(网格列数-1)
Private Sub Form_Resize() '根据窗体大小来调整网格,标题栏大小(Fixed)
On Error Resume Next
With CxbbGrid
.Width = Me.Width - 160
.Height = Me.Height - .Top - 400
End With
With Pic_Title
.Width = Me.Width - 160
End With
GsToolbar.Left = Me.Width - GsToolbar.Width - 140
End Sub
Private Sub Form_Load() '窗体装入
'调入打印页面设置窗体
ReportTitle = "汇总需求列表"
XtReportCode = "MRP_TotalDemandList"
Load Dyymctbl
'调整标题栏及网格、格式工具条位置(Fixed)
Pic_Title.Left = 40
Pic_Title.Top = SzToolbar.Top + SzToolbar.Height - 10
CxbbGrid.Left = Pic_Title.Left
CxbbGrid.Top = Pic_Title.Top + Pic_Title.Height + 20
'调 入 网 格(Fixed)
GridCode = "MRP_TotalDemandList"
Call BzWgcsh(CxbbGrid, GridCode, GridInf(), GridBoolean(), GridInt(), GridStr())
Qslz = GridInf(1)
Sjhgd = GridInf(2)
Sfxshjwg = GridInf(7)
Szzls = CxbbGrid.Cols - 1
MRP_TotalDemandList.HelpContextID = 241400302
End Sub
Private Sub Form_Unload(Cancel As Integer) '窗体卸载
'卸载条件窗体
MRP_TotalDemandQuery.UnloadCheck.Value = 1
Unload MRP_TotalDemandQuery
'卸载打印页面设置窗体
Unload Dyymctbl
Security_Log "MRP_SumList", Xtczybm, 2, False '用户退出时写上机日志
End Sub
Private Sub CxbbGrid_BeforeMoveColumn(ByVal Col As Long, Position As Long) '网格列发生移动时自动交换网格索引信息
Call FnBln_RefreshArray(Col, Position, GridStr(), GridInf())
End Sub
Private Sub GsToolbar_ButtonClick(ByVal Button As MSComctlLib.Button) '网格格式调整(Fixed)
Select Case Button.Key
Case "bcgs" '保存表格格式
Call Bcwggs(CxbbGrid, GridCode, GridStr())
Case "hfmrgs" '恢复默认格式
Call Hfmrgs(CxbbGrid, GridCode, GridStr())
Case "szxsxm" '设置显示项目
Call Szxsxm(CxbbGrid, GridCode)
End Select
End Sub
Private Sub SzToolbar_ButtonClick(ByVal Button As MSComctlLib.Button)
Select Case Button.Key
Case "ymsz" '页面设置
Dyymctbl.Show 1
Case "yl" '预 览
Call bbyl(True)
Case "dy" '打 印
Call bbyl(False)
Case "cx" '查 询
MRP_TotalDemandQuery.Show 1
Case "Bill" '单 据
If Not Security_Log("MRP_SumList_Edit", Xtczybm, 1) Then
Exit Sub
End If
Call CxbbGrid_DblClick
Case "sc" '删 除
If Not Security_Log("MRP_SumList_Edit", Xtczybm, 1) Then
Exit Sub
End If
Call Sub_DeleteBill
Case "bz" '帮 助
Call F1bz
Case "fh" '退 出
Unload Me
Case "shhe" '审核
If Not Security_Log("MRP_SumList_Audit", Xtczybm, 1) Then
Exit Sub
End If
Call Sub_Checkbill
End Select
End Sub
Private Sub Timer1_Timer() '在窗体激活后调入查询程序
Timer1.Enabled = False
Xt_Wait.Show
Xt_Wait.Refresh
'加快显示速度
CxbbGrid.Redraw = False
'生成查询结果
Call Sub_Query(0)
CxbbGrid.Redraw = True
Xt_Wait.Hide
End Sub
Private Sub Sub_Query(Int_QueryType As Integer) '生成查询结果(Define)
'过程参数:Int_QueryType 0-"点确定按钮"查询 1-"刷新"查询
Dim Rec_Query As New ADODB.Recordset '查询结果动态集
Dim Coljsq As Long '网格列计数器
Dim jsqte As Long '临时动态计数器
Dim iYear As Integer, iMonth As Integer
'以下为自定义部分[
If Int_QueryType = 0 Then '0-"点确定按钮"查询
With MRP_TotalDemandQuery
'生成查询条件
Str_QueryCondi = " where 1=1 "
For jsqte = 1 To 16
Select Case jsqte
Case 1 '起始周期
If Trim(.Combo_Con(0)) <> "" Then
Call Sub_DivMonth(Trim(.Combo_Con(0).Text), iYear, iMonth)
Str_QueryCondi = Str_QueryCondi & " And kjYear=" & iYear & " And period=" & iMonth
End If
Case "2" '起始日期
If Trim(.LrText(0)) <> "" Then
Str_QueryCondi = Str_QueryCondi + " And TotalDate >='" & Format(Trim(.LrText(0)), "yyyy-mm-dd") & "' "
End If
Case "3" '截止日期
If Trim(.LrText(1)) <> "" Then
Str_QueryCondi = Str_QueryCondi + " And TotalDate <='" & Format(Trim(.LrText(1)), "yyyy-mm-dd") & "' "
End If
Case "4" '需求类型
If Trim(.LrText(2)) <> "" Then
Str_QueryCondi = Str_QueryCondi + " And Demandtype='" & Trim(.LrText(2).Tag) & "' "
End If
Case "5" '物料分类
If Trim(.LrText(3)) <> "" Then
Str_QueryCondi = Str_QueryCondi + " And PurSortCode ='" & .LrText(3).Tag & "' "
End If
Case "6" '是否追补
If Not .Opt_PlanType(0).Value Then
If .Opt_PlanType(1).Value Then
Str_QueryCondi = Str_QueryCondi & " And a.IfAdd=0 "
Else
Str_QueryCondi = Str_QueryCondi & " And a.IfAdd=1 "
End If
End If
Case 7 '审核
If Not .Opt_Check(0).Value Then
If .Opt_Check(1).Value Then
Str_QueryCondi = Str_QueryCondi & " And a.Checker='' "
Else
Str_QueryCondi = Str_QueryCondi & " And a.Checker<>'' "
End If
End If
Case 8 '生成
If Not .Opt_Create(0).Value Then
If .Opt_Create(1).Value Then
Str_QueryCondi = Str_QueryCondi & " And a.IfTransack=0 "
Else
Str_QueryCondi = Str_QueryCondi & " And a.IfTransack=1 "
End If
End If
Case 9 '废弃
If Not .Opt_Abandon(0).Value Then
If .Opt_Abandon(1).Value Then
Str_QueryCondi = Str_QueryCondi & " And a.IfAbandon=0 "
Else
Str_QueryCondi = Str_QueryCondi & " And a.IfAbandon=1 "
End If
End If
Case 10 '完成
If Not .Opt_Finish(0).Value Then
If .Opt_Finish(1).Value Then
Str_QueryCondi = Str_QueryCondi & " And a.IfComplete=0 "
Else
Str_QueryCondi = Str_QueryCondi & " And a.IfComplete=1 "
End If
End If
Case "11" '物料编码
If Trim(.LrText(4)) <> "" Then
Str_QueryCondi = Str_QueryCondi + " And MNumber ='" & .LrText(4).Text & "' "
End If
Case "12" '制单
If Trim(.LrText(5)) <> "" Then
Str_QueryCondi = Str_QueryCondi + " And TotalMan ='" & .LrText(5).Text & "' "
End If
Case "13" '审核
If Trim(.LrText(6)) <> "" Then
Str_QueryCondi = Str_QueryCondi + " And Checker ='" & .LrText(6).Text & "' "
End If
Case "14" '毛需求
If Trim(.Combo_Con(2)) <> "" Then
Str_QueryCondi = Str_QueryCondi + " And QuanGross " & Trim(.Combo_Con(2).Text & "") & " " & Val(.LrText(7))
End If
Case "15" '净需求
If Trim(.Combo_Con(3)) <> "" Then
Str_QueryCondi = Str_QueryCondi + " And NetNumber " & Trim(.Combo_Con(3).Text & "") & " " & Val(.LrText(8))
End If
Case "16" '计划来源
If Trim(.Combo_Con(1)) <> "" Then
Str_QueryCondi = Str_QueryCondi + " And TotalDemandID In ( Select TotalDemandID From MRP_DemandRelation Where DemandSource='" & Val(Trim(.Combo_Con(1) & "")) & "' ) "
End If
End Select
Next jsqte
End With
Else
'1-"刷新"查询
If Str_QueryCondi = "" Then
Str_QueryCondi = " where 1=1 "
End If
End If
Sqlstr = "Select * From MRP_V_TotalDemand a " & Str_QueryCondi & ""
Sqlstr = Sqlstr + " Order by TotalDemandID"
Set Rec_Query = Cw_DataEnvi.DataConnect.Execute(Sqlstr)
With Rec_Query
CxbbGrid.Rows = CxbbGrid.FixedRows
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?