public static string GetImportInvoiceCode() { BuyImportinvoiceDT importInvoiceDT = new BuyImportinvoiceDT(); string mmyy = getMMyy(); DataTable invoiceTable = importInvoiceDT.GetByCond("Code like 'PN" + mmyy + "%'", " Code DESC"); string prefix = "PN" + mmyy; string suffix = "0001"; if (invoiceTable != null && invoiceTable.Rows.Count > 0) { suffix = getSuffix(invoiceTable.Rows[0]["Code"].ToString()); } return(prefix + suffix); }
public BuyImportinvoiceRule 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; } }