|
@@ -8996,22 +8996,30 @@ namespace OASystem.API.Controllers
|
|
|
_ModuleSubPromptInfo.AddRange(
|
|
|
_GroupCostsTypeData.Select(it => new
|
|
|
{
|
|
|
- Date = it.Date,
|
|
|
- CarFee = (it.CarCost + it.CFM + it.CFOF) * _rate * _scale,
|
|
|
- GuideFee = (it.TGS + it.TGOF + it.TGM + it.TGA + it.TGTF + it.TGEF) * _rate * _scale,
|
|
|
- MealFee = (it.B + it.L + it.D) * _rate * _scale,
|
|
|
- TicketFee = it.EF * _rate * _scale,
|
|
|
- TipFee = (it.TGTips + it.DRVTips) * _rate * _scale,
|
|
|
- AirportTransferFee = 0.00M,
|
|
|
- DrinksSnacksFruitFee = it.B_R_F * _rate * _scale,
|
|
|
- TravelSupplies = it.TE * _rate * _scale,
|
|
|
- LeadersFee = it.TLF * _rate * _scale,
|
|
|
- CarFee1 = it.CarCost * _rate * _scale,
|
|
|
- CarType = it.CarType,
|
|
|
- SpentCash = it.PC * _rate * _scale,
|
|
|
+ Date = it.Date,
|
|
|
+ CarFee = it.CarCost * _rate * _scale,
|
|
|
+ CarType = it.CarType,
|
|
|
+ DriverFee = it.CFS * _rate * _scale,
|
|
|
+ DriverTipsFee = it.DRVTips * _rate * _scale,
|
|
|
+ DriverMealSubsidy = it.CFM * _rate * _scale,
|
|
|
+ DriverOvertimeFee = it.CFOF * _rate * _scale,
|
|
|
+ GuideFee = it.TGS * _rate * _scale,
|
|
|
+ GuideOvertimeFee = it.TGOF * _rate * _scale,
|
|
|
+ GuideMealSubsidy = it.TGM * _rate * _scale,
|
|
|
+ GuideRoomSubsidy = it.TGA * _rate * _scale,
|
|
|
+ GuideCarFare = it.TGTF * _rate * _scale,
|
|
|
+ GuideSpotFee = it.TGEF * _rate * _scale,
|
|
|
+ GuideTipsFee = it.TGTips * _rate * _scale,
|
|
|
+ Breakfast = it.B * _rate * _scale,
|
|
|
+ Lunch = it.L * _rate * _scale,
|
|
|
+ Dinner = it.D * _rate * _scale,
|
|
|
+ TicketFee = it.EF * _rate * _scale,
|
|
|
+ SpentCash = it.PC * _rate * _scale,
|
|
|
+ LeadersFee = it.TLF * _rate * _scale,
|
|
|
+ DrinksSnacksFruitFee = it.B_R_F * _rate * _scale,
|
|
|
+ TravelSupplies = it.TE * _rate * _scale,
|
|
|
})
|
|
|
);
|
|
|
-
|
|
|
break;
|
|
|
case 85:
|
|
|
|