Case "会员折扣"
If e.DataRow("会员折扣") = "vip666" Then
If e.DataTable.Find("会员折扣='vip666' and _SortKey < " & e.DataRow("_SortKey") ) Is Nothing Then
e.DataRow("优惠金额")=1000
Else
e.DataRow("优惠金额")=100
End If
Dim je As Integer = e.DataRow("消费金额")- e.DataRow("优惠金额")
If je < 0 Then je = 0
e.DataRow("收款")= je
Else If e.DataRow("会员折扣") = "会员折扣" Then
e.DataRow("优惠金额")=0
e.DataRow("收款")= e.DataRow("消费金额")
End If
Dim dr As DataRow
Dim drs As List(of DataRow)
dr = e.DataTable.Find("[_SortKey] < " & e.DataRow("_SortKey"), "[_SortKey] Desc") '找出上一行
If dr Is Nothing Then '如果没有找到上一行,说明本行就是第一行
If e.DataRow("会员折扣") = "积分折扣" Then
e.DataRow("可用积分") = 0 'e.DataRow("本次积分") - e.DataRow("兑换积分")
Else
e.DataRow("可用积分") = e.DataRow("本次积分")
End If
dr = e.DataRow
End If
drs = e.DataTable.Select("[_SortKey] >= " & dr("_SortKey"), "[_SortKey]")
For i As Integer = 1 To drs.Count - 1 '重算余下行的余额
If drs(i)("会员折扣") = "积分折扣" Then
drs(i)("可用积分") = drs(i-1)("可用积分") + drs(i-1)("本次积分") - drs(i)("兑换积分")
drs(i)("优惠金额")=0
'If e.DataRow("可用积分") > 0 Then
drs(i)("积分折现")=drs(i)("可用积分")/100
drs(i)("兑换积分")=drs(i)("可用积分")
drs(i)("收款")= drs(i)("消费金额")- drs(i)("积分折现")
Else
drs(i)("可用积分") = drs(i-1)("可用积分") + drs(i-1)("本次积分")
End If
Next