Example #1
0
        public ActionResult Invoice()
        {
            var shopinvoice = ShopApplication.GetShopInvoiceConfig(CurrentSellerManager.ShopId);

            if (shopinvoice == null)
            {
                shopinvoice        = new ShopInvoiceConfigInfo();
                shopinvoice.ShopId = CurrentSellerManager.ShopId;
            }
            return(View(shopinvoice));
        }