//删除主单
        // POST: /StockOutBill/Delete/
        public ActionResult Delete(string BillNo)
        {
            string errorInfo = string.Empty;
            bool   bResult   = OutBillMasterService.Delete(BillNo, out errorInfo);
            string msg       = bResult ? "删除成功" : "删除失败";

            return(Json(JsonMessageHelper.getJsonMessage(bResult, msg, errorInfo), "text", JsonRequestBehavior.AllowGet));
        }