SVN r1106
SVN-Revision: r1106
This commit is contained in:
@@ -74,4 +74,19 @@ namespace Lskj.Model
|
||||
{
|
||||
this.Text = "在 审";
|
||||
}
|
||||
else if (columns.Contains(prefix + "affirmer") && ("0" != rowItem[prefix + "affirmer"] + "" && !string.IsNullOrEmpt
|
||||
else if (columns.Contains(prefix + "affirmer") && ("0" != rowItem[prefix + "affirmer"] + "" && !string.IsNullOrEmpty(rowItem[prefix + "affirmer"] + "")))
|
||||
{
|
||||
this.Text = "待 审";
|
||||
}
|
||||
else
|
||||
{
|
||||
this.Text = "草 稿";
|
||||
if (!string.IsNullOrWhiteSpace(ERPInfo.Instance.DraftReplacementValue))
|
||||
{
|
||||
this.Text = ERPInfo.Instance.DraftReplacementValue;
|
||||
}
|
||||
}
|
||||
// 设置打印文本
|
||||
if (columns.Contains(prefix + "printCount"))
|
||||
{
|
||||
this.Print = "打印" + (string.IsNullOrEmpty(rowItem[prefix + "printCount"] + "") ? "0次" : rowItem[prefix + "printCount"] + "
|
||||
Reference in New Issue
Block a user