示例#1
0
 public ActionResult DeleteOutWarehouseBill(string id)
 {
     string strErrText;
     StockSystem stock = new StockSystem();
     if (stock.DeleteOutWarehouseBill(long.Parse(id), LoginAccountId, LoginStaffName, out strErrText))
     {
         return Json(string.Empty);
     }
     else
     {
         return Json(strErrText);
     }
 }