//PUR04新增時檢核資料是否已重複
 public void ChkPUR04Dup(ArrayList ParameterList, out string V_RESULT)
 {
     try
     {
         DBO.PUR_PurchaseDeliveryGoodsDBO dbo = new PUR_PurchaseDeliveryGoodsDBO(ref USEDB);
         dbo.ChkPUR04Dup(ParameterList, out V_RESULT);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }