示例#1
0
        public ActionResult GeneratePaymentsMannualy(string InvoiceSchdIDS, string OrderSchdIDS, int BankID, int BankAccountID, int PaymentMethodID, string DateAcct, string CurrencyType, string DateTrx)
        {
            Ctx          ct       = Session["ctx"] as Ctx;
            PaymentModel _payMdl  = new PaymentModel();
            string       _Paydata = _payMdl.CreatePaymentsMannualy(ct, InvoiceSchdIDS, OrderSchdIDS, BankID, BankAccountID, PaymentMethodID, DateAcct, CurrencyType, DateTrx);

            return(Json(JsonConvert.SerializeObject(_Paydata), JsonRequestBehavior.AllowGet));
        }