public ActionResult DeleteCustomerStorageAndForceFeeSettlement(string id) { string strErrText; StockSystem stock = new StockSystem(); if (stock.DeleteCustomerStorageAndForceFeeSettlement(long.Parse(id), LoginAccountId, LoginStaffName, out strErrText)) { return Json(string.Empty); } else { return Json(strErrText); } }