购物车功能实现

23 篇文章 3 订阅

表有汇PC端购物车功能实现


加入购物车后的结算功能

购物车页面:

   

购物车页面html代码:

[html]  view plain  copy
  1. <div class="cart_box">  
  2.       
  3.     <!--购物车-->  
  4.     <h1 class="main_tit">  
  5.       <span><a onclick="DeleteClear(this,'/','0');" href="javascript:;">清空购物车</a></span>  
  6.       我的购物车<strong>Shopping Cart</strong>  
  7.     </h1>  
  8.     <div class="cart_step">  
  9.       <ul>  
  10.         <li class="selected"><span>1</span>放进购物车</li>  
  11.         <li><span>2</span>填写订单信息</li>  
  12.         <li class="last"><span>3</span>支付/确定订单</li>  
  13.       </ul>  
  14.     </div>  
  15.     <div class="line20"></div>  
  16.       
  17.     <table width="938" border="0" align="center" cellpadding="8" cellspacing="0" class="cart_table">  
  18.       <tbody><tr>  
  19.         <th width="64"></th>  
  20.         <th align="left">商品名称</th>  
  21.         <th width="110" align="center">颜色</th>  
  22.         <th width="80" align="center">积分</th>  
  23.         <th width="80" align="center">单价</th>  
  24.         <th width="80" align="center">数量</th>  
  25.         <!--<th width="80" align="center">优惠</th>-->  
  26.         <th width="100" align="center">金额小计</th>  
  27.         <th width="100" align="center">积分小计</th>  
  28.         <th width="50" align="center">操作</th>  
  29.       </tr>  
  30.         
  31.         
  32.       <tr>  
  33.         <td><a target="_blank" href="/goods/show-62.html"><img src="/upload/201505/04/201505041442488793.jpg" class="img"></a></td>  
  34.         <td><a target="_blank" href="/goods/show-62.html">韩国乐智迅时尚正品手表学生男表女表运动防水糖果色果冻表石英表</a></td>  
  35.             
  36.         <!--颜色-->  
  37.         <td align="center">黑色<input name="goods_color" type="hidden" value="黑色"></td>  
  38.   
  39.           <!--积分-->         
  40.        <td align="center">  
  41.             
  42.           +  
  43.             
  44.           10  
  45.         </td>  
  46.         <!--价格-->  
  47.         <td align="center">¥2600.00<input name="goods_price" type="hidden" value="2600.00"></td><!-- value=用户价格 -->  
  48.         <!--数量-->  
  49.         <td align="center">  
  50.           <a href="javascript:;" class="reduce" title="减一" onclick="CartComputNum(this, '/', '62', -1);">减一</a>  
  51.           <input type="text" name="goods_quantity" class="input" style="width:30px;text-align:center;ime-mode:Disabled;" value="1" onblur="CartAmountTotal(this, '/', '62');" onkeypress="return (/[\d]/.test(String.fromCharCode(event.keyCode)))">  
  52.           <a href="javascript:;" class="subjoin" title="加一" onclick="CartComputNum(this,'/', '62', 1);">加一</a>  
  53.         </td>  
  54.         <!--优惠-->  
  55.         <!--<td align="center">¥<label name="discount_amount"></label></td>-->  
  56.         <!--金额小记-->                                                                       <!--   string转换成int   -->  
  57.         <td align="center"><font color="#FF0000" size="2"><label name="real_amount">2600</label></font></td>  
  58.         <td align="center">  
  59.           <font color="#FF0000" size="2">  
  60.               
  61.             +  
  62.               
  63.             <label name="point_count">10</label>  
  64.           </font>  
  65.         </td>  
  66.         <td align="center"><a onclick="DeleteCart(this,'/','62');" href="javascript:;">删除</a></td>  
  67.       </tr>  
  68.              
  69.           
  70.       <tr>  
  71.         <th colspan="9" align="right">  
  72.           商品件数:1 件    商品总金额(不含运费):<font color="#FF0000" size="2">¥2600</font>元    总积分:<font color="#FF0000" size="2">10分</font>  
  73.         </th>  
  74.       </tr>  
  75.         
  76.     </tbody></table>  
  77.     <div class="line20"></div>  
  78.     <div class="right">  
  79.       <a class="btn" href="/index.html">继续购物</a>  
  80.         
  81.       <a class="btn btn-success marL10" href="/shopping/confirm.html">马上去结算</a>  
  82.         
  83.     </div>  
  84.     <div class="clear"></div>  
  85.     <!--/购物车-->  
  86.       
  87.       
  88.   </div>  

对照一下商品的颜色、数量等是否选择正确,如果无误可以点击马上结算按钮,进入订单信息界面,填写信息

订单信息界面:


订单信息页面html代码:

