本文整理汇总了C#中AppFrame.ObjectCriteria.AddNotEqualsCriteria方法的典型用法代码示例。如果您正苦于以下问题:C# ObjectCriteria.AddNotEqualsCriteria方法的具体用法?C# ObjectCriteria.AddNotEqualsCriteria怎么用?C# ObjectCriteria.AddNotEqualsCriteria使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AppFrame.ObjectCriteria
的用法示例。
在下文中一共展示了ObjectCriteria.AddNotEqualsCriteria方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: stockSearchView_RemainSearchStockEvent
public void stockSearchView_RemainSearchStockEvent(object sender, StockSearchEventArgs e)
{
var criteria = new ObjectCriteria();
criteria.AddEqCriteria("DelFlg", (long)0);
criteria.AddLesserOrEqualsCriteria("CreateDate", e.FromDate);
IList deptStockInDetailFromList = DepartmentStockInDetailLogic.FindAll(criteria);
criteria.AddNotEqualsCriteria("StockInType", (long)1);
IList stockInDetailFromList = StockInDetailLogic.FindAll(criteria);
criteria = new ObjectCriteria();
criteria.AddEqCriteria("DelFlg", (long)0);
criteria.AddLesserOrEqualsCriteria("CreateDate", e.ToDate);
IList deptStockInDetailToList = DepartmentStockInDetailLogic.FindAll(criteria);
criteria.AddNotEqualsCriteria("StockInType", (long)1);
IList stockInDetailToList = StockInDetailLogic.FindAll(criteria);
// IList stockHistoryList = StockHistoryLogic.FindByMaxDate(criteria);
var reportList = new List<UniversalStockReportObject>();
// calculate dau` ton`
foreach (StockInDetail stockInDetail in stockInDetailFromList)
{
UniversalStockReportObject report = null;
foreach (var reportObject in reportList)
{
if (stockInDetail.Product.ProductMaster.ProductMasterId.Equals(reportObject.ProductMaster.ProductMasterId))
{
report = reportObject;
break;
}
}
if (report != null)
{
report.StockStartQuantity += stockInDetail.Quantity;
report.StockInStartQuantity += stockInDetail.Quantity;
}
else
{
report = new UniversalStockReportObject();
reportList.Add(report);
report.StockStartQuantity = stockInDetail.Quantity;
report.StockInStartQuantity = stockInDetail.Quantity;
}
report.ProductMaster = stockInDetail.Product.ProductMaster;
foreach (DepartmentStockInDetail deptStockInDetail in deptStockInDetailFromList)
{
if (report.ProductMaster.ProductMasterId.Equals(deptStockInDetail.Product.ProductMaster.ProductMasterId))
{
report.StockStartQuantity -= deptStockInDetail.Quantity;
report.DepartmentStockInStartQuantity += deptStockInDetail.Quantity;
}
}
reportList.Add(report);
}
// calculate cuoi ton
foreach (StockInDetail stockInDetail in stockInDetailToList)
{
UniversalStockReportObject report = null;
foreach (var reportObject in reportList)
{
if (stockInDetail.Product.ProductMaster.ProductMasterId.Equals(reportObject.ProductMaster.ProductMasterId))
{
report = reportObject;
break;
}
}
if (report != null)
{
report.StockEndQuantity += stockInDetail.Quantity;
report.StockInEndQuantity += stockInDetail.Quantity;
}
else
{
report = new UniversalStockReportObject();
report.ProductMaster = stockInDetail.Product.ProductMaster;
reportList.Add(report);
report.StockEndQuantity = stockInDetail.Quantity;
report.StockInEndQuantity = stockInDetail.Quantity;
}
foreach (DepartmentStockInDetail deptStockInDetail in deptStockInDetailToList)
{
if (report.ProductMaster.ProductMasterId.Equals(deptStockInDetail.Product.ProductMaster.ProductMasterId))
{
report.StockEndQuantity -= deptStockInDetail.Quantity;
report.DepartmentStockInEndQuantity += deptStockInDetail.Quantity;
}
}
// foreach (StockHistory stockHistory in stockHistoryList)
// {
// if (report.ProductMaster.ProductMasterId.Equals(stockHistory.Product.ProductMaster.ProductMasterId))
// {
// report.LostCount += stockHistory.LostCount;
//.........这里部分代码省略.........