|
|
@@ -176,7 +176,7 @@ namespace BPA.KitChen.GroupMealOrder.Application.Service.WeighOrder.Service |
|
|
|
GoodsWeight = item.GoodsWeight, |
|
|
|
GroupId = CurrentUser.TenantId, |
|
|
|
OrderId = item.OrderId, |
|
|
|
TotalAmount = thisGoods.Price * item.GoodsWeight, |
|
|
|
TotalAmount = item.GoodsWeight==0?0: (thisGoods.Price * (item.GoodsWeight/50)), |
|
|
|
Id = Guid.NewGuid().ToString(), |
|
|
|
DiningPlateId = thisdiningPlate.Id, |
|
|
|
Price= thisGoods.Price |
|
|
|