public ActionResult Create(ProfitLossBillMaster profitLossBillMaster) { bool bResult = ProfitLossBillMasterService.Add(profitLossBillMaster, this.User.Identity.Name.ToString()); string msg = bResult ? "新增成功" : "新增失败"; return(Json(JsonMessageHelper.getJsonMessage(bResult, msg, null), "text", JsonRequestBehavior.AllowGet)); }
public ActionResult Edit(ProfitLossBillMaster profitLossBillMaster) { string strResult = string.Empty; bool bResult = ProfitLossBillMasterService.Save(profitLossBillMaster, out strResult); string msg = bResult ? "修改成功" : "修改失败"; return(Json(JsonMessageHelper.getJsonMessage(bResult, msg, strResult), "text", JsonRequestBehavior.AllowGet)); }
// // POST: /ProfitLossBillMaster/Audit/ public ActionResult Audit(string BillNo) { string strResult = string.Empty; bool bResult = ProfitLossBillMasterService.Audit(BillNo, this.User.Identity.Name.ToString(), out strResult); string msg = bResult ? "审核成功" : "审核失败"; return(Json(JsonMessageHelper.getJsonMessage(bResult, msg, strResult), "text", JsonRequestBehavior.AllowGet)); }
// // POST: /ProfitLossBillMaster/Delete/ public ActionResult Delete(string BillNo) { string strResult = string.Empty; bool bResult = ProfitLossBillMasterService.Delete(BillNo, out strResult); string msg = bResult ? "删除成功" : "删除失败"; return(Json(JsonMessageHelper.getJsonMessage(bResult, msg, strResult), "text", JsonRequestBehavior.AllowGet)); }
// // GET: /ProfitLossBillMaster/Details/ public ActionResult Details(int page, int rows, FormCollection collection) { string BillNo = collection["BillNo"] ?? ""; string WareHouseCode = collection["WareHouseCode"] ?? ""; string beginDate = collection["beginDate"] ?? ""; string endDate = collection["endDate"] ?? ""; string OperatePersonCode = collection["OperatePersonCode"] ?? ""; string CheckPersonCode = collection["CheckPersonCode"] ?? ""; string Status = collection["Status"] ?? ""; string IsActive = collection["IsActive"] ?? ""; var profitLossBillMaster = ProfitLossBillMasterService.GetDetails(page, rows, BillNo, WareHouseCode, beginDate, endDate, OperatePersonCode, CheckPersonCode, Status, IsActive); return(Json(profitLossBillMaster, "text", JsonRequestBehavior.AllowGet)); }
// // GET: /ProfitLossBillMaster/GenMoveBillNo/ public ActionResult GenProfitLossBillNo() { var profitLossBillNo = ProfitLossBillMasterService.GenProfitLossBillNo(this.User.Identity.Name.ToString()); return(Json(profitLossBillNo, "text", JsonRequestBehavior.AllowGet)); }