|
@@ -6272,16 +6272,6 @@ WHERE
|
|
[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
|
|
[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
|
|
public async Task<IActionResult> StatisticsNowCityOfGroup(StatisticsNowCityOfGroupDto dto)
|
|
public async Task<IActionResult> StatisticsNowCityOfGroup(StatisticsNowCityOfGroupDto dto)
|
|
{
|
|
{
|
|
-
|
|
|
|
- var dt1 = GetCountryOrCityCurrentDateTime("美国", "纽约");
|
|
|
|
- var dt2 = GetCountryOrCityCurrentDateTime("日本", "东京");
|
|
|
|
- var dt3 = GetCountryOrCityCurrentDateTime("加拿大", "多伦多");
|
|
|
|
- var dt4 = GetCountryOrCityCurrentDateTime("韩国", "首尔");
|
|
|
|
- var dt5 = GetCountryOrCityCurrentDateTime("美国", "华盛顿");
|
|
|
|
- var dt6 = GetCountryOrCityCurrentDateTime("印度", "孟买");
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
if (!SharingStaticData.PortTypes.Contains(dto.PortType)) return Ok(JsonView(false, MsgTips.Port));
|
|
if (!SharingStaticData.PortTypes.Contains(dto.PortType)) return Ok(JsonView(false, MsgTips.Port));
|
|
|
|
|
|
var nowLable = DateTime.Now.ToString("yyyy-MM-dd");
|
|
var nowLable = DateTime.Now.ToString("yyyy-MM-dd");
|
|
@@ -6505,7 +6495,7 @@ WHERE
|
|
Items = g.ToList().Select(gg => new { gg.GroupName, gg.Client, gg.StatusText }).ToList()
|
|
Items = g.ToList().Select(gg => new { gg.GroupName, gg.Client, gg.StatusText }).ToList()
|
|
});
|
|
});
|
|
|
|
|
|
-
|
|
|
|
|
|
+ if (!result1.Any()) return Ok(JsonView(false,"今天暂无出行的的团!"));
|
|
return Ok(JsonView(result1));
|
|
return Ok(JsonView(result1));
|
|
}
|
|
}
|
|
|
|
|