以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  [求助]流水号重复  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=72712)

--  作者:foxlzd
--  发布时间:2015/8/5 0:20:00
--  [求助]流水号重复
求老师帮助。
按日期编号(date)正常,但是(datelongtime)编号重复。怎么才能增加????

图片点击可在新窗口打开查看
If e.DataCol.Name = "日期" Then
    If e.DataRow.IsNull("日期") Then
        e.DataRow("编号") = Nothing
    Else
        Dim bh As String = Format(e.DataRow("日期"),"yyyyMMdd") \'取得编号的8位前缀
        If e.DataRow("编号").StartsWith(bh) = False \'如果编号的前8位不符
            Dim max As String
            Dim idx As Integer
            max = e.DataTable.Compute("Max(编号)","日期 = #" & e.DataRow("日期") & "# And [_Identify] <> " & e.DataRow("_Identify")) \'取得该天的最大编号
            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 If


如果要按系统当前日期自动编号怎么编码?????


[此贴子已经被作者于2015/8/5 7:58:00编辑过]

--  作者:foxlzd
--  发布时间:2015/8/5 6:52:00
--  
如果要按系统当前日期自动编号怎么编码?????
--  作者:ctyfrank
--  发布时间:2015/8/5 7:57:00
--  
不懂帮顶,不过我觉得弄一个三、四位的数字 例如0001这样的,每增加一条,这个数字加一,然后把这个数字放在当前日期后边,这样当做流水编码不行么?

话说做好了分享下,新手学习图片点击可在新窗口打开查看

--  作者:foxlzd
--  发布时间:2015/8/5 8:01:00
--  
我后来有也这样想。。可是没编出来。。
--  作者:狐表开发
--  发布时间:2015/8/5 8:10:00
--  
If e.DataCol.Name = "日期" Then
    If e.DataRow.IsNull("日期") Then
        e.DataRow("编号") = Nothing
    Else
        Dim bh As String = Format(e.DataRow("日期"),"yyyyMMdd") \'取得编号的8位前缀
        If e.DataRow("编号").StartsWith(bh) = False \'如果编号的前8位不符
            Dim max As String
            Dim idx As Integer
            max = e.DataTable.Compute("Max(编号)","日期 >= #" & Format(e.DataRow("日期"),"d") & " And 日期 < #" & Format(e.DataRow("日期"),"d").AddDays(1) & "# And [_Identify] <> " & e.DataRow("_Identify")) \'取得该天的最大编号
            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 If

--  作者:foxlzd
--  发布时间:2015/8/5 8:22:00
--  
图片点击可在新窗口打开查看
--  作者:狐表开发
--  发布时间:2015/8/5 8:23:00
--  
看不到图片
--  作者:狐表开发
--  发布时间:2015/8/5 8:28:00
--  
If e.DataCol.Name = "日期" Then
    If e.DataRow.IsNull("日期") Then
        e.DataRow("编号") = Nothing
    Else
        Dim bh As String = Format(e.DataRow("日期"),"yyyyMMdd") \'取得编号的8位前缀
        If e.DataRow("编号").StartsWith(bh) = False \'如果编号的前8位不符
            Dim max As String
            Dim idx As Integer
            Dim rq As Date = e.DataRow("日期")
            rq = rq.Date
            max = e.DataTable.Compute("Max(编号)","日期 >= #" & rq & "# And 日期 < #" & rq.AddDays(1) & "# And [_Identify] <> " & e.DataRow("_Identify")) \'取得该天的最大编号
            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
[此贴子已经被作者于2015/8/5 8:30:15编辑过]

--  作者:大红袍
--  发布时间:2015/8/5 9:10:00
--  

DataRowAdded事件

 

Dim bh As String = Format(Date.Today, "yyyyMMdd-") \'取得编号的8位前缀

Dim max As String
Dim idx As Integer
max = e.DataTable.Compute("Max(第一列)","第一列 like \'" & bh &"%\'") \'取得该天的最大编号
If max > "" Then \'如果存在最大编号
    idx = CInt(max.Substring(bh.length,3)) + 1 \'获得最大编号的后三位顺序号,并加1
Else
    idx = 1 \'否则顺序号等于1
End If
e.DataRow("第一列") = bh & Format(idx,"000")