105040 Update 增加线材资料前缀检查
This commit is contained in:
parent
d10a53773e
commit
042c93fcfe
|
@ -47,11 +47,23 @@ namespace Sinvo.EplanHpD.Plugin.WPFUI.ViewModel
|
||||||
CheckCeCompliance(item);
|
CheckCeCompliance(item);
|
||||||
}
|
}
|
||||||
CheckNumberTube(item);
|
CheckNumberTube(item);
|
||||||
|
|
||||||
CheckInsulation(item);
|
CheckInsulation(item);
|
||||||
CheckTerminals(item);
|
CheckTerminals(item);
|
||||||
CheckDPETerminals(item);
|
CheckDPETerminals(item);
|
||||||
CheckDuplicateModel(item);
|
CheckDuplicateModel(item);
|
||||||
|
|
||||||
|
CheckImprintStartsWith(item);
|
||||||
|
}
|
||||||
|
/// <summary>
|
||||||
|
/// 检查印记内容前缀
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="item"></param>
|
||||||
|
public void CheckImprintStartsWith(StuffedDataModel item)
|
||||||
|
{
|
||||||
|
if (item.Imprint.StartsWith("w_0"))
|
||||||
|
{
|
||||||
|
SetItemError(item, "印记内容不符合规范!\r\n");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 检查地排端子
|
/// 检查地排端子
|
||||||
|
|
Loading…
Reference in New Issue