本文整理汇总了C#中LocationCollection.GetUsedLibraryCodes方法的典型用法代码示例。如果您正苦于以下问题:C# LocationCollection.GetUsedLibraryCodes方法的具体用法?C# LocationCollection.GetUsedLibraryCodes怎么用?C# LocationCollection.GetUsedLibraryCodes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类LocationCollection
的用法示例。
在下文中一共展示了LocationCollection.GetUsedLibraryCodes方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Check
//.........这里部分代码省略.........
* */
if (String.IsNullOrEmpty(item.Class) == true)
{
strError = "第 " + (i + 1).ToString() + " 行: 尚未输入类别";
return 1;
}
}
}
if (bStrict == true)
{
// 检查 渠道 + 经费来源 + 价格 3元组是否有重复
for (int i = 0; i < this.Items.Count; i++)
{
Item item = this.Items[i];
// 只检查新规划的事项
if ((item.State & ItemState.ReadOnly) != 0)
continue;
// 2009/2/4 只检查新输入的订购事项
if (String.IsNullOrEmpty(item.StateString) == false)
continue;
string strLocationString = item.location.Value;
LocationCollection locations = new LocationCollection();
nRet = locations.Build(strLocationString, out strError);
if (nRet == -1)
{
strError = "第 " + (i + 1).ToString() + " 行: 去向字符串 '"+strLocationString+"' 格式错误: " + strError;
return -1;
}
string strUsedLibraryCodes = StringUtil.MakePathList(locations.GetUsedLibraryCodes());
// 检查馆代码是否在管辖范围内
// 只检查修改过的事项
if (IsChangedItem(item) == true
&& this.VerifyLibraryCode != null)
{
VerifyLibraryCodeEventArgs e = new VerifyLibraryCodeEventArgs();
e.LibraryCode = strUsedLibraryCodes;
this.VerifyLibraryCode(this, e);
if (string.IsNullOrEmpty(e.ErrorInfo) == false)
{
strError = "第 " + (i + 1).ToString() + " 行: 去向错误: " + e.ErrorInfo;
return -1;
}
}
for (int j = i + 1; j < this.Items.Count; j++)
{
Item temp_item = this.Items[j];
// 只检查新规划的事项
if ((temp_item.State & ItemState.ReadOnly) != 0)
continue;
// 跳过未曾修改过的事项
if (IsChangedItem(temp_item) == false)
continue;
// 2009/2/4 只检查新输入的订购事项
if (String.IsNullOrEmpty(temp_item.StateString) == false)
continue;
string strTempLocationString = temp_item.location.Value;