⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄

📁 VB开发的ERP系统
💻
📖 第 1 页 / 共 4 页
字号:
Private Sub Form_Unload(Cancel As Integer)                                  '窗体卸载

    '卸载条件窗体
    Cg_InvoiceDevQuery.UnloadCheck.Value = 1
    Unload Cg_InvoiceDevQuery
    
    '卸载打印页面设置窗体
    Unload Dyymctbl

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"                                            '查 询
            Cg_InvoiceDevQuery.Show 1
        Case "bz"                                            '帮 助
            Call F1bz
        Case "fh"                                            '退 出
           Unload Me
    End Select

End Sub

Private Sub Timer1_Timer()                                 '在窗体激活后调入查询程序
    
    Timer1.Enabled = False
    Xt_Wait.Show
    Xt_Wait.Refresh
   
    '加快显示速度
    CxbbGrid.Redraw = False
 
    '生成查询结果
    Call Sub_Query
   
    CxbbGrid.Redraw = True
    
    Xt_Wait.Hide

End Sub

Private Sub Sub_Query()                                     '生成查询结果(Define)
    
    

    Dim Rec_Query As New ADODB.Recordset        '查询结果动态集
    Dim Coljsq As Long                          '网格列计数器
    Dim jsqte As Long                           '临时动态计数器

    '以下为自定义部分[
     
    With Cg_InvoiceDevQuery
        '生成查询条件
        Str_QueryCondi = " where Checker<>'' "
        For jsqte = 1 To 16
            Select Case jsqte
                Case 1  '发票号
                    If Trim(.LrText(0).Text) <> "" Then
                        Str_QueryCondi = Str_QueryCondi & " And InvoiceNum = '" & Trim(.LrText(0).Text) & "'"
                        
                    End If
                Case 2  '原发票号
                    If Trim(.LrText(1).Text) <> "" Then
                        Str_QueryCondi = Str_QueryCondi & " and InvoiceNumZs = '" & Trim(.LrText(1).Text) & "'"
                    End If
                Case 3  '供应商
                    If Trim(.LrText(2).Text) <> "" Then
                        Str_QueryCondi = Str_QueryCondi & " and SupplierCode =  '" & Trim(.LrText(2).Tag) & "'"
                        Me.Lbl_Xslabel(2).Caption = Trim(.LrText(2).Text)
                    Else
                        Me.Lbl_Xslabel(2).Caption = ""
                    End If
                Case 4  '采购物料分类
                    If Trim(.LrText(3).Text) <> "" Then
                        Str_QueryCondi = Str_QueryCondi & " and PurSortCode like '" & Trim(.LrText(3).Tag) & "%'"
                    End If
                Case 5  '物料编码
                    If Trim(.LrText(4).Text) <> "" Then
                        Str_QueryCondi = Str_QueryCondi & " and MNumber = '" & Trim(.LrText(4).Text) & "'"
                        Me.Lbl_Xslabel(3).Caption = Trim(.LrText(4).Text)
                    Else
                        Me.Lbl_Xslabel(3).Caption = ""
                    End If
                Case 6  '收料日期起
                    If Trim(.LrText(5).Text) <> "" Then
                        Str_QueryCondi = Str_QueryCondi & " And InvoiceDate>=convert(datetime,'" & Trim(.LrText(5).Text) & "')"
                        Me.Lbl_Xslabel(0).Caption = Trim(.LrText(5).Text)
                    Else
                        Me.Lbl_Xslabel(0).Caption = ""
                    End If
                Case 7  '收料日期止
                    If Trim(.LrText(6).Text) <> "" Then
                        Str_QueryCondi = Str_QueryCondi & " And InvoiceDate<=convert(datetime,'" & Trim(.LrText(6).Text) & "')"
                        Me.Lbl_Xslabel(1).Caption = Trim(.LrText(6).Text)
                    Else
                        Me.Lbl_Xslabel(1).Caption = ""
                    End If
                Case 8  '发票类别
                    If Not .Opt_Fplb(0).Value Then
                        If .Opt_Fplb(1).Value Then
                            Str_QueryCondi = Str_QueryCondi & " and  InvoiceSort=1 "
                        Else
                            Str_QueryCondi = Str_QueryCondi & " and  InvoiceSort=0 "
                        End If
                    End If
                Case 9  '单据性质
                    If Not .Opt_Djxz(0).Value Then
                        If .Opt_Djxz(1).Value Then
                            Str_QueryCondi = Str_QueryCondi & " and  InvoiceKind=0 "
                        Else
                            Str_QueryCondi = Str_QueryCondi & " and  InvoiceKind=1 "
                        End If
                    End If
                Case 10  '结算状态
                    If Not .Opt_Jszt(0).Value Then
                        If .Opt_Jszt(1).Value Then
                            Str_QueryCondi = Str_QueryCondi & " and  BanlanceDate is not null "
                        Else
                            Str_QueryCondi = Str_QueryCondi & " and  BanlanceDate is null "
                        End If
                    End If
                Case 11  '部门
                    If Trim(.LrText(7).Text) <> "" Then
                        Str_QueryCondi = Str_QueryCondi & " and DeptCode = '" & Trim(.LrText(7).Tag) & "'"
                    End If
                Case 12   '业务员
                    If Trim(.LrText(8).Text) <> "" Then
                        Str_QueryCondi = Str_QueryCondi & " and PersonCode = '" & Trim(.LrText(8).Tag) & "'"
                    End If
                Case 13  '数量起
                    If Trim(.LrText(9).Text) <> "" Then
                        Str_QueryCondi = Str_QueryCondi & " and Quantity >= " & S2N(Trim(.LrText(9).Text))
                    End If
                Case 14  '数量止
                    If Trim(.LrText(10).Text) <> "" Then
                        Str_QueryCondi = Str_QueryCondi & " and Quantity <= " & S2N(Trim(.LrText(10).Text))
                    End If
                Case 15   '金额起
                    If Trim(.LrText(11).Text) <> "" Then
                        Str_QueryCondi = Str_QueryCondi & " and MoneyBb >= " & S2N(Trim(.LrText(11).Text))
                    End If
                Case 16   '金额止
                    If Trim(.LrText(12).Text) <> "" Then
                        Str_QueryCondi = Str_QueryCondi & " and MoneyBb <= " & S2N(Trim(.LrText(12).Text))
                    End If
            End Select
        Next jsqte
    End With
    
     
    Sqlstr = "select * from Cg_V_InvoiceBill  " & Str_QueryCondi & " Order By InvoiceDate,InvoiceNum,InvoiceSubID"
    
    Set Rec_Query = Cw_DataEnvi.DataConnect.Execute(Sqlstr)
    With Rec_Query
        CxbbGrid.Rows = CxbbGrid.FixedRows
        jsqte = CxbbGrid.FixedRows
        Do While Not .EOF
            If jsqte >= CxbbGrid.Rows Then
                CxbbGrid.AddItem ""
            End If
            '[>>自定义填充内容
                                                           
            CxbbGrid.TextMatrix(jsqte, Sydz("001", GridStr(), Szzls)) = Format(.Fields("InvoiceDate"), "yyyy-mm-dd")    '发票日期
            CxbbGrid.TextMatrix(jsqte, Sydz("002", GridStr(), Szzls)) = Trim(.Fields("InvoiceNum") & "")                '发票号
            CxbbGrid.TextMatrix(jsqte, Sydz("003", GridStr(), Szzls)) = Trim(.Fields("InvoiceNumZs") & "")              '原发票号
            CxbbGrid.TextMatrix(jsqte, Sydz("004", GridStr(), Szzls)) = Trim(.Fields("SupplierName") & "")              '供应商名称
            CxbbGrid.TextMatrix(jsqte, Sydz("005", GridStr(), Szzls)) = Trim(.Fields("DeptName") & "")                  '部门
            CxbbGrid.TextMatrix(jsqte, Sydz("006", GridStr(), Szzls)) = Trim(.Fields("PersonName") & "")                '业务员
            CxbbGrid.TextMatrix(jsqte, Sydz("007", GridStr(), Szzls)) = Trim(.Fields("OrderFormNum") & "")              '订单号
            CxbbGrid.TextMatrix(jsqte, Sydz("008", GridStr(), Szzls)) = Trim(.Fields("Maker") & "")                     '制单人
            CxbbGrid.TextMatrix(jsqte, Sydz("009", GridStr(), Szzls)) = Trim(.Fields("Checker") & "")                   '审核人
            CxbbGrid.TextMatrix(jsqte, Sydz("010", GridStr(), Szzls)) = Trim(.Fields("MNumber") & "")                   '物料编码
            CxbbGrid.TextMatrix(jsqte, Sydz("011", GridStr(), Szzls)) = Trim(.Fields("MName") & "")                     '物料名称
            CxbbGrid.TextMatrix(jsqte, Sydz("012", GridStr(), Szzls)) = Trim(.Fields("Model") & "")                     '规格型号
            CxbbGrid.TextMatrix(jsqte, Sydz("013", GridStr(), Szzls)) = Trim(.Fields("PurUnitName") & "")               '计量单位
            CxbbGrid.TextMatrix(jsqte, Sydz("014", GridStr(), Szzls)) = Trim(.Fields("Quantity") & "")                  '数量
            CxbbGrid.TextMatrix(jsqte, Sydz("015", GridStr(), Szzls)) = Trim(.Fields("PriceBb") & "")                   '单价
            CxbbGrid.TextMatrix(jsqte, Sydz("016", GridStr(), Szzls)) = Trim(.Fields("MoneyBb") & "")                   '金额
            CxbbGrid.TextMatrix(jsqte, Sydz("017", GridStr(), Szzls)) = Trim(.Fields("TaxMoneyBb") & "")                '税额
            CxbbGrid.TextMatrix(jsqte, Sydz("018", GridStr(), Szzls)) = Trim(.Fields("TotalMoneyBb") & "")              '价税合计
            CxbbGrid.TextMatrix(jsqte, Sydz("019", GridStr(), Szzls)) = Trim(.Fields("ForeignCurrName") & "")           '币种
            CxbbGrid.TextMatrix(jsqte, Sydz("020", GridStr(), Szzls)) = Trim(.Fields("Remark") & "")                    '备注
            
            '<<]
            '设置数据行高度(Fixed)
            CxbbGrid.RowHeight(jsqte) = Sjhgd
     
            '动态集指针加1,同时将计数器加1(Fixed)
            .MoveNext
            jsqte = jsqte + 1
        Loop
    End With

    ']以上为用户自定义部分

