This commit is contained in:
@@ -5917,7 +5917,7 @@ namespace AyaNovaQBI
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static void AddMisMatch(string Name, long ObjectId, AyaType ObjectType,
|
private static void AddMisMatch(string Name, long ObjectId, AyaType ObjectType,
|
||||||
MisMatchReason Reason, ArrayList Mismatches, decimal QBPrice, decimal AyaPrice, long WorkOrderItemPartID, string QBListID)
|
MisMatchReason Reason, ArrayList Mismatches, decimal QBPrice, decimal AyaPrice, long WorkOrderItemPartId, string QBListID)
|
||||||
{
|
{
|
||||||
bool bDuplicate = false;
|
bool bDuplicate = false;
|
||||||
//scan through list of existing mismatches,
|
//scan through list of existing mismatches,
|
||||||
@@ -5944,7 +5944,7 @@ namespace AyaNovaQBI
|
|||||||
|
|
||||||
if (!bDuplicate)
|
if (!bDuplicate)
|
||||||
{
|
{
|
||||||
MisMatch m = new MisMatch
|
Mismatches.Add(new MisMatch
|
||||||
{
|
{
|
||||||
Name = Name,
|
Name = Name,
|
||||||
ObjectId = ObjectId,
|
ObjectId = ObjectId,
|
||||||
@@ -5952,11 +5952,9 @@ namespace AyaNovaQBI
|
|||||||
Reason = Reason,
|
Reason = Reason,
|
||||||
AyaPrice = AyaPrice,
|
AyaPrice = AyaPrice,
|
||||||
QBPrice = QBPrice,
|
QBPrice = QBPrice,
|
||||||
WorkOrderItemPartID = WorkOrderItemPartID,
|
WorkOrderItemPartId = WorkOrderItemPartId,
|
||||||
QBListID = QBListID,
|
QBListID = QBListID,
|
||||||
}
|
});
|
||||||
Mismatches.Add(m);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user