Пример #1
0
        public IActionResult GeneralExpense()
        {
            ViewBag.ExpenseCategoryId = new SelectList(_db.ExpenseCategories.ddl(), "value", "label");

            var defaultAccountId = _account.DefaultAccountGet();

            ViewBag.Account = new SelectList(_account.DdlList(), "value", "label", defaultAccountId);

            return(View());
        }
Пример #2
0
        public IActionResult SellingProduct()
        {
            var defaultAccountId = _account.DefaultAccountGet();

            ViewBag.Account = new SelectList(_account.DdlList(), "value", "label", defaultAccountId);

            return(View());
        }
Пример #3
0
        public IActionResult Purchase()
        {
            ViewBag.ParentId = new SelectList(_db.ProductCatalogs.CatalogDll(), "value", "label");

            var defaultAccountId = _account.DefaultAccountGet();

            ViewBag.Account = new SelectList(_account.DdlList(), "value", "label", defaultAccountId);

            return(View());
        }
Пример #4
0
        public IActionResult AddAccount()
        {
            var response = _accountCore.List();

            var defaultAccountId = _accountCore.DefaultAccountGet();

            ViewBag.DefaultAccountId = defaultAccountId;
            ViewBag.Account          = new SelectList(_accountCore.DdlList(), "value", "label", defaultAccountId);

            return(View(response));
        }
Пример #5
0
        //Selling receipt
        public async Task <IActionResult> SellingReceipt(int?id)
        {
            if (id == null)
            {
                return(RedirectToAction("Selling"));
            }

            var model = await _db.Selling.SellingReceiptAsync(id.GetValueOrDefault(), _db).ConfigureAwait(false);

            if (model == null)
            {
                return(RedirectToAction("Selling"));
            }

            var defaultAccountId = _account.DefaultAccountGet();

            ViewBag.Account = new SelectList(_account.DdlList(), "value", "label", defaultAccountId);

            return(View(model));
        }