12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007 |
-
- using OASystem.Infrastructure.Repositories.System;
- namespace OASystem.API.Controllers
- {
- /// <summary>
- /// 资料相关
- /// </summary>
- //[Authorize]
- [Route("api/[controller]/[action]")]
- public class ResourceController : ControllerBase
- {
- private readonly IMapper _mapper;
- private readonly IConfiguration _config;
- private readonly CarDataRepository _carDataRep;
- private readonly LocalGuideDataRepository _localGuideDataRep;
- private readonly ThreeCodeRepository _ThreeCodeRep;
- private readonly HotelDataRepository _hotelDataRep;
- private readonly ResItemInfoRepository _resItemInfoRep;
- private readonly SetDataRepository _setDataRepository;
- private readonly CountryFeeRepository _countryFeeRep;
- public ResourceController(IMapper mapper, IConfiguration config, CarDataRepository carDataRep,
- LocalGuideDataRepository localGuideDataRep, ThreeCodeRepository threeCodeRep,
- HotelDataRepository hotelDataRep, ResItemInfoRepository resItemInfoRep, SetDataRepository setDataRepository, CountryFeeRepository countryFeeRep)
- {
- _mapper = mapper;
- _config = config;
- _carDataRep = carDataRep;
- _localGuideDataRep = localGuideDataRep;
- _ThreeCodeRep = threeCodeRep;
- _hotelDataRep = hotelDataRep;
- _resItemInfoRep = resItemInfoRep;
- _setDataRepository = setDataRepository;
- _countryFeeRep = countryFeeRep;
- }
- #region 数据类型资料
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> QuerySetData(SetDataDto dto)
- {
- try
- {
- if (dto.DataType == 0)
- {
- return Ok(JsonView(false, "请传类型Id!"));
- }
- var setData = _setDataRepository.QueryDto<Sys_SetData, SetDataView>(s => s.STid == dto.DataType).ToList();
- if (setData.Count == 0)
- {
- return Ok(JsonView(false, "暂无数据!"));
- }
- return Ok(JsonView(true, "查询成功!", setData));
- }
- catch (Exception ex)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
- }
- #endregion
- #region 车公司资料板块
- /// <summary>
- /// 车公司信息查询
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> QueryCarData(QueryCarDataDto dto)
- {
- try
- {
- Result LocalGuide = await _carDataRep.QueryCarData(dto);
- if (LocalGuide.Code == 0)
- {
- return Ok(JsonView(true, "查询成功", LocalGuide.Data));
- }
- else
- {
- return Ok(JsonView(false, LocalGuide.Msg));
- }
- }
- catch (Exception)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
-
-
- }
- /// <summary>
- /// 车公司资料下拉框数据
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> QueryCarSelect()
- {
- try
- {
- var CarData = _carDataRep.QueryDto<Res_CarData, CarDataSelectView>().ToList();
- if (CarData.Count == 0)
- {
- return Ok(JsonView(false, "暂无数据!"));
- }
- CarData.Add(new CarDataSelectView { Id = 0, UnitArea = "全部" });
- CarData = CarData.Where((x, i) => CarData.FindIndex(z => z.UnitArea == x.UnitArea) == i).ToList();
- CarData = CarData.OrderBy(x => x.Id).ToList();
- List<CarDataSelectView> data= new List<CarDataSelectView>();
- foreach (CarDataSelectView car in CarData)
- {
- if (!string.IsNullOrWhiteSpace(car.UnitArea))
- {
- data.Add(car);
- }
- }
- return Ok(JsonView(true, "查询成功", data));
- }
- catch (Exception)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
- }
- /// <summary>
- /// 车公司信息添加
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> AddCarData(AddCarDataDto dto)
- {
- try
- {
- if (dto.UnitArea == "")
- {
- return Ok(JsonView(false, "请检查单位区域是否填写!"));
- }
- if (dto.UnitName == "")
- {
- return Ok(JsonView(false, "请检查单位名称是否填写!"));
- }
- if (dto.Contact == "")
- {
- return Ok(JsonView(false, "请检查单位联系人是否填写!"));
- }
- if (dto.ContactTel == "")
- {
- return Ok(JsonView(false, "请检查联系方式是否填写正确!"));
- }
- var carDada = _carDataRep.QueryDto<Res_CarData, CarDataView>(a => a.UnitArea == dto.UnitArea && a.UnitName == dto.UnitName && a.Contact == dto.Contact && a.ContactTel == dto.ContactTel).ToList();
- if (carDada.Count != 0)
- {
- return Ok(JsonView(false, "该信息已存在,请勿重复添加!"));
- }
- Res_CarData _CarData = _mapper.Map<Res_CarData>(dto);
- int id = await _carDataRep.AddAsyncReturnId(_CarData);
- if (id == 0)
- {
- return Ok(JsonView(false, "添加失败!"));
- }
- return Ok(JsonView(true, "添加成功", new { Id = id }));
- }
- catch (Exception ex)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
- }
-
- /// <summary>
- /// 车公司信息修改
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> UpCarData(UpCarDataDto dto)
- {
- try
- {
- if (dto.UnitArea == "")
- {
- return Ok(JsonView(false, "请检查单位区域是否填写!"));
- }
- if (dto.UnitName == "")
- {
- return Ok(JsonView(false, "请检查单位名称是否填写!"));
- }
- if (dto.Contact == "")
- {
- return Ok(JsonView(false, "请检查单位联系人是否填写!"));
- }
- if (dto.ContactTel == "")
- {
- return Ok(JsonView(false, "请检查联系方式是否填写正确!"));
- }
- bool res = await _carDataRep.UpdateAsync(a => a.Id == dto.Id, a => new Res_CarData
- {
- UnitArea = dto.UnitArea,
- UnitName = dto.UnitName,
- Address = dto.Address,
- Contact = dto.Contact,
- ContactTel = dto.ContactTel,
- ContactEmail = dto.ContactEmail,
- ContactFax = dto.ContactFax,
- CarDes = dto.CarDes,
- CarPicPaths = dto.CarPicPaths,
- OtherInfo = dto.OtherInfo,
- Score = dto.Score,
- QualificationScore = dto.QualificationScore,
- CarAgeScore = dto.CarAgeScore,
- CleanImgScore = dto.CleanImgScore,
- SmellScore = dto.SmellScore,
- WaterPaperScore = dto.WaterPaperScore,
- HardwareScore = dto.HardwareScore,
- TimeScore = dto.TimeScore,
- SafetyScore = dto.SafetyScore,
- DrivingAgeScore = dto.DrivingAgeScore,
- Remark = dto.Remark,
- });
- if (!res) { return Ok(JsonView(false, "修改失败!")); }
- return Ok(JsonView(true, "修改成功"));
- }
- catch (Exception ex)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
- }
- /// <summary>
- /// 车公司信息删除
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> DelCarData(DelCarDataDto dto)
- {
- try
- {
- bool res = await _carDataRep.SoftDeleteByIdAsync<Res_CarData>(dto.Id.ToString(), dto.DeleteUserId);
- if (!res) { return Ok(JsonView(false, "删除失败!")); }
- return Ok(JsonView(true, "删除成功"));
- }
- catch (Exception ex)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
- }
- #endregion
- #region 导游地接资料板块
- /// <summary>
- /// 导游地接资料查询
- /// </summary>
- /// <param name="dto"></param>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> QueryLocalGuide(QueryLocalGuide dto)
- {
- try
- {
- Result LocalGuide = await _localGuideDataRep.QueryLocalGuide(dto);
- if (LocalGuide.Code == 0)
- {
- return Ok(JsonView(true, "查询成功", LocalGuide.Data));
- }
- else
- {
- return Ok(JsonView(false, LocalGuide.Msg));
- }
- }
- catch (Exception ex)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
- }
- /// <summary>
- /// 导游地接资料下拉框数据
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> QueryLocalGuideSelect()
- {
- try
- {
- var LocalGuide = _carDataRep.QueryDto<Res_LocalGuideData, QueryLocalGuideSelectView>().ToList();
- if (LocalGuide.Count == 0)
- {
- return Ok(JsonView(false, "暂无数据!"));
- }
- LocalGuide.Add(new QueryLocalGuideSelectView { Id = 0, UnitArea = "全部" });
- LocalGuide = LocalGuide.Where((x, i) => LocalGuide.FindIndex(z => z.UnitArea == x.UnitArea && z.UnitArea != "") == i).ToList();
- LocalGuide = LocalGuide.OrderBy(x => x.Id).ToList();
- List<QueryLocalGuideSelectView> data = new List<QueryLocalGuideSelectView>();
- foreach (QueryLocalGuideSelectView Local in LocalGuide)
- {
- if (!string.IsNullOrWhiteSpace(Local.UnitArea))
- {
- data.Add(Local);
- }
- }
- return Ok(JsonView(true, "查询成功", data));
- }
- catch (Exception)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
- }
- /// <summary>
- /// 导游地接信息操作(Status:1.新增,2.修改)
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> OperationLocalGuide(LocalGuideOperationDto dto)
- {
- try
- {
- if (dto.UnitArea == "")
- {
- return Ok(JsonView(false, "请检查单位区域是否填写!"));
- }
- if (dto.UnitName == "")
- {
- return Ok(JsonView(false, "请检查单位名称是否填写!"));
- }
- if (dto.Contact == "")
- {
- return Ok(JsonView(false, "请检查单位联系人是否填写!"));
- }
- if (dto.ContactTel == "")
- {
- return Ok(JsonView(false, "请检查联系方式是否填写正确!"));
- }
- Result result = await _localGuideDataRep.LocalGuideOperation(dto);
- if (result.Code != 0)
- {
- return Ok(JsonView(false, result.Msg));
- }
- return Ok(JsonView(true, result.Msg));
- }
- catch (Exception ex)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
- }
- /// <summary>
- /// 导游地接信息操作(删除)
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> DelLocalGuide(LocalGuideDelDto dto)
- {
- try
- {
- var res = await _localGuideDataRep.SoftDeleteByIdAsync<Res_LocalGuideData>(dto.Id.ToString(), dto.DeleteUserId);
- if (!res)
- {
- return Ok(JsonView(false, "删除失败"));
- }
- return Ok(JsonView(true, "删除成功!"));
- }
- catch (Exception ex)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
- }
- #endregion
- #region 机场三字码信息
- /// <summary>
- /// 机场三字码查询
- /// </summary>
- /// <param name="dto"></param>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> QueryThreeCode(DtoBase dto)
- {
- try
- {
- if (dto.PortType == 1)
- {
- var ThreeCode = _localGuideDataRep.QueryDto<Res_ThreeCode, ThreeCodeView>().ToList();
- if (ThreeCode.Count == 0)
- {
- return Ok(JsonView(false, "暂无数据!"));
- }
- ThreeCode = ThreeCode.OrderByDescending(s => s.CreateTime).ToList();
- return Ok(JsonView(true, "查询成功", ThreeCode));
- }
- else if (dto.PortType == 2)
- {
- //分页写法
- if (dto.PageIndex == 0 || dto.PageSize == 0)
- {
- return Ok(JsonView(false, "请传入PageIndex和PageSize参数"));
- }
- JsonView _ThreeCode = await _ThreeCodeRep.QuerThreeCode(dto.PageIndex, dto.PageSize);
- if (_ThreeCode.Code != 0)
- {
- return Ok(JsonView(false, _ThreeCode.Msg));
- }
- return Ok(_ThreeCode);
- }
- else
- {
- return Ok(JsonView(false, "请传入PortType参数!1:Web,2:Android,3:IOS"));
- }
- }
- catch (Exception ex)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
- }
- /// <summary>
- /// 机场三字码资料操作(Status:1.新增,2.修改)
- /// </summary>
- /// <param name="dto"></param>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> OperationThreeCode(ThreeCodeOperationDto dto)
- {
- try
- {
- if (dto.Three == "")
- {
- return Ok(JsonView(false, "请检查三字码是否填写!"));
- }
- if (dto.Country == "")
- {
- return Ok(JsonView(false, "请检查国家是否填写!"));
- }
- if (dto.City == "")
- {
- return Ok(JsonView(false, "请检查城市是否填写正确!"));
- }
- if (dto.AirPort == "")
- {
- return Ok(JsonView(false, "请检查机场是否填写正确!"));
- }
- Result result = await _ThreeCodeRep.ThreeCodeOperation(dto);
- if (result.Code != 0)
- {
- return Ok(JsonView(false, result.Msg));
- }
- return Ok(JsonView(true, result.Msg));
- }
- catch (Exception ex)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
- }
- /// <summary>
- /// 机场三字码资料操作(删除)
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> DelThreeCode(ThreeCodeDelDto dto)
- {
- try
- {
- var res = await _ThreeCodeRep.SoftDeleteByIdAsync<Res_ThreeCode>(dto.Id.ToString(), dto.DeleteUserId);
- if (!res)
- {
- return Ok(JsonView(false, "删除失败"));
- }
- return Ok(JsonView(true, "删除成功!"));
- }
- catch (Exception ex)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
- }
- #endregion
- #region 酒店资料数据
- /// <summary>
- /// 酒店信息查询
- /// </summary>
- /// <param name="dto"></param>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> QueryHotelData(QueryHotelDataDto dto)
- {
- try
- {
- Result hotelData = await _hotelDataRep.QueryHotelData(dto);
- if (hotelData.Code == 0)
- {
- return Ok(JsonView(true, "查询成功", hotelData.Data));
- }
- else
- {
- return Ok(JsonView(false, hotelData.Msg));
- }
- }
- catch (Exception ex)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
- }
- /// <summary>
- /// 酒店资料下拉框数据
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> QueryHotelDataSelect()
- {
- try
- {
- var HotelData = _carDataRep.QueryDto<Res_HotelData, QueryHotelDataSelect>().ToList();
- if (HotelData.Count == 0)
- {
- return Ok(JsonView(false, "暂无数据!"));
- }
- HotelData.Add(new QueryHotelDataSelect { Id = 0, City = "全部" });
- HotelData = HotelData.Where((x, i) => HotelData.FindIndex(z => z.City == x.City && z.City != "") == i).ToList();
- HotelData = HotelData.OrderBy(x => x.Id).ToList();
- List<QueryHotelDataSelect> data = new List<QueryHotelDataSelect>();
- foreach (QueryHotelDataSelect Hotel in HotelData)
- {
- if (!string.IsNullOrWhiteSpace(Hotel.City))
- {
- data.Add(Hotel);
- }
- }
- return Ok(JsonView(true, "查询成功", data));
- }
- catch (Exception)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
- }
- /// <summary>
- /// 酒店资料操作(Status:1.新增,2.修改)
- /// </summary>
- /// <param name="dto"></param>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> OperationHotelData(OperationHotelDto dto)
- {
- try
- {
- if (dto.City == "")
- {
- return Ok(JsonView(false, "请检查酒店所在城市是否填写!"));
- }
- if (dto.Name == "")
- {
- return Ok(JsonView(false, "请检查酒店名称是否填写!"));
- }
- if (dto.Address == "")
- {
- return Ok(JsonView(false, "请检查酒店地址是否填写正确!"));
- }
- if (dto.Tel == "")
- {
- return Ok(JsonView(false, "请检查酒店联系方式是否填写正确!"));
- }
- Result result = await _hotelDataRep.OperationHotelData(dto);
- if (result.Code != 0)
- {
- return Ok(JsonView(false, result.Msg));
- }
- return Ok(JsonView(true, result.Msg));
- }
- catch (Exception ex)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
- }
- /// <summary>
- /// 酒店资料操作(删除)
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> DelHotelData(DelHotelDataDto dto)
- {
- try
- {
- var res = await _hotelDataRep.SoftDeleteByIdAsync<Res_HotelData>(dto.Id.ToString(), dto.DeleteUserId);
- if (!res)
- {
- return Ok(JsonView(false, "删除失败"));
- }
- return Ok(JsonView(true, "删除成功!"));
- }
- catch (Exception ex)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
- }
- #endregion
- #region 签证费用资料
- /// <summary>
- /// 签证费用资料查询
- /// </summary>
- /// <param name="dto"></param>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> QueryCountryFeeCost(DtoBase dto)
- {
- try
- {
- if (dto.PortType == 1)
- {
- var CountryFee = _countryFeeRep.QueryDto<Res_CountryFeeCost, CountryFeeCostView>().ToList();
- if (CountryFee.Count == 0)
- {
- return Ok(JsonView(false, "暂无数据!"));
- }
- CountryFee = CountryFee.OrderByDescending(s => s.CreateTime).ToList();
- return Ok(JsonView(true, "查询成功", CountryFee));
- }
- else if (dto.PortType == 2)
- {
- var CountryFee = _countryFeeRep.QueryDto<Res_CountryFeeCost, CountryFeeCostView>().ToList();
- if (CountryFee.Count == 0)
- {
- return Ok(JsonView(false, "暂无数据!"));
- }
- CountryFee = CountryFee.OrderByDescending(s => s.CreateTime).ToList();
- return Ok(JsonView(true, "查询成功", CountryFee));
- }
- else
- {
- return Ok(JsonView(false, "请传入PortType参数!1:Web,2:Android,3:IOS"));
- }
- }
- catch (Exception ex)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
-
- }
- /// <summary>
- /// 签证费用资料操作(Status:1.新增,2.修改)
- /// </summary>
- /// <param name="dto"></param>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> OperationCountryFeeCost(OperationCountryFeeCostDto dto)
- {
- try
- {
- if (dto.VisaContinent == "")
- {
- return Ok(JsonView(false, "请检查州名是否填写!"));
- }
- if (dto.VisaCountry == "")
- {
- return Ok(JsonView(false, "请检查国家名是否填写!"));
- }
- if (dto.VisaTime == "1")
- {
- return Ok(JsonView(false, "请检一般签证时间是否填写正确!"));
- }
- if (dto.UrgentTime == "1")
- {
- return Ok(JsonView(false, "请检加急时间是否填写正确!"));
- }
- if (dto.VisaPrice == 0)
- {
- return Ok(JsonView(false, "请检查签证费用是否填写正确,小数点后可1到2位!"));
- }
- if (dto.VisaPrice == 1)
- {
- return Ok(JsonView(false, "请检查签证加急费用是否填写正确,小数点后可1到2位!"));
- }
- Result result = await _countryFeeRep.OperationCountryFeeCost(dto);
- if (result.Code != 0)
- {
- return Ok(JsonView(false, result.Msg));
- }
- return Ok(JsonView(true, result.Msg));
- }
- catch (Exception ex)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
- }
- /// <summary>
- /// 签证费用资料操作(删除)
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> DelCountryFeeCost(DelCountryFeeCostDto dto)
- {
- try
- {
- var res = await _countryFeeRep.SoftDeleteByIdAsync<Res_CountryFeeCost>(dto.Id.ToString(), dto.DeleteUserId);
- if (!res)
- {
- return Ok(JsonView(false, "删除失败"));
- }
- return Ok(JsonView(true, "删除成功!"));
- }
- catch (Exception ex)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
- }
- #endregion
- #region 物料信息、供应商维护
- #region 供应商
- /// <summary>
- /// 物料供应商查询
- /// </summary>
- /// <param name="paras">Json序列化</param>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> PostSearchItemVendor(string paras)
- {
- if (string.IsNullOrEmpty(paras))
- {
- return Ok(JsonView(false, "参数为空"));
- }
- Search_ResItemVendorDto _ItemVendorDto = System.Text.Json.JsonSerializer.Deserialize<Search_ResItemVendorDto>(paras);
- if (_ItemVendorDto != null)
- {
- if (_ItemVendorDto.SearchType == 2) //获取列表
- {
- Res_ItemVendorListView rstList = _resItemInfoRep.GetVendorList(_ItemVendorDto);
- return Ok(rstList);
- }
- else
- {
- Res_ItemVendorView rstInfo = _resItemInfoRep.getVendorInfo(_ItemVendorDto);
- return Ok(rstInfo);
- }
- }
- else
- {
- return Ok(JsonView(false, "参数反序列化失败"));
- }
- return Ok(JsonView(false));
- }
- /// <summary>
- /// 创建/编辑/删除供应商信息
- /// </summary>
- /// <param name="_dto"></param>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> PostEditItemVendor(Edit_ResItemVendorDto _dto)
- {
- bool rst = false;
- if (_dto.EditType >= 0)
- {
- if (string.IsNullOrEmpty(_dto.VendorFullName))
- {
- return Ok(JsonView(false, "全称未填写"));
- }
- if (string.IsNullOrEmpty(_dto.VendorLinker))
- {
- return Ok(JsonView(false, "联系人未填写"));
- }
- if (string.IsNullOrEmpty(_dto.VendorMobile))
- {
- return Ok(JsonView(false, "联系人手机号未填写"));
- }
- if (_dto.EditType == 0)
- {
- var checkEmpty = _resItemInfoRep.Query<Res_ItemVendor>(s => s.FullName == _dto.VendorFullName).First();
- if (checkEmpty != null)
- {
- return Ok(JsonView(false, "已存在同名供应商"));
- }
- rst = await _resItemInfoRep.addVendorInfo(_dto);
- }
- else if (_dto.EditType == 1)
- {
- if (_dto.VendorId > 0)
- {
- Res_ItemVendor _entity = _mapper.Map<Res_ItemVendor>(_dto);
- rst = await _resItemInfoRep.updVendorInfo(_entity);
- }
- else
- {
- return Ok(JsonView(false, "供应商不存在"));
- }
- }
- }
- else
- {
- if (_dto.VendorId < 1 || _dto.SysUserId < 1)
- {
- return Ok(JsonView(false, "用户Id或供应商Id不存在"));
- }
- Res_ItemVendor _entity = _mapper.Map<Res_ItemVendor>(_dto);
- rst = await _resItemInfoRep.delVendorInfo(_entity);
- }
- return Ok(JsonView(rst));
- }
- #endregion
- #region 物料信息
- /// <summary>
- /// 物料信息查询
- /// </summary>
- /// <param name="paras">Json序列化</param>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> PostSearchItemInfo(string paras)
- {
- if (string.IsNullOrEmpty(paras))
- {
- return Ok(JsonView(false, "参数为空"));
- }
- Search_ItemInfoDto _ItemInfoDto = System.Text.Json.JsonSerializer.Deserialize<Search_ItemInfoDto>(paras);
- if (_ItemInfoDto != null)
- {
- if (_ItemInfoDto.SearchType == 2) //获取列表
- {
- Res_ItemInfoListView rstList = _resItemInfoRep.GetItemList(_ItemInfoDto);
- return Ok(rstList);
- }
- else
- {
- Res_ItemInfoView rstInfo = _resItemInfoRep.getItemInfo(_ItemInfoDto);
- return Ok(rstInfo);
- }
- }
- else
- {
- return Ok(JsonView(false, "参数反序列化失败"));
- }
- return Ok(JsonView(false));
- }
- /// <summary>
- /// 创建/编辑/删除物料信息
- /// </summary>
- ///
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> PostEditItemInfo(Edit_ResItemInfoDto _dto)
- {
- bool rst = false;
- if (_dto.EditType >= 0)
- {
- if (_dto.VendorId < 1)
- {
- return Ok(JsonView(false, "未选择供应商"));
- }
- if (string.IsNullOrEmpty(_dto.ItemName))
- {
- return Ok(JsonView(false, "物料名称为空"));
- }
- if (_dto.SetDataId < 1)
- {
- return Ok(JsonView(false, "未选择物料类型"));
- }
- if (_dto.SysUserId < 1)
- {
- return Ok(JsonView(false, "当前操作用户Id为空"));
- }
- if (_dto.CurrRate <= 0)
- {
- return Ok(JsonView(false, "物料录入价格不能小于等于0"));
- }
- if (_dto.EditType == 0)
- {
- //判断物料名称、类型、供应商全部重复
- var checkEmpty = _resItemInfoRep.Query<Res_ItemDetailInfo>(s => s.ItemName == _dto.ItemName && s.SetDataId == _dto.SetDataId && s.VendorId == _dto.VendorId).First();
- if (checkEmpty != null)
- {
- return Ok(JsonView(false, "已存在重复物料信息"));
- }
- Res_ItemDetailInfo _entity = _mapper.Map<Res_ItemDetailInfo>(_dto);
- DateTime dtNow = DateTime.Now;
- _entity.CreateUserId = _dto.SysUserId;
- _entity.IsDel = 0;
- _entity.MaxRate = _dto.CurrRate;
- _entity.MaxDt = dtNow;
- _entity.CurrRate = _dto.CurrRate;
- _entity.CurrDt = dtNow;
- _entity.MinRate = _dto.CurrRate;
- _entity.MinDt = dtNow;
- rst = await _resItemInfoRep.AddAsync<Res_ItemDetailInfo>(_entity) > 0;
- }
- else if (_dto.EditType == 1)
- {
- if (_dto.ItemId > 0)
- {
- Res_ItemDetailInfo _entity = _mapper.Map<Res_ItemDetailInfo>(_dto);
- _entity.Id = _dto.ItemId;
- rst = await _resItemInfoRep.updItemInfo(_entity);
- }
- else
- {
- return Ok(JsonView(false, "供应商不存在"));
- }
- }
- }
- else
- {
- if (_dto.ItemId < 1 || _dto.SysUserId < 1)
- {
- return Ok(JsonView(false, "用户Id或物料信息Id不存在"));
- }
- Res_ItemDetailInfo _entity = _mapper.Map<Res_ItemDetailInfo>(_dto);
- rst = await _resItemInfoRep.delItemInfo(_entity);
- }
- return Ok(JsonView(rst));
- }
- #endregion
- #region 物料类型获取
- /// <summary>
- /// 物料类型列表获取
- /// </summary>
- /// <param name="paras">Json序列化</param>
- /// <returns></returns>
- [HttpGet]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> GetItemTypeListBySetData()
- {
- List<SetDataView> list = _resItemInfoRep.GetItemTypeListBySetData();
- return Ok(JsonView(list));
- }
- #endregion
- #endregion
- }
-
- }
|