예제 #1
0
        /// <summary>
        /// 获取已结算详情
        /// </summary>
        /// <param name="orderId"></param>
        /// <returns></returns>
        public OrderSettlementDetail GetOrderSettlementDetail(long orderId)
        {
            CheckShopManageLogin();
            var  shop   = CurrentShop;
            long shopId = shop.Id;
            var  model  = BillingApplication.GetOrderSettlementDetail(orderId, shopId);

            return(model);
        }
예제 #2
0
        public ActionResult SettlementDetail(long Id)
        {
            var model = BillingApplication.GetOrderSettlementDetail(Id, CurrentSellerManager.ShopId);

            return(View(model));
        }
예제 #3
0
        public ActionResult SettlementDetail(long Id)
        {
            var model = BillingApplication.GetOrderSettlementDetail(Id);

            return(View(model));
        }