以文本方式查看主题

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

--  作者:seal51
--  发布时间:2015/9/13 10:44:00
--  [求助]编号求助

订单主表有个订单编号, 订单明细表通过订单编号与订单主表关联
现在想在订单明细表里加入一个订单明细号

比如订单编号是A001
那么订单明细号就是A001-01, A001-02,....
订单编号是A002
那么订单明细号就是A002-01, A002-02...
以此类推
如何实现


--  作者:seal51
--  发布时间:2015/9/13 11:03: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