[html]  view plain  copy
  1. <div class="cart_box">  
  2.       
  3.     <link rel="stylesheet" href="/css/validate.css">  
  4.     <script type="text/javascript" src="/scripts/jquery/jquery.form.min.js"></script>  
  5.     <script type="text/javascript" src="/scripts/jquery/Validform_v5.3.2_min.js"></script>  
  6.     <script type="text/javascript">  
  7.         $(function () {  
  8.             //表单提交  
  9.             AjaxInitForm('order_form', 'btnSubmit', 0);  
  10.         });  
  11.     </script>  
  12.     <!--结算中心-->  
  13.     <h1 class="main_tit">  
  14.       <span><a href="/shopping/cart.html">返回</a></span>  
  15.       确认订单信息<strong>Confirm order</strong>  
  16.     </h1>  
  17.   
  18.     <div class="cart_step">  
  19.       <ul>  
  20.         <li class="item"><span>1</span>放进购物车</li>  
  21.         <li class="selected"><span>2</span>填写订单信息</li>  
  22.         <li class="last"><span>3</span>支付/确定订单</li>  
  23.       </ul>  
  24.     </div>  
  25.   
  26.     <div class="line20"></div>  
  27.       
  28.     <form name="order_form" id="order_form" url="/tools/submit_ajax.ashx?action=order_save">  
  29.     <h3 class="bar_tit">1、收货信息</h3>  
  30.     <div class="form_box">  
  31.       <dl>  
  32.         <dt>收货人姓名:</dt>  
  33.         <dd><input name="accept_name" id="accept_name" type="text" class="input txt wide" value="发vdxgsd" datatype="s2-20" sucmsg=" "><span class="Validform_checktip">*收货人姓名</span></dd>  
  34.       </dl>  
  35.       <dl>  
  36.         <dt>收货地址:</dt>  
  37.         <dd><input name="address" id="address" type="text" class="input txt" value="广东省佛山市" datatype="*2-100" sucmsg=" " style="width:300px;"><span class="Validform_checktip">*收货人的详细地址</span></dd>  
  38.       </dl>  
  39.       <dl>  
  40.         <dt>邮政编码:</dt>  
  41.         <dd><input name="post_code" id="post_code" type="text" class="input txt"><span class="Validform_checktip">所在地区的邮政编码,非必填</span></dd>  
  42.       </dl>  
  43.       <dl>  
  44.         <dt>手机号码:</dt>  
  45.         <dd><input name="mobile" id="mobile" type="text" class="input txt" value="13256202154" datatype="m" sucmsg=" "><span class="Validform_checktip">*收货人的手机号码</span></dd>  
  46.       </dl>  
  47.       <dl>  
  48.         <dt>联系电话:</dt>  
  49.         <dd><input name="telphone" id="telphone" type="text" class="input txt" value=""><span class="Validform_checktip">收货人的联系电话,非必填</span></dd>  
  50.       </dl>  
  51.     </div>  
  52.       
  53.     <div class="line20"></div>  
  54.     <h3 class="bar_tit">2、支付方式</h3>  
  55.     <ul class="item_box">  
  56.        <!--取得一个DataTable-->  
  57.         
  58.       <li>  
  59.           
  60.         <label><input name="payment_id" type="radio" onclick="PaymentAmountTotal(this);" value="1"><input name="payment_price" type="hidden" value="0.00">货到付款  
  61.           
  62.         <em>手续费:0.00元</em></label>  
  63.       </li>  
  64.         
  65.       <li>  
  66.           
  67.         <label><input name="payment_id" type="radio" onclick="PaymentAmountTotal(this);" value="2"><input name="payment_price" type="hidden" value="0.00">账户余额  
  68.           
  69.         <em>手续费:0.00元</em></label>  
  70.       </li>  
  71.         
  72.       <li>  
  73.           
  74.         <label><input name="payment_id" type="radio" onclick="PaymentAmountTotal(this);" value="3"><input name="payment_price" type="hidden" value="0.00">支付宝  
  75.           
  76.         <em>手续费:0.00元</em></label>  
  77.       </li>  
  78.         
  79.       <li>  
  80.           
  81.         <label><input name="payment_id" type="radio" onclick="PaymentAmountTotal(this);" value="4" datatype="*" sucmsg=" "><input name="payment_price" type="hidden" value="0.00">财付通  
  82.           
  83.         <em>手续费:0.00元</em><span class="Validform_checktip"></span></label>  
  84.       </li>  
  85.         
  86.     </ul>  
  87.       
  88.     <div class="line20"></div>  
  89.     <h3 class="bar_tit">3、配送方式</h3>  
  90.     <ul class="item_box">  
  91.        <!--取得一个DataTable-->  
  92.         
  93.       <li>  
  94.           
  95.         <label><input name="express_id" type="radio" onclick="FreightAmountTotal(this);" value="1"><input name="express_price" type="hidden" value="20.00">顺丰快递  
  96.           
  97.         <em>费用:20.00元</em></label>  
  98.       </li>  
  99.         
  100.       <li>  
  101.           
  102.         <label><input name="express_id" type="radio" onclick="FreightAmountTotal(this);" value="2" datatype="*" sucmsg=" "><input name="express_price" type="hidden" value="14.00">韵达快递  
  103.           
  104.         <em>费用:14.00元</em><span class="Validform_checktip"></span></label>  
  105.       </li>  
  106.         
  107.     </ul>  
  108.       
  109.     <div class="line20"></div>  
  110.     <h3 class="bar_tit">4、商品清单</h3>  
  111.     <table width="938" border="0" align="center" cellpadding="8" cellspacing="0" class="cart_table">  
  112.       <tbody><tr>  
  113.         <th width="64"></th>  
  114.         <th align="left">商品名称</th>  
  115.         <th width="110" align="center">颜色</th>  
  116.         <th width="80" align="center">积分</th>  
  117.         <th width="80" align="center">单价</th>  
  118.         <th width="80" align="center">数量</th>  
  119.         <th width="80" align="center">优惠</th>  
  120.         <th width="100" align="center">金额小计</th>  
  121.         <th width="100" align="center">积分小计</th>  
  122.       </tr>  
  123.         
  124.       <tr>  
  125.         <td><a target="_blank" href="/goods/show-63.html"><img src="/upload/201505/04/201505041444321122.jpg" class="img"></a></td>  
  126.         <td><a target="_blank" href="/goods/show-63.html">卡帝仕正品超薄运动手表防水手表户外手表大表盘男表时装表</a></td>  
  127.         <!--颜色-->  
  128.         <td align="center"><input name="goods_color" type="hidden" value=""></td>  
  129.   
  130.         <td align="center">  
  131.             
  132.           +  
  133.             
  134.           10  
  135.         </td>  
  136.         <td align="center">¥5500.00<input name="goods_price" type="hidden" value="5500.00"></td>  
  137.         <td align="center">1</td>  
  138.         <td align="center"><label name="discount_amount">5500</label></td>  
  139.         <td align="center"><font color="#FF0000" size="2"><label name="real_amount">5500</label></font></td>  
  140.         <td align="center">  
  141.           <font color="#FF0000" size="2">  
  142.               
  143.             +  
  144.               
  145.             <label name="point_count">10</label>  
  146.             </font>  
  147.         </td>  
  148.         <td><input id="car_id" name="car_id" type="hidden" value="63"></td>  
  149.       </tr>  
  150.         
  151.     </tbody></table>  
  152.       
  153.     <div class="line20"></div>  
  154.     <h3 class="bar_tit">5、结算信息</h3>  
  155.     <div>  
  156.       <div class="left">  
  157.         <h4>订单留言<span>字数控制在100个字符内</span></h4>  
  158.         <textarea name="message" class="input" style="width:250px;height:35px;"></textarea>  
  159.       </div>  
  160.         
  161.       <div class="right" style="text-align:right;line-height:40px;">  
  162.         商品件数:<font color="#FF0000">1</font> 件     总积分:<font color="#FF0000">10</font> 分     商品金额:<font color="#FF0000"><label id="goods_amount">5500</label></font>   +   运费:<font color="#FF0000"><label id="express_fee">0.00</label></font>   +   支付手续费:<font color="#FF0000"><label id="payment_fee">0.00</label></font>  
  163.           
  164.         <br>  
  165.         <b class="font18">应付总金额:<font color="#FF0000"><label id="order_amount">5500</label></font></b>  
  166.       </div>  
  167.     </div>  
  168.   
  169.     <div class="line20"></div>  
  170.     <div class="right">  
  171.       <a class="btn" href="/shopping/cart.html">返回修改</a>  
  172.         
  173.       <input id="btnSubmit" name="btnSubmit" type="submit" value="确认提交" class="btn btn-success marL10">  
  174.         
  175.     </div>  
  176.     <div class="clear"></div>  
  177.     </form>  
  178.     <!--/结算中心-->  
  179.       
  180.   </div>  

填写好必要的信息(如:收货人姓名、地址、手机号码、快递、付款方式等),点击确认提交按钮进入支付界面;

支付界面:

支付页面html代码:

     

[html]  view plain  copy
  1. <div class="cart_box">  
  2.     <h1 class="main_tit">  
  3.       支付中心<strong>Payment</strong>  
  4.     </h1>  
  5.       
  6.     <!--提交支付-->  
  7.     <form id="pay_form" name="pay_form" method="post" action="/api/payment/balance/index.aspx" target="_blank">  
  8.     <input id="pay_order_no" name="pay_order_no" type="hidden" value="b15061907244648">      <!--hidden-->  
  9.     <input id="pay_order_amount" name="pay_order_amount" type="hidden" value="2614.00">  
  10.     <input id="pay_user_name" name="pay_user_name" type="hidden" value="admin00">  
  11.       
  12.     <div class="cart_step">  
  13.       <ul>  
  14.         <li><span>1</span>放进购物车</li>  
  15.         <li class="item"><span>2</span>填写订单信息</li>  
  16.         <li class="last selected"><span>3</span>支付/确定订单</li>  
  17.       </ul>  
  18.     </div>  
  19.     <div class="form_box">  
  20.       <dl>  
  21.         <dt>订单号:</dt>  
  22.         <dd>b15061907244648</dd>  
  23.       </dl>  
  24.       <dl>  
  25.         <dt>收货人姓名:</dt>  
  26.         <dd>发vdxgsd</dd>  
  27.       </dl>  
  28.       <dl>  
  29.         <dt>送货地址:</dt>  
  30.         <dd>广东省佛山市</dd>  
  31.       </dl>  
  32.       <dl>  
  33.         <dt>手机号码:</dt>  
  34.         <dd>13256202154</dd>  
  35.       </dl>  
  36.       <dl>  
  37.         <dt>固定电话:</dt>  
  38.         <dd></dd>  
  39.       </dl>  
  40.       <dl>  
  41.         <dt>备注留言:</dt>  
  42.         <dd>都很健康</dd>  
  43.       </dl>  
  44.       <dl>  
  45.         <dt>支付金额:</dt>  
  46.         <dd>2614.00</dd>  
  47.       </dl>  
  48.       <dl>  
  49.         <dt>支付方式:</dt>  
  50.         <dd>账户余额</dd>  
  51.       </dl>  
  52.       <dl>  
  53.         <dt></dt>  
  54.         <dd><input id="btnSubmit" name="btnSubmit" type="submit" class="btn_submit" value="确认支付"></dd>  
  55.       </dl>  
  56.     </div>  
  57.     <input id="pay_subject" name="pay_subject" type="hidden" value="购买商品">  
  58.       
  59.     </form>  
  60.     <!--提交支付-->  
  61.       
  62.     <div class="clear"></div>  
  63.   </div>  

