Exemplo n.º 1
0
        public static string GetGuarReturnCode()
        {
            GuarReturnDT guarReturnDT = new GuarReturnDT();
            string       mmyy         = getMMyy();
            DataTable    invoiceTable = guarReturnDT.GetByCond("Code like 'TK" + mmyy + "%'", " Code DESC");
            string       prefix       = "TK" + mmyy;
            string       suffix       = "0001";

            if (invoiceTable != null && invoiceTable.Rows.Count > 0)
            {
                suffix = getSuffix(invoiceTable.Rows[0]["Code"].ToString());
            }
            return(prefix + suffix);
        }
Exemplo n.º 2
0
 public GuarReturnRule 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;
     }
 }