Beispiel #1
0
 public ActionResult CancelShipmentBill(string id)
 {
     string strErrText;
     DeliverSystem deliver = new DeliverSystem();
     if (deliver.CancelShipmentBill(long.Parse(id), LoginAccountId, LoginStaffName, out strErrText))
     {
         return Json(string.Empty);
     }
     else
     {
         return Json(strErrText);
     }
 }