本文整理汇总了C#中BusinessObjects.MasterDataBLL.GetItemByCode方法的典型用法代码示例。如果您正苦于以下问题:C# MasterDataBLL.GetItemByCode方法的具体用法?C# MasterDataBLL.GetItemByCode怎么用?C# MasterDataBLL.GetItemByCode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BusinessObjects.MasterDataBLL
的用法示例。
在下文中一共展示了MasterDataBLL.GetItemByCode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ImportTxtData
//.........这里部分代码省略.........
}
}
#endregion
#region 类型为Item
if (importType == 1) {
string[] Item = Content[i].Split('\t');
if (Item.Length != 6) {
logbll.InsertImportLogDetail(logId, i + 1, "Item数据COUNT错误!");
FailCount += 1;
continue;
}
//Item = Content[i].Replace("\"", "").Split('\t');
int ItemCategoryID = 0;
Boolean active = false;
if (Item[5].ToUpper().IndexOf("PC") >= 0) {
active = true;
} else if (Item[5].ToUpper().IndexOf("PZ") >= 0) {
active = false;
} else {
logbll.InsertImportLogDetail(logId, i + 1, "active数据错误!");
FailCount += 1;
continue;
}
MasterData.ItemCategoryDataTable ItemCategory = masterdatabll.GetItemCategoryByCode(Item[2]);
if (ItemCategory.Rows.Count > 0) {
ItemCategoryID = ItemCategory[0].ItemCategoryID;
} else {
logbll.InsertImportLogDetail(logId, i + 1, "未找到Item Category!");
FailCount += 1;
continue;
}
MasterData.ItemDataTable dtItem = masterdatabll.GetItemByCode(Item[0]);
if (dtItem.Rows.Count > 0) {
//Update
masterdatabll.UpdateItem(dtItem[0].ItemID, Item[0], Item[1], ItemCategoryID, Item[3], Item[4], active);
} else if (active)//未找到数据 并且active 是ture的才做插入
{
//导入数据
masterdatabll.InsertItem(Item[0], Item[1], ItemCategoryID, Item[3], Item[4], active);
}
}
#endregion
#region 类型为Customer
if (importType == 2) {
string[] Customer = Content[i].Split('\t');
if (Customer.Length != 14) {
logbll.InsertImportLogDetail(logId, i + 1, "Customer数据COUNT错误!");
FailCount += 1;
continue;
}
//Customer = Content[i].Replace("\"", "").Split('\t');
Boolean active = false;
if (Customer[12].ToUpper().IndexOf("CM") >= 0) {
active = true;
} else if (Customer[12].ToUpper().IndexOf("CZ") >= 0) {
active = false;
} else {
logbll.InsertImportLogDetail(logId, i + 1, "active数据错误!");
FailCount += 1;
continue;
}
int CustomerTypeID = 0;
int CustomerChannelID = 0;