//生成单号
        // GET: /StockOutBill/GenInBillNo/
        public ActionResult GenInBillNo()
        {
            var outBillNo = OutBillMasterService.GenInBillNo(this.User.Identity.Name.ToString());

            return(Json(outBillNo, "text", JsonRequestBehavior.AllowGet));
        }