在确认信息无误后,点击确认支付按钮;如果正常,就会提示支付成功

成功提示:


提示html代码:

[html]  view plain  copy
  1. <div class="cart_box">  
  2.     <h1 class="main_tit">  
  3.       支付中心<strong>Payment</strong>  
  4.     </h1>  
  5.       
  6.     <!--支付成功-->  
  7.     <div class="msg_tips">  
  8.       <div class="ico"></div>  
  9.       <div class="msg">  
  10.         <strong>支付成功啦!</strong>  
  11.         <p>恭喜您,您的支付已经成功!</p>  
  12.         <p>您可以点击这里进入<a href="/user/center/index.html">会员中心</a>查看订单状态!</p>  
  13.         <p>如有其它问题,请立即与我们客服人员联系。</p>  
  14.       </div>  
  15.     </div>  
  16.     <!--支付成功-->  
  17.       
  18.     <div class="clear"></div>  
  19.   </div>  


当然也可以在商品介绍页面点击立刻购买按钮,从而进入填写订单信息页面:(步骤同上)

商品介绍页html代码:

[html]  view plain  copy
  1. <dl class="head green">  
  2.                     <dt>购物商城</dt>  
  3.                     <dd>  
  4.                         <span>当前位置:<a href="<%linkurl("index","")%>">首页 </a>><a href="<%linkurl("goods","")%>">购物商城</a>{category_nav}</span>  
  5.                     </dd>  
  6.                 </dl>  
  7.                 <div class="line20">  
  8.                 </div>  
  9.                 <!--商品图片-->  
  10.                 <div class="left294">  
  11.                     <!--幻灯片开始-->  
  12.                     <div class="pictureDIV">  
  13.                         <div id="preview" class="spec-preview">  
  14.                             <span class="jqzoom">  
  15.                                 <img /></span>  
  16.                         </div>  
  17.                         <!--缩图开始-->  
  18.                         <div class="spec-scroll">  
  19.                             <a class="prev"><</a> <a class="next">></a>  
  20.                             <div class="items">  
  21.                                 <ul>  
  22.                                     <%if(model.albums!=null)%>  
  23.                                     <%foreach(DTcms.Model.goods_albums modelt in model.albums)%>  
  24.                                     <li>  
  25.                                         <img bimg="{modelt.original_path}" src="{modelt.thumb_path}" onmousemove="preview(this);" /></li>  
  26.                                     <%/foreach%>  
  27.                                     <%/if%>  
  28.                                 </ul>  
  29.                             </div>  
  30.                         </div>  
  31.                         <!--缩图结束-->  
  32.                     </div>  
  33.                     <!--幻灯片结束-->  
  34.                 </div>  
  35.                 <!--/商品图片-->  
  36.                 <!--商品属性-->  
  37.                 <div class="pro-attr right356">  
  38.                     <h1>  
  39.                         {model.title}</h1>  
  40.                     <div class="pro-items">  
  41.                         <dl>  
  42.                             <dt>商品货号:</dt>  
  43.                             <dd>  
  44.                                 {model.goods_no}  
  45.                                 </dd>  
  46.                         </dl>  
  47.                         <dl>  
  48.                             <dt>销售价格:</dt>  
  49.                             <dd><b class="red">¥{model.sell_price}</b></dd>  
  50.                         </dl>  
  51.                         <dl>  
  52.                             <dt>颜色选择:</dt>  
  53.                             <%if(yanse!=null)%>                              
  54.                             <dd>  
  55.                             <%for(int i=0;i<yanse.Length;i++)%>  
  56.                             <a id="<%=str[i]%>" href="javascript:void()" style="border: 1px solid #CCCCCC; margin-top:10px;"  
  57.                              onclick="selected(this.id);">  
  58.                             <b class="green" style="font-family:宋体; font-size:8;"><%=yanse[i]%></b>  
  59.                             </a>    
  60.                             <%/for%>                              
  61.                             </dd>                              
  62.                             <%else%>  
  63.                             <dd><b class="red">抱歉,该商品没有颜色选择</b></dd>  
  64.                             <%/if%>  
  65.                               <script>  
  66.                                   var count = 0;   
  67.                                   function selected(id) {  
  68.                                                                              
  69.                                       if (count != id) {  
  70.                                           $('#goods_color').val(id);  
  71.                                           var kk = document.getElementById(id);  
  72.                                           kk.style.border = "2px solid red";  
  73.                                             
  74.                                           if (parseInt(count) != 0) {  
  75.                                               var hh = document.getElementById(count);  
  76.                                               hh.style.border = "1px solid #CCCCCC";  
  77.                                           }  
  78.                                           count = id;                                   
  79.                                       }  
  80.                                       else {  }                                        
  81.                                   }  
  82.                               </script>  
  83.                         </dl>  
  84.                         <!--<dl>  
  85.                             <dt>会员价格:</dt>  
  86.                             <dd>  
  87.                                 <%set decimal user_price=get_user_goods_price(model.id)%>  
  88.                                 <%if(user_price>-1)%>  
  89.                                 <b class="red">¥{user_price}</b>  
  90.                                 <%else%>  
  91.                                 登录可见  
  92.                                 <%/if%>  
  93.                             </dd>  
  94.                         </dl>-->  
  95.                         <dl>  
  96.                             <dt>上架时间:</dt>  
  97.                             <dd>  
  98.                                 {model.add_time}</dd>  
  99.                         </dl>  
  100.                     </div>  
  101.                     <div class="pro-btns">  
  102.                         <div class="input-box">  
  103.                             购买数量:<input name="goods_id" id="goods_id" type="hidden" value="{model.id}" /><input  
  104.                             <input name="goods_color" id="goods_color" type="hidden" value="" />  
  105.                             <input type="text" name="goods_quantity" id="goods_quantity" value="1" class="txt" style="ime-mode: disabled" />  
  106.                         </div>  
  107.                         <div class="btn-box">  
  108.                             <%if({model.stock_quantity}>0)%>  
  109.                             <a href="javascript:void(0);" class="add" onclick="CartAdd(this, '{config.webpath}', 0, '<%linkurl("shopping","cart")%>');">  
  110.                                 加入购物车</a> <a href="javascript:void(0);" class="buy" onclick="CartAdd(this, '{config.webpath}', 1, '<%linkurl("shopping","confirm")%>');">  
  111.                                     立即购买</a>  
  112.                             <%else%>  
  113.                             <a title="该商品供货紧张,无法加入购物车" class="add-over">加入购物车</a> <a title="该商品供货紧张,无法立即购买" class="buy-over">  
  114.                                 立即购买</a>  
  115.                             <%/if%>  
  116.                         </div>  
  117.                     </div>  
  118.                     <div class="line10">  
  119.                     </div>  
  120.                     <!--分享-->  
  121.                     <%template src="_share2_js.html"%>  
  122.                     <!--/分享-->  
  123.                 </div>  
  124.                 <!--/商品属性-->  


 

