|
|
@@ -3806,7 +3806,7 @@ namespace Business.Replenishment
|
|
|
woDetail.QtyRequired = structure.needCount.GetValueOrDefault();
|
|
|
woDetail.QtyPosted = 0m;
|
|
|
woDetail.QtyReturned = 0m;
|
|
|
- woDetail.FrozenBOMQty = structure.needCount.GetValueOrDefault();
|
|
|
+ woDetail.FrozenBOMQty = structure.qty.GetValueOrDefault();
|
|
|
woDetail.Status = "";
|
|
|
woDetail.IsActive = true;
|
|
|
woDetail.CreateTime = DateTime.Now;
|
|
|
@@ -3815,7 +3815,7 @@ namespace Business.Replenishment
|
|
|
else
|
|
|
{
|
|
|
woDetail.QtyRequired += structure.needCount.GetValueOrDefault();
|
|
|
- woDetail.FrozenBOMQty += structure.needCount.GetValueOrDefault();
|
|
|
+ woDetail.FrozenBOMQty += structure.qty.GetValueOrDefault();
|
|
|
}
|
|
|
}
|
|
|
}
|