Rss & SiteMap

Foxtable(狐表) http://www.foxtable.com

新一代数据库软件,完美融合Access、Foxpro、Excel、vb.net之优势,人人都能掌握的快速软件开发工具!
共7 条记录, 每页显示 10 条, 页签: [1]
[浏览完整版]

标题:自动编号

1楼
longyanlin 发表于:2024/9/23 15:13:00
请教帮助里面的编号是按代码和年月的,如何变成按年月日的:

Select e.DataCol.Name
    Case "日期","代码"
        If e.DataRow.IsNull("日期") OrElse e.DataRow.IsNull("代码") Then
            e.DataRow("编号") = Nothing
        Else
            Dim d As Date = e.DataRow("日期")
            Dim y As Integer = d.Year
           
Dim m As Integer = d.Month
            Dim Days As Integer = Date.DaysInMonth(y,m)
            Dim fd As Date = New Date(y,m,1)
'
获得该月的第一天
            Dim ld As Date = New Date(y,m,Days)
'
获得该月的最后一天
            Dim bh As String = e.DataRow(
"
代码") & Format(d,"yyMM") & "-" '生成编号的前缀
            If e.DataRow(
"
编号").StartsWith(bh) = False '如果单据编号前缀不符
                Dim max As String
                Dim idx As Integer
                Dim flt As String
                flt =
"
代码 = '"& e.DataRow("代码") & "' And 日期 >= #" & fd & "# And 日期 <= #" & ld & "# And [_Identify] <> " & e.DataRow("_Identify")
                max = e.DataTable.Compute(
"Max(
编号)",flt) '取得该月的相同工程代码的最大单据编号
                If max > "" Then
'
如果存在最大单据编号
                    idx = CInt(max.Substring(9,3)) + 1
'
获得最大单据编号的后四位顺序号,并加1
                Else
                    idx = 1
'
否则顺序号等于1
               
End If
                e.DataRow("编号") = bh & Format(idx,"000")
            End If
        End
If

End
Select

2楼
有点蓝 发表于:2024/9/23 15:15:00
参考:http://www.foxtable.com/webhelp/topics/2403.htm,看【四、按日期和类别编号
3楼
longyanlin 发表于:2024/9/23 15:43:00
Select e.DataCol.Name
    Case "下单日期","代码"
        If e.DataRow.IsNull("下单日期") OrElse e.DataRow.IsNull("代码") Then
            e.DataRow("订单号") = Nothing
        Else
            Dim bh As String = e.DataRow("代码") & Format(e.DataRow("下单日期"),"yyMMdd") '生成编号的前缀
            If e.DataRow("订单号").StartsWith(bh) = False '如果单据编号前缀不符
                Dim max As String
                Dim idx As Integer
                Dim flt As String
                flt = "代码 = '"& e.DataRow("代码") & "' And 下单日期 >= #" & "# And 下单日期 <= #" & "# And [_Identify] <> " & e.DataRow("_Identify")
                max = e.DataTable.Compute("Max(订单号)",flt) '取得该月的相同工程代码的最大单据编号
                If max > "" Then '如果存在最大单据编号
                    idx = CInt(max.Substring(8,3)) + 1 '获得最大单据编号的后四位顺序号,并加1
                Else
                    idx = 1 '否则顺序号等于1
                End If
                e.DataRow("订单号") = bh & Format(idx,"000")
            End If
        End If
End Select
我改了下,达不到目的,请教下如何修改,谢谢

4楼
有点蓝 发表于:2024/9/23 15:55:00
  flt = "代码 = '"& e.DataRow("代码") & "' And 下单日期 = #" e.DataRow("下单日期") "# And [_Identify] <> " & e.DataRow("_Identify")
5楼
longyanlin 发表于:2024/9/23 17:17:00
出现错误

图片点击可在新窗口打开查看此主题相关图片如下:异常.png
图片点击可在新窗口打开查看

[此贴子已经被作者于2024/9/23 17:17:15编辑过]
6楼
有点蓝 发表于:2024/9/23 17:23:00
  flt = "代码 = '" & e.DataRow("代码") & "' And 下单日期 = #" & e.DataRow("下单日期") & "# And [_Identify] <> " & e.DataRow("_Identify")
7楼
longyanlin 发表于:2024/9/23 17:36:00
谢谢
共7 条记录, 每页显示 10 条, 页签: [1]

Copyright © 2000 - 2018 foxtable.com Tel: 4000-810-820 粤ICP备11091905号

Powered By Dvbbs Version 8.3.0
Processed in .03125 s, 2 queries.