购物车的结算功能的表和表的关系

购物车商品结算涉及到的表有:订单表(dt_orders)、订单商品表(dt_order_goods)、购物车表(dt_shoppingCar)、用户表(dt_users

订单表的字段有:订单id、订单号、交易号担保支付用到、用户ID、用户名、支付方式、支付手续费、支付状态1未支付2已支付、支付时间、快递ID、快递单号、物流费用、发货状态1未发货2已发货、发货时间、收货人姓名、邮政编码、联系电话、手机、所属省市区、收货地址、订单留言、订单备注/评估描述情况、应付商品总金额、实付商品总金额             

列名

数据类型

主键/外键

说明

id

int

主键

订单id

order_no

nvarchar

 

订单号

trade_no

nvarchar

 

交易号担保支付用到

user_id

int

外键

用户id

user_name

nvarchar

 

用户名

payment_id

int

 

支付方式

payment_fee

decimal

 

支付手续费

payment_status

tinyint

 

支付状态1未支付2已支付

payment_time

datetime

 

支付时间

express_id

int

外键

快递id

express_no

nvarchar

 

快递单号

express_fee

decimal

 

物流费用

express_status

tinyint

 

发货状态1未发货2已发货

express_time

datetime

 

发货时间

accept_name

nvarchar

 

收货人姓名

post_code

nvarchar

 

邮政编码

telphone

nvarchar

 

联系电话

mobile

nvarchar

 

手机

area

nvarchar

 

所属省市区

address

nvarchar

 

收货地址

message

nvarchar

 

订单留言

remark

nvarchar

 

订单备注/评估描述情况

payable_amount

decimal

 

应付商品总金额

real_amount

decimal

 

实付商品总金额

order_amount

decimal

 

订单总金额

订单商品表的字段有:自增id、订单id、商品id、商品名称、商品价格、实际价格、数量、颜色、积分

列名

数据类型

主键/外键

说明

id

int

主键

自增ID

order_id

int

外键

订单ID

goods_id

int

外键

商品ID

goods_title

nvarchar

 

商品标题

goods_price

decimal

 

商品价格

real_price

nvarchar

 

实际价格

quantity

nvarchar

 

数量

color

decimal

 

颜色

point

int

 

积分

         

用户表的字段有:用户id、用户组id、用户名、密码、6位随机字符串,加密用到、电子邮箱用户昵称、头像、性别、生日、联系电话、手机号码、QQ号码、联系地址、安全问题、问题答案、预存款、用户积分、经验值、用户状态、注册时间、注册IP、经度、纬度、城市、介绍、执照照片、场地照片、身份证号                                       

列名

数据类型

主键/外键

说明

id

int

主键

用户id

group_id

int

外键

用户组id

user_name

nvarchar(100)

 

用户名

password

nvarchar(100)

 

密码

salt

nvarchar(20)

 

6位随机字符串加密用到

email

nvarchar(50)

 

电子邮箱

nick_name

nvarchar(100)

 

用户昵称

avatar

nvarchar(255)

 

头像

sex

nvarchar(20)

 

性别

birthday

datetime

 

生日

telphone

nvarchar(50)

 

联系电话

mobile

nvarchar(20)

 

手机号码

qq

nvarchar(30)

 

QQ号码

address

nvarchar(255)

 

联系地址

safe_question

nvarchar(255)

 

安全问题

safe_answer

nvarchar(255)

 

问题答案

amount

decimal(9, 2)

 

预存款

point

int

 

用户积分

exp

int

 

经验值

status

tinyint

 

用户状态

reg_time

datetime

 

注册时间

reg_ip

nvarchar(30)

 

注册IP

longitude

nvarchar(100)

 

经度

latitude

nvarchar(100)

 

纬度

city

nvarchar(100)

 

城市

content

ntext

 

介绍

license_img

nvarchar(255)

 

执照照片

place_img

nvarchar(255)

 

场地照片

shenfenzheng

nvarchar(255)

 

身份证号

物流快递表的字段有:自增id、快递名称、物流编码、配送费用、快递网址、备注说明排序、是否不显示

列名

数据类型

主键/外键

说明

id

int

主键

自增ID

title

nvarchar

 

快递名称

express_code

nvarchar

 

物流编码

express_fee

decimal

 

配送费用

website

nvarchar

 

快递网址

remark

ntext

 

备注说明

sort_id

int

 

排序

is_lock

tinyint

 

是否不显示


关系图:


功能模块的具体实现:这个方式是利用dtcms3.0的二次开发,更多请浏览dtcms官方网站:http://www.dtcms.NET/news/show/97.aspx

购物车页面:‘马上结算’按钮

[html]  view plain  copy
  1. <a class="btn btn-success marL10" href="<%linkurl("shopping","confirm")%>">马上去结算</a>  
马上结算按钮的作用是跳转页面如上;

与form表单相对应的方法:

[javascript]  view plain  copy
  1. #region 保存用户订单OK=============可以了,把cooke换过来了================  
  2.         private void order_save(HttpContext context)  
  3.         {  
  4.             //获得传参信息  
  5.             int payment_id = DTRequest.GetFormInt("payment_id");   //支付ID  
  6.             int express_id = DTRequest.GetFormInt("express_id");   //快递ID  
  7.             string accept_name = Utils.ToHtml(DTRequest.GetFormString("accept_name"));  //收货人  
  8.             string post_code = Utils.ToHtml(DTRequest.GetFormString("post_code"));     //邮政  
  9.             string telphone = Utils.ToHtml(DTRequest.GetFormString("telphone"));       //电话  
  10.             string mobile = Utils.ToHtml(DTRequest.GetFormString("mobile"));           //手机  
  11.             string address = Utils.ToHtml(DTRequest.GetFormString("address"));         //地址  
  12.             string message = Utils.ToHtml(DTRequest.GetFormString("message"));          //留言  
  13.   
  14.             //获取订单配置信息  
  15.             Model.orderconfig orderConfig = new BLL.orderconfig().loadConfig();  
  16.   
  17.             //检查物流方式  
  18.             if (express_id == 0)  
  19.             {  
  20.                 context.Response.Write("{\"status\":0, \"msg\":\"对不起,请选择配送方式!\"}");  
  21.                 return;  
  22.             }  
  23.             Model.express expModel = new BLL.express().GetModel(express_id);  
  24.             if (expModel == null)  
  25.             {  
  26.                 context.Response.Write("{\"status\":0, \"msg\":\"对不起,配送方式不存在或已删除!\"}");  
  27.                 return;  
  28.             }  
  29.             //检查支付方式  
  30.             if (payment_id == 0)  
  31.             {  
  32.                 context.Response.Write("{\"status\":0, \"msg\":\"对不起,请选择支付方式!\"}");  
  33.                 return;  
  34.             }  
  35.             Model.payment payModel = new BLL.payment().GetModel(payment_id);  
  36.             if (payModel == null)  
  37.             {  
  38.                 context.Response.Write("{\"status\":0, \"msg\":\"对不起,支付方式不存在或已删除!\"}");  
  39.                 return;  
  40.             }  
  41.             //检查收货人  
  42.             if (string.IsNullOrEmpty(accept_name))  
  43.             {  
  44.                 context.Response.Write("{\"status\":0, \"msg\":\"对不起,请输入收货人姓名!\"}");  
  45.                 return;  
  46.             }  
  47.             //检查手机和电话  
  48.             if (string.IsNullOrEmpty(telphone) && string.IsNullOrEmpty(mobile))  
  49.             {  
  50.                 context.Response.Write("{\"status\":0, \"msg\":\"对不起,请输入收货人联系电话或手机!\"}");  
  51.                 return;  
  52.             }  
  53.             //检查地址  
  54.             if (string.IsNullOrEmpty(address))  
  55.             {  
  56.                 context.Response.Write("{\"status\":0, \"msg\":\"对不起,请输入详细的收货地址!\"}");  
  57.                 return;  
  58.             }  
  59.             //如果开启匿名购物则不检查会员是否登录  
  60.             int user_id = 0;  
  61.             int user_group_id = 0;  
  62.             string user_name = string.Empty;  
  63.             //检查用户是否登录  
  64.             Model.users userModel = new BasePage().GetUserInfo();  
  65.             if (userModel != null)  
  66.             {  
  67.                 user_id = userModel.id;  
  68.                 user_group_id = userModel.group_id;  
  69.                 user_name = userModel.user_name;  
  70.                 bool kkk = new BLL.shoppingcar().updateQuantity(user_id);  
  71.             }  
  72.             if (orderConfig.anonymous == 0 && userModel == null)  
  73.             {  
  74.                 context.Response.Write("{\"status\":0, \"msg\":\"对不起,用户尚未登录或已超时!\"}");  
  75.                 return;  
  76.             }  
  77.             //检查购物车商品  
  78.             //IList<Model.cart_items> iList = DTcms.Web.UI.ShopCart.GetList(user_group_id);  
  79.             DataTable data = new BLL.shoppingcar().getList(user_id).Tables[0];  //查询购物车  
  80.             if (data.Rows.Count < 0)  
  81.             {  
  82.                 context.Response.Write("{\"status\":0, \"msg\":\"对不起,购物车为空,无法结算!\"}");  
  83.                 return;  
  84.             }  
  85.             //统计购物车  
  86.             Model.car_total carModel = new Model.car_total();  
  87.   
  88.             BLL.shoppingcar carBll = new BLL.shoppingcar();  
  89.             string str = carBll.get_quantity(user_id);  
  90.             string[] ss = str.Split(';');//用;进行分割  
  91.   
  92.             //判断数量、积分、金额判断是否为空,如果为空整型的转化就会出错  
  93.             if (Convert.ToInt32(ss[0]) > 0)  
  94.             {  
  95.                 carModel.total_quantity = Convert.ToInt32(ss[0]);    //查询购物车商品件数  
  96.             }  
  97.             if (Convert.ToInt32(ss[1]) > 0)  
  98.             {  
  99.                 carModel.real_amount = Convert.ToInt32(ss[1]);       //查询购物车商品总金额  
  100.                 carModel.payable_amount = Convert.ToInt32(ss[1]);    //查询购物车商品总金额  
  101.             }  
  102.             if (Convert.ToInt32(ss[2]) > 0)  
  103.             {  
  104.                 carModel.total_point = Convert.ToInt32(ss[2]);       //查询购物车商品总积分  
  105.             }  
  106.   
  107.   
  108.             //保存订单=======================================================================  
  109.             Model.orders model = new Model.orders();  
  110.             model.order_no = "B" + Utils.GetOrderNumber(); //订单号B开头为商品订单  
  111.             model.user_id = user_id;   //用户id  
  112.             model.user_name = user_name;  //用户名  
  113.             model.payment_id = payment_id;  //支付方式id  
  114.             model.express_id = express_id;  //快递id  
  115.             model.accept_name = accept_name; //收货人  
  116.             model.post_code = post_code;  //邮编  
  117.             model.telphone = telphone;  //电话  
  118.             model.mobile = mobile;  //手机号码  
  119.             model.address = address;  //地址  
  120.             model.message = message;  //留言  
  121.             model.payable_amount = carModel.payable_amount;   //总金额   
  122.             model.real_amount = carModel.real_amount;   //实付金额  
  123.             model.express_status = 1;  
  124.             model.express_fee = expModel.express_fee; //物流费用  
  125.   
  126.             //提交订单后,就修改的数据库购物车表的有效否,不让以购买的商品显示,自己修改的  
  127.             Model.shoppingcar carmodel = new Model.shoppingcar();  
  128.             carmodel.user_id = userModel.id;  
  129.             BLL.shoppingcar car = new BLL.shoppingcar();  
  130.             bool bi = car.submitDelete(carmodel);  
  131.   
  132.             //如果是先款后货的话  
  133.             if (payModel.type == 1)  
  134.             {  
  135.                 model.payment_status = 1; //标记未付款  
  136.                 if (payModel.poundage_type == 1) //百分比  
  137.                 {  
  138.                     model.payment_fee = model.real_amount * payModel.poundage_amount / 100;  
  139.                 }  
  140.                 else //固定金额  
  141.                 {  
  142.                     model.payment_fee = payModel.poundage_amount;  
  143.                 }  
  144.             }  
  145.             //订单总金额=实付商品金额+运费+支付手续费  
  146.             model.order_amount = model.real_amount + model.express_fee + model.payment_fee;  
  147.             //购物积分,可为负数  
  148.             model.point = carModel.total_point;  
  149.             model.add_time = DateTime.Now;  
  150.             //商品详细列表  
  151.             List<Model.order_goods> gls = new List<Model.order_goods>();  
  152.             for (int i = 0; i < data.Rows.Count; i++)  //对购物车内的商品进行数量金额积分的计算,这里的数量金额应该不用进行判断了,出错再判断吧  
  153.             {  
  154.                 int spID=Convert.ToInt32(data.Rows[i]["goods_id"]);              //商品ID  
  155.                 string title = data.Rows[i]["title"].ToString();                //商品名称  
  156.                 decimal price = Convert.ToDecimal(data.Rows[i]["sell_price"]);  //价格  
  157.                 int quantity = Convert.ToInt32(data.Rows[i]["quantity"]);       //数量  
  158.                 string color = data.Rows[i]["color"].ToString();  
  159.                 int point = Convert.ToInt32(data.Rows[i]["point"]);             //积分  
  160.   
  161.                 gls.Add(new Model.order_goods { goods_id = spID, goods_title = title, goods_price = price, real_price = price, quantity = quantity,color = color, point = point });  
  162.             }  
  163.             //原来的  
  164.             //foreach (Model.cart_items item in data.Rows)  
  165.             //{  
  166.             //    gls.Add(new Model.order_goods { goods_id = item.id, goods_title = item.title, goods_price = item.price, real_price = item.user_price, quantity = item.quantity, point = item.point });  
  167.             //}  
  168.             model.order_goods = gls;  
  169.             int result = new BLL.orders().Add(model);  //保存订单  
  170.             if (result < 1)  
  171.             {  
  172.                 context.Response.Write("{\"status\":0, \"msg\":\"订单保存过程中发生错误,请重新提交!\"}");  
  173.                 return;  
  174.             }  
  175.             //扣除积分  
  176.             if (model.point < 0)  
  177.             {  
  178.                 new BLL.user_point_log().Add(model.user_id, model.user_name, model.point, "积分换购,订单号:" + model.order_no, false);  
  179.             }  
  180.             //清空购物车  
  181.             //DTcms.Web.UI.ShopCart.Clear("0");  
  182.             //提交成功,返回URL  
  183.             context.Response.Write("{\"status\":1, \"url\":\"" + new Web.UI.BasePage().linkurl("payment""confirm", model.order_no) + "\", \"msg\":\"恭喜您,订单已成功提交!\"}");  
  184.             return;  
  185.         }  
  186.         #endregion  
此过程用调用的BLL逻辑层涉及到的方法:

快递BLL(payment.cs)层涉及到的方法:

[csharp]  view plain  copy
  1. /// <summary>  
  2.         /// 得到一个对象实体  
  3.         /// </summary>  
  4.         public DTcms.Model.express GetModel(int id)  
  5.         {  
  6.             return dal.GetModel(id);  
  7.         }  
与快递BLL对应的DAL方法:

[csharp]  view plain  copy
  1. /// <summary>  
  2.         /// 得到一个对象实体  
  3.         /// </summary>  
  4.         public Model.express GetModel(int id)  
  5.         {  
  6.             StringBuilder strSql = new StringBuilder();  
  7.             strSql.Append("select  top 1 id,title,express_code,express_fee,website,remark,sort_id,is_lock from " + databaseprefix + "express ");  
  8.             strSql.Append(" where id=@id");  
  9.             SqlParameter[] parameters = {  
  10.                     new SqlParameter("@id", SqlDbType.Int,4)};  
  11.             parameters[0].Value = id;  
  12.   
  13.             Model.express model = new Model.express();  
  14.             DataSet ds = DbHelperSQL.Query(strSql.ToString(), parameters);  
  15.             if (ds.Tables[0].Rows.Count > 0)  
  16.             {  
  17.                 if (ds.Tables[0].Rows[0]["id"].ToString() != "")  
  18.                 {  
  19.                     model.id = int.Parse(ds.Tables[0].Rows[0]["id"].ToString());  
  20.                 }  
  21.                 model.title = ds.Tables[0].Rows[0]["title"].ToString();  
  22.                 model.express_code = ds.Tables[0].Rows[0]["express_code"].ToString();  
  23.                 if (ds.Tables[0].Rows[0]["express_fee"].ToString() != "")  
  24.                 {  
  25.                     model.express_fee = decimal.Parse(ds.Tables[0].Rows[0]["express_fee"].ToString());  
  26.                 }  
  27.                 model.website = ds.Tables[0].Rows[0]["website"].ToString();  
  28.                 model.remark = ds.Tables[0].Rows[0]["remark"].ToString();  
  29.                 if (ds.Tables[0].Rows[0]["sort_id"].ToString() != "")  
  30.                 {  
  31.                     model.sort_id = int.Parse(ds.Tables[0].Rows[0]["sort_id"].ToString());  
  32.                 }  
  33.                 if (ds.Tables[0].Rows[0]["is_lock"].ToString() != "")  
  34.                 {  
  35.                     model.is_lock = int.Parse(ds.Tables[0].Rows[0]["is_lock"].ToString());  
  36.                 }  
  37.                 return model;  
  38.             }  
  39.             else  
  40.             {  
  41.                 return null;  
  42.             }  
  43.         }  

支付方式BLL(payment.cs)涉及到的方法:

[csharp]  view plain  copy
  1. /// <summary>  
  2.         /// 得到一个对象实体  
  3.         /// </summary>  
  4.         public Model.payment GetModel(int id)  
  5.         {  
  6.             return dal.GetModel(id);  
  7.         }  

支付方式BLL对应的DAL方法:

[csharp]  view plain  copy
  1. /// <summary>  
  2.        /// 得到一个对象实体  
  3.        /// </summary>  
  4.        public Model.payment GetModel(int id)  
  5.        {  
  6.            StringBuilder strSql = new StringBuilder();  
  7.            strSql.Append("select  top 1 id,title,img_url,remark,type,poundage_type,poundage_amount,sort_id,is_lock,api_path from " + databaseprefix + "payment ");  
  8.            strSql.Append(" where id=@id");  
  9.            SqlParameter[] parameters = {  
  10.                 new SqlParameter("@id", SqlDbType.Int,4)};  
  11.            parameters[0].Value = id;  
  12.   
  13.            Model.payment model = new Model.payment();  
  14.            DataSet ds = DbHelperSQL.Query(strSql.ToString(), parameters);  
  15.            if (ds.Tables[0].Rows.Count > 0)  
  16.            {  
  17.                if (ds.Tables[0].Rows[0]["id"].ToString() != "")  
  18.                {  
  19.                    model.id = int.Parse(ds.Tables[0].Rows[0]["id"].ToString());  
  20.                }  
  21.                model.title = ds.Tables[0].Rows[0]["title"].ToString();  
  22.                model.img_url = ds.Tables[0].Rows[0]["img_url"].ToString();  
  23.                model.remark = ds.Tables[0].Rows[0]["remark"].ToString();  
  24.                if (ds.Tables[0].Rows[0]["type"].ToString() != "")  
  25.                {  
  26.                    model.type = int.Parse(ds.Tables[0].Rows[0]["type"].ToString());  
  27.                }  
  28.                if (ds.Tables[0].Rows[0]["poundage_type"].ToString() != "")  
  29.                {  
  30.                    model.poundage_type = int.Parse(ds.Tables[0].Rows[0]["poundage_type"].ToString());  
  31.                }  
  32.                if (ds.Tables[0].Rows[0]["poundage_amount"].ToString() != "")  
  33.                {  
  34.                    model.poundage_amount = decimal.Parse(ds.Tables[0].Rows[0]["poundage_amount"].ToString());  
  35.                }  
  36.                if (ds.Tables[0].Rows[0]["sort_id"].ToString() != "")  
  37.                {  
  38.                    model.sort_id = int.Parse(ds.Tables[0].Rows[0]["sort_id"].ToString());  
  39.                }  
  40.                if (ds.Tables[0].Rows[0]["is_lock"].ToString() != "")  
  41.                {  
  42.                    model.is_lock = int.Parse(ds.Tables[0].Rows[0]["is_lock"].ToString());  
  43.                }  
  44.                model.api_path = ds.Tables[0].Rows[0]["api_path"].ToString();  
  45.                return model;  
  46.            }  
  47.            else  
  48.            {  
  49.                return null;  
  50.            }  
  51.        }  

购物车BLL(shoppingcar.cs)涉及到的方法:

[csharp]  view plain  copy
  1. /// <summary>  
  2.         /// 提交购物车订单后,修改购物车表的有效否  
  3.         /// </summary>  
  4.         /// <param name="model"></param>  
  5.         /// <returns></returns>  
  6.         public bool submitDelete(Model.shoppingcar model)  
  7.         {  
  8.             int id = 0;   //购物车id  
  9.             int k = 0;  
  10.             DataTable dt = getList(model.user_id).Tables[0];  
  11.             for (int i = 0; i < dt.Rows.Count; i++)  //对购物车内的商品进行数量金额积分的计算  
  12.             {  
  13.                 id = Convert.ToInt32(dt.Rows[i]["id"]);  
  14.                 model.id = id;  
  15.                 if (Delete(model))  
  16.                 {  
  17.                     k = 1;  
  18.                 }  
  19.             }  
  20.             if (k > 0)  
  21.             {  
  22.                 return true;  
  23.             }  
  24.             else { return false; }  
  25.   
  26.         }  
  27. /// <summary>  
  28.         /// 查询  
  29.         /// </summary>  
  30.         /// <param name="user_id"></param>  
  31.         /// <returns></returns>  
  32.         public DataSet getList(int user_id)  
  33.         {  
  34.             //get_quantity(user_id);  
  35.             //DataTable dt = dal.getList(user_id).Tables[0];  
  36.             return dal.getList(user_id);  
  37.         }  
  38. /// <summary>  
  39.         /// 查询购物车的商品数量、积分、金额++  
  40.         /// </summary>  
  41.         /// <param name="user_id"></param>  
  42.         /// <returns></returns>  
  43.         public string get_quantity(int user_id)  
  44.         {  
  45.             DataTable dt = new DataTable();  
  46.             dt=dal.get_quantity(user_id).Tables[0];  
  47.             int quantity = 0;  
  48.             int sell_price = 0;  
  49.             int point = 0;  
  50.             for (int i = 0; i < dt.Rows.Count; i++)  //对购物车内的商品进行数量金额积分的计算  
  51.             {  
  52.                 if (dt.Rows[i]["quantity"] != Convert.DBNull)   //如果dt.Rows[i]["quantity"]为空的话就转换不到整形,所以这里用Convert.DBNull进行判断  
  53.                 {  
  54.                     quantity += Convert.ToInt32(dt.Rows[i]["quantity"]);  
  55.                 }  
  56.                 if (dt.Rows[i]["sell_price"] != Convert.DBNull && dt.Rows[i]["quantity"] != Convert.DBNull)  
  57.                 {  
  58.                     sell_price += Convert.ToInt32(dt.Rows[i]["sell_price"]) * Convert.ToInt32(dt.Rows[i]["quantity"]);  
  59.                 }  
  60.                 if (dt.Rows[i]["point"] != Convert.DBNull && dt.Rows[i]["quantity"] != Convert.DBNull)  
  61.                 {  
  62.                     point += Convert.ToInt32(dt.Rows[i]["point"]) *Convert.ToInt32(dt.Rows[i]["quantity"]);  
  63.                 }  
  64.             }  
  65.             string str = "";  
  66.             str = quantity + ";" + sell_price + ";" + point;  
  67.             return str;  
  68.         }  
  69. /// <summary>  
  70.         /// 这个方法用于保存订单的时候,修改商品的数量  
  71.         /// </summary>  
  72.         /// <param name="user_id"></param>  
  73.         /// <returns></returns>  
  74.         public bool updateQuantity(int user_id)  
  75.         {  
  76.             DataTable dt = new DataTable();  
  77.             dt = dal.getList(user_id).Tables[0];    
  78.             int quantity = 0;  
  79.             for (int i = 0; i < dt.Rows.Count; i++)  //进行遍历修改商品数量  
  80.             {  
  81.                 quantity = Convert.ToInt32(dt.Rows[i]["quantity"]);  //获取每一行的数量  
  82.                 int goods_id = Convert.ToInt32(dt.Rows[i]["goods_id"]);  
  83.                 BLL.goods goods = new goods();  
  84.                 int goods_quantity = Convert.ToInt32(goods.GetQuantity(goods_id));  
  85.                 if (goods_quantity >=quantity)  
  86.                 {  
  87.                     goods_quantity = goods_quantity - quantity;  //数量运算  
  88.                 }  
  89.                 string str = "stock_quantity=" + goods_quantity;  
  90.                 goods.UpdateField(goods_id, str);  
  91.             }  
  92.             return true;  
  93.         }  
  94. /// <summary>  
  95.         /// 删除  
  96.         /// </summary>  
  97.         /// <param name="model"></param>  
  98.         /// <returns></returns>  
  99.         public bool Delete(Model.shoppingcar model)  
  100.         {  
  101.             return dal.Delete(model);  
  102.         }  

与购物车BLL对应的DAL方法:

[csharp]  view plain  copy
  1. /// <summary>  
  2.         /// 删除购物车,一行数据  
  3.         /// </summary>  
  4.         /// <param name="model"></param>  
  5.         /// <returns></returns>  
  6.          public bool Delete(Model.shoppingcar model)  
  7.          {  
  8.              StringBuilder strSql = new StringBuilder();  
  9.              strSql.Append("update " + databaseprefix + "shoppingCar set youxiaofou=@youxiaofou where id=@id");  
  10.              SqlParameter[] parameters = {  
  11.                     new SqlParameter("@id", SqlDbType.Int,4),  
  12.                     new SqlParameter("@youxiaofou",SqlDbType.Bit)  
  13.                                           };  
  14.              parameters[0].Value = model.id;  
  15.              parameters[1].Value = false;  
  16.              int rows = DbHelperSQL.ExecuteSql(strSql.ToString(), parameters);  
  17.              if (rows > 0)  
  18.              {  
  19.                  return true;  
  20.              }  
  21.              else  
  22.              {  
  23.                  return false;  
  24.              }  
  25.          }  
  26. /// <summary>  
  27.          /// 查询购物车  
  28.         /// </summary>  
  29.         /// <param name="user_id">根据当前‘用户ID’来查询该用户的购物车</param>  
  30.         /// <returns></returns>  
  31.          public DataSet getList(int user_id)  
  32.          {  
  33.              StringBuilder strSql = new StringBuilder();  
  34.              strSql.Append("select a.*,b.sell_price,b.title,b.img_url,b.point FROM " + databaseprefix + "shoppingCar a left join dt_goods b on a.goods_id=b.id");  
  35.              strSql.Append(" where user_id=" + user_id + " and youxiaofou=1");  
  36.              strSql.Append(" order by a.id desc");               
  37.              return DbHelperSQL.Query(strSql.ToString());  
  38.          }  
  39. /// <summary>  
  40.         /// 返回购物车商品数量、价格、积分总数  
  41.         /// </summary>  
  42.         /// <param name="user_id">根据用户ID来查询</param>  
  43.         /// <returns></returns>  
  44.          public DataSet get_quantity(int user_id)  
  45.          {  
  46.              StringBuilder strSql = new StringBuilder();  
  47.              strSql.Append("select a.quantity,b.sell_price,b.point FROM " + databaseprefix + "shoppingCar a left join dt_goods b on a.goods_id=b.id");  
  48.              strSql.Append(" where user_id=" + user_id + " and youxiaofou=1");  
  49.              return DbHelperSQL.Query(strSql.ToString());  
  50.          }  


另外购物车BLL(shoppingcar.cs)涉及到了商品BLL(goods.cs)里面的方法

[csharp]  view plain  copy
  1. BLL里面的方法:  
  2. /// <summary>  
  3.         /// 修改一列数据  
  4.         /// </summary>  
  5.         public void UpdateField(int id, string strValue)  
  6.         {  
  7.             dal.UpdateField(id, strValue);  
  8.         }  
  9.   
  10. DAL的方法:  
  11. /// <summary>  
  12.         /// 修改一列数据  
  13.         /// </summary>  
  14.         public void UpdateField(int id, string strValue)  
  15.         {  
  16.             StringBuilder strSql = new StringBuilder();  
  17.             strSql.Append("update " + databaseprefix + "goods set " + strValue);  
  18.             strSql.Append(" where id=" + id);  
  19.             DbHelperSQL.ExecuteSql(strSql.ToString());  
  20.         }  

订单信息BLL(orders.cs)涉及到的方法:

[csharp]  view plain  copy
  1. /// <summary>  
  2.         /// 增加一条数据+++  
  3.         /// </summary>  
  4.         public int Add(Model.orders model)  
  5.         {  
  6.             return dal.Add(model);  
  7.         }  

与订单信息BLL对应的DAL方法:

[csharp]  view plain  copy
  1. /// <summary>  
  2.         /// 增加一条数据,及其子表数据  
  3.         /// </summary>  
  4.         public int Add(Model.orders model)  
  5.         {  
  6.             StringBuilder strSql = new StringBuilder();  
  7.             strSql.Append("insert into " + databaseprefix + "orders(");  
  8.             strSql.Append("order_no,trade_no,user_id,user_name,payment_id,payment_fee,payment_status,payment_time,express_id,express_no,express_fee,express_status,express_time,accept_name,post_code,telphone,mobile,area,address,message,remark,payable_amount,real_amount,order_amount,point,status,add_time,confirm_time,complete_time)");  
  9.             strSql.Append(" values (");  
  10.             strSql.Append("@order_no,@trade_no,@user_id,@user_name,@payment_id,@payment_fee,@payment_status,@payment_time,@express_id,@express_no,@express_fee,@express_status,@express_time,@accept_name,@post_code,@telphone,@mobile,@area,@address,@message,@remark,@payable_amount,@real_amount,@order_amount,@point,@status,@add_time,@confirm_time,@complete_time)");  
  11.             strSql.Append(";set @ReturnValue= @@IDENTITY");  
  12.             SqlParameter[] parameters = {  
  13.                     new SqlParameter("@order_no", SqlDbType.NVarChar,100),  
  14.                     new SqlParameter("@trade_no", SqlDbType.NVarChar,100),  
  15.                     new SqlParameter("@user_id", SqlDbType.Int,4),  
  16.                     new SqlParameter("@user_name", SqlDbType.NVarChar,100),  
  17.                     new SqlParameter("@payment_id", SqlDbType.Int,4),  
  18.                     new SqlParameter("@payment_fee", SqlDbType.Decimal,5),  
  19.                     new SqlParameter("@payment_status", SqlDbType.TinyInt,1),  
  20.                     new SqlParameter("@payment_time", SqlDbType.DateTime),  
  21.                     new SqlParameter("@express_id", SqlDbType.Int,4),  
  22.                     new SqlParameter("@express_no", SqlDbType.NVarChar,100),  
  23.                     new SqlParameter("@express_fee", SqlDbType.Decimal,5),  
  24.                     new SqlParameter("@express_status", SqlDbType.TinyInt,1),  
  25.                     new SqlParameter("@express_time", SqlDbType.DateTime),  
  26.                     new SqlParameter("@accept_name", SqlDbType.NVarChar,50),  
  27.                     new SqlParameter("@post_code", SqlDbType.NVarChar,20),  
  28.                     new SqlParameter("@telphone", SqlDbType.NVarChar,30),  
  29.                     new SqlParameter("@mobile", SqlDbType.NVarChar,20),  
  30.                     new SqlParameter("@area", SqlDbType.NVarChar,100),  
  31.                     new SqlParameter("@address", SqlDbType.NVarChar,500),  
  32.                     new SqlParameter("@message", SqlDbType.NVarChar,500),  
  33.                     new SqlParameter("@remark", SqlDbType.NVarChar,500),  
  34.                     new SqlParameter("@payable_amount", SqlDbType.Decimal,5),  
  35.                     new SqlParameter("@real_amount", SqlDbType.Decimal,5),  
  36.                     new SqlParameter("@order_amount", SqlDbType.Decimal,5),  
  37.                     new SqlParameter("@point", SqlDbType.Int,4),  
  38.                     new SqlParameter("@status", SqlDbType.TinyInt,1),  
  39.                     new SqlParameter("@add_time", SqlDbType.DateTime),  
  40.                     new SqlParameter("@confirm_time", SqlDbType.DateTime),  
  41.                     new SqlParameter("@complete_time", SqlDbType.DateTime),  
  42.                     new SqlParameter("@ReturnValue",SqlDbType.Int)};  
  43.             parameters[0].Value = model.order_no;  
  44.             parameters[1].Value = model.trade_no;  
  45.             parameters[2].Value = model.user_id;  
  46.             parameters[3].Value = model.user_name;  
  47.             parameters[4].Value = model.payment_id;  
  48.             parameters[5].Value = model.payment_fee;  
  49.             parameters[6].Value = model.payment_status;  
  50.             parameters[7].Value = model.payment_time;  
  51.             parameters[8].Value = model.express_id;  
  52.             parameters[9].Value = model.express_no;  
  53.             parameters[10].Value = model.express_fee;  
  54.             parameters[11].Value = model.express_status;  
  55.             parameters[12].Value = model.express_time;  
  56.             parameters[13].Value = model.accept_name;  
  57.             parameters[14].Value = model.post_code;  
  58.             parameters[15].Value = model.telphone;  
  59.             parameters[16].Value = model.mobile;  
  60.             parameters[17].Value = model.area;  
  61.             parameters[18].Value = model.address;  
  62.             parameters[19].Value = model.message;  
  63.             parameters[20].Value = model.remark;  
  64.             parameters[21].Value = model.payable_amount;  
  65.             parameters[22].Value = model.real_amount;  
  66.             parameters[23].Value = model.order_amount;  
  67.             parameters[24].Value = model.point;  
  68.             parameters[25].Value = model.status;  
  69.             parameters[26].Value = model.add_time;  
  70.             parameters[27].Value = model.confirm_time;  
  71.             parameters[28].Value = model.complete_time;  
  72.             parameters[29].Direction = ParameterDirection.Output;  
  73.             List<CommandInfo> sqllist = new List<CommandInfo>();  
  74.             CommandInfo cmd = new CommandInfo(strSql.ToString(), parameters);  
  75.             sqllist.Add(cmd);  
  76.   
  77.             //订单商品列表  
  78.             if (model.order_goods != null)  
  79.             {  
  80.                 StringBuilder strSql2;  
  81.                 foreach (Model.order_goods models in model.order_goods)  
  82.                 {  
  83.                     strSql2 = new StringBuilder();  
  84.                     strSql2.Append("insert into " + databaseprefix + "order_goods(");  
  85.                     strSql2.Append("order_id,goods_id,goods_title,goods_price,real_price,quantity,color,point)");  
  86.                     strSql2.Append(" values (");  
  87.                     strSql2.Append("@order_id,@goods_id,@goods_title,@goods_price,@real_price,@quantity,@color,@point)");  
  88.                     SqlParameter[] parameters2 = {  
  89.                             new SqlParameter("@order_id", SqlDbType.Int,4),  
  90.                             new SqlParameter("@goods_id", SqlDbType.Int,4),  
  91.                             new SqlParameter("@goods_title", SqlDbType.NVarChar,100),  
  92.                             new SqlParameter("@goods_price", SqlDbType.Decimal,5),  
  93.                             new SqlParameter("@real_price", SqlDbType.Decimal,5),  
  94.                             new SqlParameter("@quantity", SqlDbType.Int,4),  
  95.                             new SqlParameter("@color", SqlDbType.NVarChar,150),  
  96.                             new SqlParameter("@point", SqlDbType.Int,4)};  
  97.                     parameters2[0].Direction = ParameterDirection.InputOutput;  
  98.                     parameters2[1].Value = models.goods_id;  
  99.                     parameters2[2].Value = models.goods_title;  
  100.                     parameters2[3].Value = models.goods_price;  
  101.                     parameters2[4].Value = models.real_price;  
  102.                     parameters2[5].Value = models.quantity;  
  103.                     parameters2[6].Value = models.color;  
  104.                     parameters2[7].Value = models.point;  
  105.                     cmd = new CommandInfo(strSql2.ToString(), parameters2);  
  106.                     sqllist.Add(cmd);  
  107.                 }  
  108.             }  
  109.             DbHelperSQL.ExecuteSqlTranWithIndentity(sqllist);  
  110.             return (int)parameters[29].Value;  
  111.         }  



 仅供学习,禁止商业用途

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值