예제 #1
0
        public static string GetReceiveProductCode()
        {
            SelReceiveproductDT receiveProductDT = new SelReceiveproductDT();
            string    mmyy         = getMMyy();
            DataTable invoiceTable = receiveProductDT.GetByCond("Code like 'KT" + mmyy + "%'", " Code DESC");
            string    prefix       = "KT" + mmyy;
            string    suffix       = "0001";

            if (invoiceTable != null && invoiceTable.Rows.Count > 0)
            {
                suffix = getSuffix(invoiceTable.Rows[0]["Code"].ToString());
            }
            return(prefix + suffix);
        }
예제 #2
0
 public SelReceiveproductRule IsExits(string cond, string message)
 {
     try
     {
         DataTable dt = dta.GetByCond(cond);
         if (dt != null && dt.Rows.Count > 0)
         {
             IsPassed    = false;
             ErrMessage += message;
         }
         return(this);
     }
     catch (Exception e)
     {
         IsPassed = false;
         throw e;
     }
 }