@using System.Data @using ZoomLa.Common @using ZoomLa.BLL @using ZoomLa.BLL.Helper @using ZoomLa.BLL.Shop @using ZoomLa.Model @using ZoomLa.Components @using Newtonsoft.Json @model ZoomLaCMS.Models.Cart.VM_CartOrder @{ Layout = "_layout.cshtml"; bool IsWechat = false; } @section head{ 订单结算_@Call.SiteName } @section content{

填写订单信息

@if (Model.ShowAddress) {
收货人信息
    配送时间: 工作日、双休日与节假日均可送货 修改
    } @if (IsWechat) {
    }
    @Html.Partial("Comp/Order_Invoice")
    商品清单↓ <返回购物车
    @foreach (DataRow store in Model.StoreDT.Rows){ //按店铺展示商品列表 Model.CartDT.DefaultView.RowFilter = "StoreID=" + store["ID"]; DataTable dt = Model.CartDT.DefaultView.ToTable(); @if (dt.Rows.Count < 1) { continue; }//无商品则不显示自营商城 @foreach (DataRow item in dt.Rows) { Model.dr = item; if (DataConverter.CLng(item["ProClass"]) == 2) { @Html.Partial("Order_ItemSuit") } else { @Html.Partial("Order_Item") } } }
    商品金额优惠数量状态
    配送方式: @MvcHtmlString.Create(DataConverter.CStr(store["fareHtml"]))
    @(Model.CartDT.Rows.Count)件商品,总商品金额:@Model.allmoney.ToString("F2")
    优惠券:0.00
    积分折扣:0.00
    运费:0.00
    应付总额:0.00
      @if (Model.ShowPassenger){
    • @Html.Partial("Comp/Order_Passenger")
    • }
    • 优惠券 @Html.Partial("Comp/Order_Coupon")
    • 积分抵扣 @if (Model.usepoint > 0) {
      @(Model.mu.UserExp.ToString("F0"))个积分,本次可用个积分,
      } else { }
    • 订单备注

      提示:请勿填写有关支付、收货、发票方面的信息

    @*应付总额: 0.00*@
    } @section script{ @**@ @if (IsWechat) { } }