예제 #1
0
 /// <summary>
 /// 加入库存
 /// </summary>
 /// <param name="id"></param>
 /// <returns></returns>
 public bool AddInventoryAKC(string id, string UserName, out string msg)
 {
     msg = "";
     try
     {
         ReceiptManagementAccessor accessor = new ReceiptManagementAccessor();
         bool result = accessor.AddInventoryAKC(id, UserName, out msg);
         return(result);
     }
     catch (Exception ex)
     {
         msg = ex.Message.ToString();
         return(false);
     }
 }