End Sub

Private Sub bbyl(bbylte As Boolean)                    '报表打印预览
    
    Dim Bbzbt$, Bbxbt() As String, bbxbtzzxs() As Integer, Bbxbtgs As Integer
    Dim Bbbwh() As String, Bbbwhzzxs() As Integer, Bbbwhgs As Integer
    Bbxbtgs = 2                                          '报 表 小 标 题 行 数
    Bbbwhgs = 0                                          '报 表 表 尾 行 数
    ReDim Bbxbt(1 To Bbxbtgs)
    ReDim bbxbtzzxs(1 To Bbxbtgs)
    If Bbbwhgs <> 0 Then
        ReDim Bbbwh(1 To Bbbwhgs)
        ReDim Bbbwhzzxs(1 To Bbbwhgs)
    End If
    Bbzbt = ReportTitle
    Bbxbt(1) = ""
    Bbxbt(2) = Space(4) + Fun_FormatOutPut(Me.Lbl_Tslabel(0) + Me.Lbl_Xslabel(0), 10)
    Bbxbt(2) = Bbxbt(2) + Fun_FormatOutPut(Me.Lbl_Tslabel(1) + Me.Lbl_Xslabel(1), 20) + Fun_FormatOutPut(Me.Lbl_Tslabel(2) + Me.Lbl_Xslabel(2), 20)
    Bbxbt(2) = Bbxbt(2) + Fun_FormatOutPut(Me.Lbl_Tslabel(3) + Me.Lbl_Xslabel(3), 20)
    bbxbtzzxs(1) = 0                                     '报表行组织形式(0-居左 1-居中 2-居右)
    Call Scyxsjb(CxbbGrid)                               '生成报表数据
    Call Scdybb(Dyymctbl, Bbzbt, Bbxbt(), bbxbtzzxs(), Bbxbtgs, Bbbwh(), Bbbwhzzxs(), Bbbwhgs, bbylte)
    If Not bbylte Then
        Unload DY_Tybbyldy
    End If

End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -