|
@@ -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: // 机票
|
|
|
|