|
|
@@ -10962,6 +10962,8 @@ FROM
|
|
|
return Ok(JsonView(false, "团组出访国家信息为空"));
|
|
|
}
|
|
|
|
|
|
+ var currencies = await GeneralMethod.EnterExitCostOVFeeUsedCurrencyAsync(groupId);
|
|
|
+
|
|
|
var currencyData = await _sqlSugar.Queryable<Sys_SetData>()
|
|
|
.Where(x => x.IsDel == 0 && x.STid == 66)
|
|
|
.ToListAsync();
|
|
|
@@ -10997,6 +10999,11 @@ FROM
|
|
|
otherPrice = parentInfo.OtherPrice1 + parentInfo.OtherPrice2;
|
|
|
}
|
|
|
|
|
|
+ //当前币种汇率值
|
|
|
+ var currRate = 1.0000M;
|
|
|
+ var currencyInfo = currencies.FirstOrDefault(x => x.CurrencyCode == currencyName);
|
|
|
+ if (currencyInfo != null) currRate = currencyInfo.Rate;
|
|
|
+
|
|
|
overseaVehicleCityDatas.add(new
|
|
|
{
|
|
|
item.Id,
|
|
|
@@ -11008,6 +11015,7 @@ FROM
|
|
|
otherPrice,
|
|
|
currency = parentInfo?.Currency ?? 0,
|
|
|
currencyName,
|
|
|
+ currRate,
|
|
|
LastUpdateUserName = sysUers.FirstOrDefault(x => x.Id == item.LastUpdateUserId)?.CnName ?? "-",
|
|
|
item.LastUpdateTime,
|
|
|
item.Remark
|
|
|
@@ -11022,9 +11030,9 @@ FROM
|
|
|
defAirportTransferCoeff = Def_AirportTransferCoeff, //接送机默认报价系数
|
|
|
defServiceCount = Def_ServiceCount, //接送机默认服务次数
|
|
|
defTrainCoeff = Def_TrainCoeff, //火车默认报价系数
|
|
|
- defPullCartCoeff = Def_PullCartCoeff, //拉车车默认报价系数
|
|
|
+ defPullCartCoeff = Def_PullCartCoeff, //拉车默认报价系数
|
|
|
defCityFlightCoeff = Def_CityFlightCoeff, //城市机票默认报价系数
|
|
|
- Currencies = await GeneralMethod.EnterExitCostOVFeeUsedCurrencyAsync(groupId),
|
|
|
+ Currencies = currencies,
|
|
|
data = overseaVehicleCityDatas
|
|
|
};
|
|
|
|