Rss & SiteMap

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

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

标题:编号问题

1楼
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

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

[此贴子已经被作者于2024/12/11 13:57:32编辑过]
4楼
有点蓝 发表于:2024/12/11 14:03:00
idx = CInt(max.Substring(2,3)) + 1 
改为
idx = CInt(max.Substring(max.length-3)) + 1 
5楼
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序列
6楼
有点蓝 发表于:2024/12/11 14:28:00
max = e.DataTable.Compute("Max(BOM序列)","订单号 = '" & e.DataRow("订单号") & "' And [_Identify] <> " & e.DataRow("_Identify")) '取得该类别的最大编号
共6 条记录, 每页显示 10 条, 页签: [1]

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

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