Example #1
0
        public ActionResult PendingSettlementOrders()
        {
            ViewBag.Payments = PaymentApplication.GetPaymentTypeDesc();
            var model = BillingApplication.GetPlatSettlementCycle();

            return(View(model));
        }
Example #2
0
        public ActionResult PlatSettlementOrders()
        {
            ViewBag.Payments = PaymentApplication.GetPaymentTypeDesc();
            var model = BillingApplication.GetPlatSettlementStatistics();

            return(View("SettlementOrders", model));
        }
Example #3
0
        public ActionResult SettlementOrders(long?shopId, long?detailId = null)
        {
            ViewBag.Payments = PaymentApplication.GetPaymentTypeDesc();
            var model = BillingApplication.GetShopSettlementStatistics(shopId, detailId);

            return(View(model));
        }
Example #4
0
        public ActionResult Management(long?shopBranchId)
        {
            ViewBag.hasHistory = SiteSettingApplication.SiteSettings.IsOpenHistoryOrder;
            var model          = PaymentApplication.GetPaymentTypeDesc();
            var shopbranchName = "";

            if (shopBranchId.HasValue)
            {
                var shopbranch = ShopBranchApplication.GetShopBranchById(shopBranchId.Value);
                if (shopbranch != null)
                {
                    shopbranchName = shopbranch.ShopBranchName;
                }
            }
            ViewBag.ShopBranchName = shopbranchName;
            return(View(model));
        }