Foxtable(狐表)用户栏目专家坐堂 → 如何对编号规则的进一步修改


  共有3877人关注过本帖树形打印复制链接

主题:如何对编号规则的进一步修改

帅哥哟,离线,有人找我吗?
有点甜
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2014/5/25 11:41:00 [显示全部帖子]

Select e.DataCol.Name '自动生成子编码
    Case  "编号"
        If e.DataRow.IsNull("编号") Then
            e.DataRow("子编号") = Nothing
        Else
            Dim bh As  String = e.DataRow("编号")
            If e.DataRow("子编号").StartsWith(bh) = False  '如果子编号前缀不符
                Dim max  As  String
                Dim idx  As  Integer
                Dim count As Integer = e.DataTable.Compute("Count(_Identify)","编号 = '" & bh  & "' And [_Identify] <> " & e.DataRow("_Identify")) 
                If count > 1 Then
                   
                    max = e.DataTable.Compute("Max(子编号)","编号 = '" & bh  & "' And [_Identify] <> " & e.DataRow("_Identify")) '取得该类别的最大编号
                    If max > ""  Then  '如果存在最大编号
                        Dim l As Integer = bh.Length
                        idx = CInt(max.Substring(l,3)) + 1  '获得最大编号的后两位顺序号,并加1
                    Else
                        idx = 1  '否则顺序号等于1
                    End  If
                    e.DataRow("子编号") = bh & Format(idx,"000")
                End If
            End  If
        End If

 回到顶部
帅哥哟,离线,有人找我吗?
有点甜
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2014/5/25 14:54:00 [显示全部帖子]

Select e.DataCol.Name '自动生成子编码
    Case  "编号"
        If e.DataRow.IsNull("编号") Then
            e.DataRow("子编号") = Nothing
        Else
            Dim bh As  String = e.DataRow("编号")
            If e.DataRow("子编号").StartsWith(bh) = False  '如果子编号前缀不符
                Dim max  As  String
                Dim idx  As  Integer
                Dim count As Integer = e.DataTable.Compute("Count(_Identify)","编号 = '" & bh  & "' And [_Identify] <> " & e.DataRow("_Identify")) 
                If count > 0 Then
                   
                    max = e.DataTable.Compute("Max(子编号)","编号 = '" & bh  & "' And [_Identify] <> " & e.DataRow("_Identify")) '取得该类别的最大编号
                    If max > ""  Then  '如果存在最大编号
                        Dim l As Integer = bh.Length
                        idx = CInt(max.Substring(l,3)) + 1  '获得最大编号的后两位顺序号,并加1
                    Else
                        idx = 1  '否则顺序号等于1
                    End  If
                    e.DataRow("子编号") = bh & Format(idx,"000")
                End If
            End  If
        End If

 回到顶部
帅哥哟,离线,有人找我吗?
有点甜
  3楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2014/5/25 15:16:00 [显示全部帖子]

回复10楼,不明白你的意思,是不是这样?不行,就上传例子。

 

Select e.DataCol.Name '自动生成子编码
    Case  "编号"
        If e.DataRow.IsNull("编号") Then
            e.DataRow("子编号") = Nothing
        Else
            Dim bh As  String = e.DataRow("编号")
            If e.DataRow("子编号").StartsWith(bh) = False  '如果子编号前缀不符
                Dim max  As  String
                Dim idx  As  Integer
                Dim count As Integer = e.DataTable.sqlCompute("Count(_Identify)","编号 = '" & bh  & "' And [_Identify] <> " & e.DataRow("_Identify")) 
                If count > 0 Then
                   
                    max = e.DataTable.sqlCompute("Max(子编号)","编号 = '" & bh  & "' And [_Identify] <> " & e.DataRow("_Identify")) '取得该类别的最大编号
                    If max > ""  Then  '如果存在最大编号
                        Dim l As Integer = bh.Length
                        idx = CInt(max.Substring(l,3)) + 1  '获得最大编号的后两位顺序号,并加1
                    Else
                        idx = 1  '否则顺序号等于1
                    End  If
                    e.DataRow("子编号") = bh & Format(idx,"000")
                End If
            End  If
        End If


 回到顶部
帅哥哟,离线,有人找我吗?
有点甜
  4楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2014/5/25 16:26:00 [显示全部帖子]

 

msql.dll

 

 

 下载信息  [文件大小:   下载次数: ]
图片点击可在新窗口打开查看点击浏览该文件:mysql.data.rar


 回到顶部
帅哥哟,离线,有人找我吗?
有点甜
  5楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2014/5/26 11:28:00 [显示全部帖子]

这个意思?

 

Select e.DataCol.Name '自动生成子编码
    Case  "编号"
        If e.DataRow.IsNull("编号") Then
            e.DataRow("子编号") = Nothing
        Else
            Dim bh As  String = e.DataRow("编号")
            If e.DataRow("子编号").StartsWith(bh) = False  '如果子编号前缀不符
                Dim max  As  String
                Dim idx  As  Integer
                Dim count As Integer = e.DataTable.sqlCompute("Count(_Identify)","OrderNumber = '" & bh  & "' And [_Identify] <> " & e.DataRow("_Identify")) 
                If count > 0 Then
                   
                    max = e.DataTable.sqlCompute("Max(子编号)","OrderNumber = '" & bh  & "' And [_Identify] <> " & e.DataRow("_Identify")) '取得该类别的最大编号
                    If max > ""  Then  '如果存在最大编号
                        Dim l As Integer = bh.Length
                        idx = CInt(max.Substring(l,3)) + 1  '获得最大编号的后两位顺序号,并加1
                    Else
                        idx = 1  '否则顺序号等于1
                    End  If
                    e.DataRow("子编号") = bh & Format(idx,"000")
                End If
            End  If
        End If

[此贴子已经被作者于2014-5-26 11:28:19编辑过]

 回到顶部