以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  关于使用筛选树后,订单流水号的问题!  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=135563)

--  作者:watchbird
--  发布时间:2019/5/29 14:38:00
--  关于使用筛选树后,订单流水号的问题!
我采用以下程序根据下单时间自动生成订单号:
If e.DataCol.Name = "下单时间" Then
    If e.DataRow.IsNull("下单时间") Then
        e.DataRow("流水号") = Nothing
    Else
        Dim d As Date = e.DataRow("下单时间")
        Dim y As Integer = d.Year
        Dim m As Integer = d.Month
        Dim Days As Integer = Date.DaysInMonth(y,m)
        Dim fd As Date = New Date(y,m,1) \'获得该月的第一天
        Dim ld As Date = New Date(y,m,Days) \'获得该月的最后一天
        Dim bh As String = Format(d,"yyyyMM") \'生成编号的前6位,4位年,2位月.
        If e.DataRow("流水号").StartsWith(bh) = False \'如果编号的前6位不符
            Dim max As String
            Dim idx As Integer
               max = e.DataTable.Compute("Max(流水号)","下单时间>= #" & fd & "# And 下单时间 < #" & ld.adddays(1) & "# And [_Identify] <> " & e.DataRow("_Identify")) \'取得该月的最大编号
            If max > "" Then \'如果存在最大编号
                idx = CInt(max.Substring(7,4)) + 1 \'获得最大编号的后三位顺序号,并加1
            Else
                idx = 1 \'否则顺序号等于1
            End If
            e.DataRow("流水号") = bh & "-" & Format(idx,"0000")
        End If
    End If
End If

但发现使用筛选树,在非“加载所有行”状态下,增加订单时,以上语句生成的订单号没有按订单总表中最大数值+1的情况生成订单号,而是在筛选结果最大值的基础上进行+1.导致“子表有多个父行”的错误出现。例如:

在加载所有行状态下5月份最大订单号:201905-0271   那么再增加一个新订单订单号就是201905-0272
但在筛选了一个销售渠道后,此销售渠道的最大订单号是:201811-0032  那么再增加一个新订单,新订单号就变成了201811-0033 就导致跟前面的订单号重单了。

--  作者:有点甜
--  发布时间:2019/5/29 14:43:00
--  
If e.DataCol.Name = "下单时间" Then
    If e.DataRow.IsNull("下单时间") Then
        e.DataRow("流水号") = Nothing
    Else
        Dim d As Date = e.DataRow("下单时间")
        Dim y As Integer = d.Year
        Dim m As Integer = d.Month
        Dim Days As Integer = Date.DaysInMonth(y,m)
        Dim fd As Date = New Date(y,m,1) \'获得该月的第一天
        Dim ld As Date = New Date(y,m,Days) \'获得该月的最后一天
        Dim bh As String = Format(d,"yyyyMM") \'生成编号的前6位,4位年,2位月.
        If e.DataRow("流水号").StartsWith(bh) = False \'如果编号的前6位不符
            Dim max As String
            Dim idx As Integer
               max = e.DataTable.sqlCompute("Max(流水号)","下单时间>= #" & fd & "# And 下单时间 < #" & ld.adddays(1) & "# And [_Identify] <> " & e.DataRow("_Identify")) \'取得该月的最大编号
            If max > "" Then \'如果存在最大编号
                idx = CInt(max.Substring(7,4)) + 1 \'获得最大编号的后三位顺序号,并加1
            Else
                idx = 1 \'否则顺序号等于1
            End If
            e.DataRow("流水号") = bh & "-" & Format(idx,"0000")
e.DataRow.save
        End If
    End If
End If