|
@@ -5640,6 +5640,31 @@ FROM
|
|
|
}));
|
|
|
}
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// 团组模块 - 出入境费用 - 文件类型list 跟据省份Id获取
|
|
|
+ /// </summary>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpGet("{provinceId}")]
|
|
|
+ [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
|
|
|
+ public async Task<IActionResult> EnterExitCostFileOwner([FromRoute] int provinceId = 122)
|
|
|
+ {
|
|
|
+ //验证城市归属并给默认值
|
|
|
+ if (provinceId < 1) provinceId = 122;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * 122 四川
|
|
|
+ * 108 贵州
|
|
|
+ * 103 重庆
|
|
|
+ * 132 云南
|
|
|
+ */
|
|
|
+ (SetDataInfoView[] wordTypeData, SetDataInfoView[] excelTypeData) = await _enterExitCostDraftRep.FileOwner(provinceId);
|
|
|
+
|
|
|
+ return Ok(JsonView(true, "查询成功!", new
|
|
|
+ {
|
|
|
+ WordTypeData = wordTypeData,
|
|
|
+ ExcelTypeData = excelTypeData,
|
|
|
+ }));
|
|
|
+ }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 团组模块 - 出入境费用
|
|
@@ -7769,7 +7794,7 @@ FROM
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
|
- /// 团组模块 - 出入境费用-草稿 - 文件类型list 更据省份Id获取
|
|
|
+ /// 团组模块 - 出入境费用-草稿 - 文件类型list 根据省份Id获取
|
|
|
/// </summary>
|
|
|
/// <returns></returns>
|
|
|
[HttpGet("{provinceId}")]
|