请问如果a用户登录就用当天日期-000 作为编号,b用户用当天日期-100作为编号..o.
例如a用户:20160527-0001 20160527-0002
b用户:20160527-1001 20160527-1002
........................
请问如何修改下面代码才能使得报价单编号不重复
If e.DataCol.Name = "报价日期" Then
If e.DataRow.IsNull("报价日期") Then
e.DataRow("报价单编号") = Nothing
Else
Dim bh As String = Format(e.DataRow("报价日期"),"yyyyMMdd") '取得编号的8位前缀
If e.DataRow("报价单编号").StartsWith(bh) = False '如果编号的前8位不符
Dim max As String
Dim idx As Integer
max = e.DataTable.Compute("Max(报价单编号)","报价日期 = #" & e.DataRow("报价日期") & "# And [_Identify] <> " & e.DataRow("_Identify")) '取得该天的最大编号
If max > "" Then '如果存在最大编号
idx = CInt(max.Substring(9,4)) + 1 '获得最大编号的后三位顺序号,并加1
Else
idx = 1 '否则顺序号等于1
End If
If user.name = "a"
e.DataRow("报价单编号") = bh & "-" & Format(idx,"0000")
Else If user.name = "b"
e.DataRow("报价单编号") = bh & "-" & Format(idx,"1000")
Else If user.name = "c"
e.DataRow("报价单编号") = bh & "-" & Format(idx,"2000")
Else
e.DataRow("报价单编号") = bh & "-" & Format(idx,"8000")
End If
End If
End If
End If
[此贴子已经被作者于2016/5/27 14:14:48编辑过]