当前位置:   article > 正文

asp三级分销佣金/提成代码;_三级分销代码

三级分销代码
  1. '--------------------------------
  2. '参数uid为用户id,total为消费金额;
  3. '--------------------------------
  4. sub commission(uid,total)
  5. dim sql,rs,pid1,pid2,pid3
  6. sql="select PID from idea_User where id="&uid
  7. set rs = Server.CreateObject("ADODB.RecordSet")
  8. rs.Open sql,conn,1,1
  9. if not rs.EOF Then
  10. pid1=rs("PID")
  11. else
  12. pid1=0
  13. end if
  14. rs.close
  15. if pid1>0 then
  16. conn.Execute("update idea_user set balance=balance+("&total&"*0.5) where id="&pid1)
  17. sql="select pid from idea_user where id="&pid1
  18. rs.open sql,conn,1,1
  19. if not rs.EOF then
  20. pid2=rs("PID")
  21. else
  22. pid2=0
  23. end if
  24. rs.Close
  25. end if
  26. If pid2>0 then
  27. conn.Execute("update idea_user set balance=balance+("&total&"*0.3) where id="&pid2)
  28. sql="select pid from idea_user where id="&pid2
  29. rs.open sql,conn,1,1
  30. if not rs.EOF then
  31. pid3=rs("PID")
  32. else
  33. pid3=0
  34. end if
  35. rs.Close
  36. end if
  37. If pid3>0 then
  38. conn.Execute("update idea_user set balance=balance+("&total&"*0.2) where id="&pid3)
  39. end if
  40. set rs=nothing
  41. Response.Write("success")
  42. end sub

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/403721
推荐阅读
相关标签
  

闽ICP备14008679号