以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  编号问题  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=194448)

--  作者:longyanlin
--  发布时间:2024/12/11 13:47:00
--  编号问题
请老师帮我看看,如下代码怎么编号是相同的,没有累加,该如果修改

Select e.DataCol.Name
    Case
"类别"
       
If e.DataRow.IsNull("类别") Then
            e.
DataRow("编号") = Nothing
        Else
            Dim
lb As String = e.DataRow("类别"
& "-"
            If
e.DataRow("编号").StartsWith(lb) = False \'如果单据编号前缀不符
               
Dim max As String
               
Dim idx As Integer

                max = e.DataTable.Compute("Max(编号)","类别 = \'" & lb & "\' And [_Identify] <> " & e.DataRow("_Identify")) \'取得该类别的最大编号
               
If max > "" Then \'如果存在最大编号
                    idx = CInt(max.Substring(
2,3)) + 1 \'获得最大编号的后三位顺序号,并加1
               
Else
                    idx =
1 \'否则顺序号等于1
               
End If
                e.
DataRow("编号") = lb & Format(idx,"000")
            End
If
        End
If
End
Select


--  作者:有点蓝
--  发布时间:2024/12/11 13:53:00
--  
请上传实例说明
--  作者:longyanlin
--  发布时间:2024/12/11 13:57:00
--  
图片点击可在新窗口打开查看就是多加个“-”符号
帮助文件里面的代码没有“-”

[此贴子已经被作者于2024/12/11 13:57:32编辑过]

--  作者:有点蓝
--  发布时间:2024/12/11 14:03:00
--  
idx = CInt(max.Substring(2,3)) + 1 
改为
idx = CInt(max.Substring(max.length-3)) + 1 
--  作者:longyanlin
--  发布时间:2024/12/11 14:12:00
--  
Select e.DataCol.Name
    Case "订单号"
        If e.DataRow.IsNull("订单号") Then
            e.DataRow("BOM序列") = Nothing
        Else
            Dim lb As String = e.DataRow("订单号") & "-" 
            If e.DataRow("BOM序列").StartsWith(lb) = False \'如果单据编号前缀不符
                Dim max As String
                Dim idx As Integer
                max = e.DataTable.Compute("Max(BOM序列)","订单号 = \'" & "\' And [_Identify] <> " & e.DataRow("_Identify")) \'取得该类别的最大编号
                If max > "" Then \'如果存在最大编号
                    idx = CInt(max.Substring(max.length-3)) + 1 \'获得最大编号的后三位顺序号,并加1
                Else
                    idx = 1 \'否则顺序号等于1
                End If
                e.DataRow("BOM序列") = lb & Format(idx,"000")
            End If
        End If
End Select
引用4楼代码后还是出现相同的BOM序列

--  作者:有点蓝
--  发布时间:2024/12/11 14:28:00
--  
max = e.DataTable.Compute("Max(BOM序列)","订单号 = \'" & e.DataRow("订单号") & "\' And [_Identify] <> " & e.DataRow("_Identify")) \'取得该类别的最大编号