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

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

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

            return(View(model));
        }