FinancialController.cs 143 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279
  1. using Aspose.Cells;
  2. using Microsoft.AspNetCore.Http;
  3. using Microsoft.AspNetCore.Mvc;
  4. using OASystem.API.OAMethodLib;
  5. using OASystem.API.OAMethodLib.File;
  6. using OASystem.Domain;
  7. using OASystem.Domain.Dtos.Financial;
  8. using OASystem.Domain.Dtos.Groups;
  9. using OASystem.Domain.Entities.Financial;
  10. using OASystem.Domain.Entities.Groups;
  11. using OASystem.Domain.ViewModels.Financial;
  12. using OASystem.Domain.ViewModels.Groups;
  13. using OASystem.Domain.ViewModels.SmallFun;
  14. using OASystem.Infrastructure.Repositories.Financial;
  15. using OASystem.Infrastructure.Repositories.Groups;
  16. using SqlSugar;
  17. using StackExchange.Redis;
  18. using System.Data;
  19. using static OpenAI.GPT3.ObjectModels.SharedModels.IOpenAiModels;
  20. using System.Web;
  21. using Aspose.Words;
  22. using NPOI.HSSF.Util;
  23. using OASystem.Domain.Entities.Customer;
  24. using System.IO.Compression;
  25. using NPOI.SS.UserModel;
  26. using System.Net.Http;
  27. using Google.Protobuf;
  28. using NPOI.SS.Formula.Functions;
  29. using System.Globalization;
  30. using NPOI.POIFS.Properties;
  31. using SixLabors.ImageSharp.ColorSpaces;
  32. using OASystem.Domain.ViewModels.QiYeWeChat;
  33. using System.Diagnostics;
  34. namespace OASystem.API.Controllers
  35. {
  36. /// <summary>
  37. /// 财务模块
  38. /// </summary>
  39. [Route("api/[controller]/[action]")]
  40. [ApiController]
  41. public class FinancialController : ControllerBase
  42. {
  43. private readonly IMapper _mapper;
  44. private readonly IConfiguration _config;
  45. private readonly SqlSugarClient _sqlSugar;
  46. private readonly HttpClient _httpClient;
  47. private readonly SetDataTypeRepository _setDataTypeRep;
  48. private readonly DailyFeePaymentRepository _daiRep; //日付申请仓库
  49. private readonly TeamRateRepository _teamRateRep; //团组汇率仓库
  50. private readonly ForeignReceivablesRepository _ForForeignReceivablesRep; //对外收款账单仓库
  51. private readonly ProceedsReceivedRepository _proceedsReceivedRep; //已收款项仓库
  52. private readonly PaymentRefundAndOtherMoneyRepository _paymentRefundAndOtherMoneyRep; //收款退还与其他款项 仓库
  53. private readonly DelegationInfoRepository _delegationInfoRep; //团组信息 仓库
  54. /// <summary>
  55. /// 初始化
  56. /// </summary>
  57. public FinancialController(IMapper mapper, IConfiguration configuration, DailyFeePaymentRepository daiRep, SqlSugarClient sqlSugar, SetDataTypeRepository setDataTypeRep,
  58. TeamRateRepository teamRateRep, ForeignReceivablesRepository ForForeignReceivablesRep, ProceedsReceivedRepository proceedsReceivedRep,
  59. PaymentRefundAndOtherMoneyRepository paymentRefundAndOtherMoneyRep, HttpClient httpClient, DelegationInfoRepository delegationInfoRep)
  60. {
  61. _mapper = mapper;
  62. _config = configuration;
  63. _daiRep = daiRep;
  64. _sqlSugar = sqlSugar;
  65. _setDataTypeRep = setDataTypeRep;
  66. _teamRateRep = teamRateRep;
  67. _ForForeignReceivablesRep = ForForeignReceivablesRep;
  68. _proceedsReceivedRep = proceedsReceivedRep;
  69. _paymentRefundAndOtherMoneyRep = paymentRefundAndOtherMoneyRep;
  70. _httpClient = httpClient;
  71. _delegationInfoRep = delegationInfoRep;
  72. }
  73. #region 日付申请
  74. /// <summary>
  75. /// 获取日付申请 基础数据源
  76. /// </summary>
  77. /// <param name="dto"> 日付申请 分页 dto</param>
  78. /// <returns></returns>
  79. [HttpPost]
  80. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  81. public async Task<IActionResult> PostPageSearchDailyPaymentPriceTypeData(PortDtoBase dto)
  82. {
  83. var result = await _daiRep.GetPagePriceTypeData(dto);
  84. if (result == null || result.Code != 0)
  85. {
  86. return Ok(JsonView(false, result.Msg));
  87. }
  88. var data = result.Data;
  89. return Ok(JsonView(data));
  90. }
  91. /// <summary>
  92. /// 获取日付申请 基础数据源 - 转账表识
  93. /// </summary>
  94. /// <param name="dto"> 日付申请 分页 dto</param>
  95. /// <returns></returns>
  96. [HttpPost]
  97. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  98. public async Task<IActionResult> GetSearchDailyPaymentPriceTypeAddData(PortDtoBase dto)
  99. {
  100. var result = await _daiRep.GetPriceTypeAddData(dto);
  101. if (result == null || result.Code != 0)
  102. {
  103. return Ok(JsonView(false, result.Msg));
  104. }
  105. var data = result.Data;
  106. return Ok(JsonView(data));
  107. }
  108. /// <summary>
  109. /// 日付申请 Page Search
  110. /// </summary>
  111. /// <param name="dto"> 日付申请 分页 dto</param>
  112. /// <returns></returns>
  113. [HttpPost]
  114. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  115. public async Task<IActionResult> PostPageSearchDailyPaymentList(PageDailyFeePaymentDto dto)
  116. {
  117. var result = await _daiRep.GetPageSearchAll(dto);
  118. if (result == null || result.Code != 0)
  119. {
  120. return Ok(JsonView(false, result.Msg));
  121. }
  122. var data = result.Data;
  123. if (data == null)
  124. {
  125. return Ok(JsonView(false, result.Msg));
  126. }
  127. return Ok(JsonView(data));
  128. }
  129. /// <summary>
  130. /// 日付申请 Single Search By Id
  131. /// </summary>
  132. /// <param name="dto"></param>
  133. /// <returns></returns>
  134. [HttpPost]
  135. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  136. public async Task<IActionResult> PostSearchDailyPaymentInfo(SearchDailyFeePaymentDto dto)
  137. {
  138. var result = await _daiRep.GetSearchById(dto);
  139. if (result == null || result.Code != 0)
  140. {
  141. return Ok(JsonView(false, result.Msg));
  142. }
  143. return Ok(JsonView(result.Data));
  144. }
  145. /// <summary>
  146. /// 日付申请 添加
  147. /// </summary>
  148. /// <param name="dto"> 日付申请 添加 dto</param>
  149. /// <returns></returns>
  150. [HttpPost]
  151. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  152. public async Task<IActionResult> PostAddDailyPayment(AddDailyFeePaymentDto dto)
  153. {
  154. var result = await _daiRep.Add(dto);
  155. if (result == null || result.Code != 0)
  156. {
  157. return Ok(JsonView(false, result.Msg));
  158. }
  159. return Ok(JsonView(true));
  160. }
  161. /// <summary>
  162. /// 日付申请 Update
  163. /// </summary>
  164. /// <param name="dto"> 日付申请 修改 dto</param>
  165. /// <returns></returns>
  166. [HttpPost]
  167. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  168. public async Task<IActionResult> PostEditDailyPayment(EditDailyFeePaymentDto dto)
  169. {
  170. var result = await _daiRep.Edit(dto);
  171. if (result == null || result.Code != 0)
  172. {
  173. return Ok(JsonView(false, result.Msg));
  174. }
  175. return Ok(JsonView(true));
  176. }
  177. /// <summary>
  178. /// 日付申请 Del
  179. /// </summary>
  180. /// <param name="dto"> 日付申请 删除 dto</param>
  181. /// <returns></returns>
  182. [HttpPost]
  183. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  184. public async Task<IActionResult> PostDelDailyPayment(DelDailyFeePaymentDto dto)
  185. {
  186. var result = await _daiRep.Del(dto);
  187. if (result == null || result.Code != 0)
  188. {
  189. return Ok(JsonView(false, result.Msg));
  190. }
  191. return Ok(JsonView(true));
  192. }
  193. /// <summary>
  194. /// 日付申请 财务审核
  195. /// </summary>
  196. /// <param name="dto"> dto </param>
  197. /// <returns></returns>
  198. [HttpPost]
  199. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  200. public async Task<IActionResult> PostDelDailyPaymentAudit(DP_AuditStatusDto dto)
  201. {
  202. var result = await _daiRep.DelDailyPaymentAudit(dto);
  203. if (result == null || result.Code != 0)
  204. {
  205. return Ok(JsonView(false, result.Msg));
  206. }
  207. return Ok(JsonView(true));
  208. }
  209. /// <summary>
  210. /// 日付申请 Single Excel Download
  211. /// </summary>
  212. /// <param name="dto"> dto </param>
  213. /// <returns></returns>
  214. [HttpPost]
  215. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  216. public async Task<IActionResult> PostExcelDailyPaymentDownload(SearchDailyFeePaymentDto dto)
  217. {
  218. if (dto.PortType == 1 || dto.PortType == 2)
  219. {
  220. Fin_DailyFeePaymentInfolView feeData = new Fin_DailyFeePaymentInfolView();
  221. string feeSql = string.Format(@"Select * From Fin_DailyFeePayment
  222. Where IsDel=0 And Id = {0} ", dto.Id);
  223. feeData = await _sqlSugar.SqlQueryable<Fin_DailyFeePaymentInfolView>(feeSql).FirstAsync();
  224. if (feeData == null)
  225. {
  226. return Ok(JsonView(false, "暂无数据!"));
  227. }
  228. string feeContentSql = string.Format(@"Select * From Fin_DailyFeePaymentContent
  229. Where IsDel=0 And DFPId = {0} ", dto.Id);
  230. feeData.FeeContents = await _sqlSugar.SqlQueryable<Fin_DailyFeePaymentContentInfolView>(feeContentSql).ToListAsync();
  231. if (feeData != null)
  232. {
  233. string userName = string.Empty;
  234. string userSql = string.Format("Select * From Sys_Users Where Id={0} And Isdel = {1}", feeData.CreateUserId, 0);
  235. Sys_Users user = await _sqlSugar.SqlQueryable<Sys_Users>(userSql).FirstAsync();
  236. if (user != null) { userName = user.CnName; }
  237. var setData = _setDataTypeRep.QueryDto<Sys_SetData, Fin_DailyFeePaymentPagePriceSubTypeView>().ToList();
  238. //48人员费用 49办公费用 50 销售费用 51 其他费用 55 大运会
  239. var priceSubTypeData = setData.Where(s => s.STid == 55).ToList();
  240. Dictionary<string, object> pairs = new Dictionary<string, object>();
  241. List<DataTable> datas = new List<DataTable>();
  242. //if (priceSubTypeData.Where(s => s.Id == feeData.PriceTypeId).ToList().Count() > 0)//大运会专属模板
  243. //{
  244. // //AsposeHelper.ExpertExcelToModel("日常费用付款申请模板-大运会数据.xls", "DailyPayment", "大运会所有日常费用付款申请.xls",
  245. // // pairs, datas);
  246. //}
  247. //else //日付常规模板
  248. //{
  249. pairs.Clear();
  250. pairs.Add("Opertor", userName);
  251. pairs.Add("DateTime", feeData.CreateTime.ToString("yyyy-MM-dd HH:mm:ss"));
  252. pairs.Add("FAuditStatus", feeData.FAuditDesc);
  253. pairs.Add("MAuditStatus", feeData.MAuditDesc);
  254. pairs.Add("SumPrice", feeData.SumPrice);
  255. DataTable data = AsposeHelper.ListToDataTable("DailyFeePayment", feeData.FeeContents);
  256. datas.Clear();
  257. datas.Add(data);
  258. string fileName = string.Format("{0}-日常费用付款申请.xlsx", feeData.Instructions);
  259. string msg = AsposeHelper.ExpertExcelToModel("日常费用付款申请模板.xlsx", "DailyPayment", fileName, pairs, datas);
  260. return Ok(JsonView(true, msg));
  261. //}
  262. }
  263. else
  264. {
  265. return Ok(JsonView(false, "暂无数据!"));
  266. }
  267. }
  268. return Ok(JsonView(true));
  269. }
  270. #endregion
  271. #region 团组提成
  272. /// <summary>
  273. /// 提成 Page Search
  274. /// </summary>
  275. /// <param name="dto"> 提成 分页 dto</param>
  276. /// <returns></returns>
  277. [HttpPost]
  278. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  279. public async Task<IActionResult> PostPageSearchCommissionList(GroupCommissionDto dto)
  280. {
  281. var data = await GroupCommission.GetCommissionPageList(dto);
  282. return Ok(JsonView(data.Data));
  283. }
  284. #endregion
  285. #region 团组汇率
  286. /// <summary>
  287. /// 团组汇率 Select数据源(团组列,汇率列)
  288. /// </summary>
  289. /// <param name="dto"></param>
  290. /// <returns></returns>
  291. [HttpPost]
  292. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  293. public async Task<IActionResult> GetGroupRateDataSources(TeamRateDto dto)
  294. {
  295. try
  296. {
  297. //迁移数据更新团组汇率
  298. //Result teamRateData1 = await _teamRateRep.GetGroupRateChangeData();
  299. //var data = await _teamRateRep.PostGroupTeamRateHot();
  300. Stopwatch stopwatch = Stopwatch.StartNew();
  301. GroupNameDto groupNameDto = new GroupNameDto() { PortType = dto.PortType };
  302. var groups = await _delegationInfoRep.GetGroupNameList(groupNameDto);
  303. List<CurrencyHot> _currData = new List<CurrencyHot>();
  304. string currData = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("GroupTeamCurrencyData");//string 取
  305. if (!string.IsNullOrEmpty(currData))
  306. {
  307. _currData = JsonConvert.DeserializeObject<List<CurrencyHot>>(currData);
  308. }
  309. else
  310. {
  311. _currData = await _teamRateRep.PostGroupTeamRateHot();
  312. //过期时间 25 Hours
  313. TimeSpan ts = DateTime.Now.AddHours(25).TimeOfDay;
  314. await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync("GroupTeamCurrencyData", JsonConvert.SerializeObject(_currData), ts);
  315. }
  316. var _data = new { GroupData = groups.Data, TeamRateData = _currData };
  317. stopwatch.Stop();
  318. return Ok(JsonView(true, $"查询成功!耗时:{stopwatch.ElapsedMilliseconds / 1000}s", _data));
  319. }
  320. catch (Exception ex)
  321. {
  322. return Ok(JsonView(false, ex.Message));
  323. }
  324. }
  325. ///// <summary>
  326. ///// 团组汇率 changge
  327. ///// </summary>
  328. ///// <returns></returns>
  329. //[HttpPost]
  330. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  331. //public async Task<IActionResult> ChangeGroupRateInfo()
  332. //{
  333. // try
  334. // {
  335. // Result teamRateData = await _teamRateRep.GetGroupRateChangeData();
  336. // if (teamRateData.Code != 0)
  337. // {
  338. // return Ok(JsonView(false, teamRateData.Msg));
  339. // }
  340. // return Ok(JsonView(true, teamRateData.Msg, teamRateData.Data));
  341. // }
  342. // catch (Exception ex)
  343. // {
  344. // return Ok(JsonView(false, ex.Message));
  345. // throw;
  346. // }
  347. //}
  348. /// <summary>
  349. /// 团组汇率 Select汇率详情
  350. /// </summary>
  351. /// <param name="dto"></param>
  352. /// <returns></returns>
  353. [HttpPost]
  354. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  355. public async Task<IActionResult> GetGroupRateInfo(TeamRateInfoDto dto)
  356. {
  357. try
  358. {
  359. Result teamRateData = await _teamRateRep.GetGroupRateInfoByDiid(dto);
  360. if (teamRateData.Code != 0)
  361. {
  362. return Ok(JsonView(false, teamRateData.Msg));
  363. }
  364. return Ok(JsonView(true, teamRateData.Msg, teamRateData.Data));
  365. }
  366. catch (Exception ex)
  367. {
  368. return Ok(JsonView(false, ex.Message));
  369. throw;
  370. }
  371. }
  372. /// <summary>
  373. /// 团组汇率 添加 or 更新
  374. /// </summary>
  375. /// <param name="dto"></param>
  376. /// <returns></returns>
  377. [HttpPost]
  378. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  379. public async Task<IActionResult> PostGroupRateUpdate(TeamRateUpdateDto dto)
  380. {
  381. try
  382. {
  383. Result teamRateData = await _teamRateRep.PostGroupRateUpdate(dto);
  384. if (teamRateData.Code != 0)
  385. {
  386. return Ok(JsonView(false, teamRateData.Msg));
  387. }
  388. return Ok(JsonView(true, teamRateData.Msg, teamRateData.Data));
  389. }
  390. catch (Exception ex)
  391. {
  392. return Ok(JsonView(false, ex.Message));
  393. throw;
  394. }
  395. }
  396. #endregion
  397. #region 对外收款账单 关联已收款项
  398. /// <summary>
  399. /// 对外收款账单 Select数据源(团组名,币种,汇款方式)
  400. /// 关联已收款项
  401. /// </summary>
  402. /// <param name="dto"></param>
  403. /// <returns></returns>
  404. [HttpPost]
  405. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  406. public async Task<IActionResult> GetForeignReceivablesDataSources()
  407. {
  408. try
  409. {
  410. Result ffrData = await _ForForeignReceivablesRep.GetDataSource();
  411. if (ffrData.Code != 0)
  412. {
  413. return Ok(JsonView(false, ffrData.Msg));
  414. }
  415. return Ok(JsonView(true, ffrData.Msg, ffrData.Data));
  416. }
  417. catch (Exception ex)
  418. {
  419. return Ok(JsonView(false, ex.Message));
  420. throw;
  421. }
  422. }
  423. /// <summary>
  424. /// 对外收款账单
  425. /// 账单详情
  426. /// 关联已收款项
  427. /// </summary>
  428. /// <param name="dto"></param>
  429. /// <returns></returns>
  430. [HttpPost]
  431. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  432. public async Task<IActionResult> GetGroupReceivablesInfoByDiId(ForForeignReceivablesInfoDto dto)
  433. {
  434. try
  435. {
  436. Result ffrData = await _ForForeignReceivablesRep.GetGroupReceivablesInfoByDiId(dto);
  437. if (ffrData.Code != 0)
  438. {
  439. return Ok(JsonView(false, ffrData.Msg));
  440. }
  441. return Ok(JsonView(true, ffrData.Msg, ffrData.Data));
  442. }
  443. catch (Exception ex)
  444. {
  445. return Ok(JsonView(false, ex.Message));
  446. throw;
  447. }
  448. }
  449. /// <summary>
  450. /// 对外收款账单
  451. /// 账单 删除
  452. /// 关联已收款项
  453. /// </summary>
  454. /// <param name="dto"></param>
  455. /// <returns></returns>
  456. [HttpPost]
  457. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  458. public async Task<IActionResult> PostGroupReceivablesDel(DelForForeignReceivablesInfoDto dto)
  459. {
  460. try
  461. {
  462. Result ffrData = await _ForForeignReceivablesRep._Del(dto);
  463. if (ffrData.Code != 0)
  464. {
  465. return Ok(JsonView(false, ffrData.Msg));
  466. }
  467. return Ok(JsonView(true, ffrData.Msg, ffrData.Data));
  468. }
  469. catch (Exception ex)
  470. {
  471. return Ok(JsonView(false, ex.Message));
  472. throw;
  473. }
  474. }
  475. /// <summary>
  476. /// 对外收款账单
  477. /// 添加 And 更新
  478. /// 关联已收款项
  479. /// </summary>
  480. /// <param name="dto"></param>
  481. /// <returns></returns>
  482. [HttpPost]
  483. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  484. public async Task<IActionResult> PostReceivablesOperate(ForeignReceivablesAddAndUpdateDto dto)
  485. {
  486. try
  487. {
  488. Result ffrData = await _ForForeignReceivablesRep.PostReceivablesOperate(dto);
  489. if (ffrData.Code != 0)
  490. {
  491. return Ok(JsonView(false, ffrData.Msg));
  492. }
  493. return Ok(JsonView(true, ffrData.Msg, ffrData.Data));
  494. }
  495. catch (Exception ex)
  496. {
  497. return Ok(JsonView(false, ex.Message));
  498. throw;
  499. }
  500. }
  501. /// <summary>
  502. /// 已收款项
  503. /// 账单 删除
  504. /// 关联已收款项
  505. /// </summary>
  506. /// <param name="dto"></param>
  507. /// <returns></returns>
  508. [HttpPost]
  509. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  510. public async Task<IActionResult> PostAmountReceivedDel(ProceedsReceivedDelDto dto)
  511. {
  512. try
  513. {
  514. Result ffrData = await _proceedsReceivedRep._Del(dto);
  515. if (ffrData.Code != 0)
  516. {
  517. return Ok(JsonView(false, ffrData.Msg));
  518. }
  519. return Ok(JsonView(true, ffrData.Msg, ffrData.Data));
  520. }
  521. catch (Exception ex)
  522. {
  523. return Ok(JsonView(false, ex.Message));
  524. throw;
  525. }
  526. }
  527. /// <summary>
  528. /// 已收款项
  529. /// 添加 And 更新
  530. /// 关联已收款项
  531. /// </summary>
  532. /// <param name="dto"></param>
  533. /// <returns></returns>
  534. [HttpPost]
  535. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  536. public async Task<IActionResult> PostAmountReceivedOperate(ProceedsReceivedDto dto)
  537. {
  538. try
  539. {
  540. Result ffrData = await _proceedsReceivedRep.PostAmountReceivedOperate(dto);
  541. if (ffrData.Code != 0)
  542. {
  543. return Ok(JsonView(false, ffrData.Msg));
  544. }
  545. return Ok(JsonView(true, ffrData.Msg, ffrData.Data));
  546. }
  547. catch (Exception ex)
  548. {
  549. return Ok(JsonView(false, ex.Message));
  550. throw;
  551. }
  552. }
  553. /// <summary>
  554. /// 财务 已收款项
  555. /// 分配已收款项至 应收项下
  556. /// 关联已收款项
  557. /// </summary>
  558. /// <param name="dto"></param>
  559. /// <returns></returns>
  560. [HttpPost]
  561. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  562. public async Task<IActionResult> PostAllocateAmountReceived(AllocateAmountReceivedDto dto)
  563. {
  564. try
  565. {
  566. Result ffrData = await _proceedsReceivedRep.PostAllocateAmountReceived(dto);
  567. if (ffrData.Code != 0)
  568. {
  569. return Ok(JsonView(false, ffrData.Msg));
  570. }
  571. return Ok(JsonView(true));
  572. }
  573. catch (Exception ex)
  574. {
  575. return Ok(JsonView(false, ex.Message));
  576. throw;
  577. }
  578. }
  579. ///// <summary>
  580. ///// 财务 收款账单
  581. ///// 导出Word(北京,四川)
  582. ///// </summary>
  583. ///// <param name="dto"></param>
  584. ///// <returns></returns>
  585. //[HttpPost]
  586. //[ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  587. //public async Task<IActionResult> PostAccountReceivableWordExport(AccountReceivableWordExportDto dto)
  588. //{
  589. // try
  590. // {
  591. // //模板处理
  592. // string typeName = string.Empty;
  593. // if (dto.TemplateType == 1) //四川
  594. // {
  595. // typeName = "四川";
  596. // }
  597. // else if (dto.TemplateType == 2) //北京
  598. // {
  599. // typeName = "北京";
  600. // }
  601. // else return Ok(JsonView(false,"请选择正确的模板类型!"));
  602. // string wordTempName = string.Format("收款账单({0})模板.doc", typeName);
  603. // }
  604. // catch (Exception ex)
  605. // {
  606. // return Ok(JsonView(false, ex.Message));
  607. // }
  608. //}
  609. #endregion
  610. #region 对外收款账单
  611. /// <summary>
  612. /// 对外收款账单
  613. /// 数据源
  614. /// </summary>
  615. /// <param name="dto"></param>
  616. /// <returns></returns>
  617. [HttpPost]
  618. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  619. public async Task<IActionResult> PostGroupReceivablesDataSource()
  620. {
  621. try
  622. {
  623. Result ffrData = await _ForForeignReceivablesRep.PostDataSource();
  624. if (ffrData.Code != 0)
  625. {
  626. return Ok(JsonView(false, ffrData.Msg));
  627. }
  628. return Ok(JsonView(true, ffrData.Msg, ffrData.Data));
  629. }
  630. catch (Exception ex)
  631. {
  632. return Ok(JsonView(false, ex.Message));
  633. }
  634. }
  635. /// <summary>
  636. /// 对外收款账单
  637. /// 账单详情
  638. /// </summary>
  639. /// <param name="dto"></param>
  640. /// <returns></returns>
  641. [HttpPost]
  642. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  643. public async Task<IActionResult> PostGroupReceivablesInfoByDiId(ForForeignReceivablesNewDto dto)
  644. {
  645. try
  646. {
  647. Result ffrData = await _ForForeignReceivablesRep.PostGroupReceivablesInfoByDiId(dto);
  648. if (ffrData.Code != 0)
  649. {
  650. return Ok(JsonView(false, ffrData.Msg));
  651. }
  652. return Ok(JsonView(true, ffrData.Msg, ffrData.Data));
  653. }
  654. catch (Exception ex)
  655. {
  656. return Ok(JsonView(false, ex.Message));
  657. }
  658. }
  659. /// <summary>
  660. /// 对外收款账单
  661. /// 添加 And 更新
  662. /// </summary>
  663. /// <param name="dto"></param>
  664. /// <returns></returns>
  665. [HttpPost]
  666. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  667. public async Task<IActionResult> PostReceivablesSave(ForeignReceivablesSaveDto dto)
  668. {
  669. try
  670. {
  671. Result ffrData = await _ForForeignReceivablesRep.PostReceivablesSave(dto);
  672. if (ffrData.Code != 0)
  673. {
  674. return Ok(JsonView(false, ffrData.Msg));
  675. }
  676. return Ok(JsonView(true, ffrData.Msg, ffrData.Data));
  677. }
  678. catch (Exception ex)
  679. {
  680. return Ok(JsonView(false, ex.Message));
  681. throw;
  682. }
  683. }
  684. /// <summary>
  685. /// 已收账单
  686. /// 删除
  687. /// </summary>
  688. /// <param name="dto"></param>
  689. /// <returns></returns>
  690. [HttpPost]
  691. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  692. public async Task<IActionResult> PostReceivablesDel(ForeignReceivablesDelDto dto)
  693. {
  694. try
  695. {
  696. Result ffrData = await _ForForeignReceivablesRep.PostReceivablesDel(dto);
  697. if (ffrData.Code != 0)
  698. {
  699. return Ok(JsonView(false, ffrData.Msg));
  700. }
  701. return Ok(JsonView(true, ffrData.Msg, ffrData.Data));
  702. }
  703. catch (Exception ex)
  704. {
  705. return Ok(JsonView(false, ex.Message));
  706. throw;
  707. }
  708. }
  709. /// <summary>
  710. /// 已收账单
  711. /// File Downloasd
  712. /// </summary>
  713. /// <param name="dto"></param>
  714. /// <returns></returns>
  715. [HttpPost]
  716. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  717. public async Task<IActionResult> PostReceivablesFeilDownload(ForeignReceivablesFeilDownloadDto dto)
  718. {
  719. try
  720. {
  721. if (dto.DiId < 1)
  722. {
  723. return Ok(JsonView(false, "请传入有效DiId参数!"));
  724. }
  725. if (dto.FileType < 1 || dto.FileType > 3)
  726. {
  727. return Ok(JsonView(false, "请传入有效FileType参数! 1 生成收款单(四川) 2 生成收款单(北京) 3 汇款账单"));
  728. }
  729. var _DelegationInfo = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && it.Id == dto.DiId).First();
  730. if (_DelegationInfo == null)
  731. {
  732. return Ok(JsonView(false, "暂无团组信息!!"));
  733. }
  734. if (dto.FileType == 1 || dto.FileType == 2)
  735. {
  736. var _ForeignReceivables = _sqlSugar.Queryable<Fin_ForeignReceivables>().Where(it => it.IsDel == 0 && it.Diid == dto.DiId).ToList();
  737. if (_ForeignReceivables.Count < 1)
  738. {
  739. return Ok(JsonView(false, "暂无收款信息!!"));
  740. }
  741. string tempName = "";
  742. if (dto.FileType == 1) tempName = $"收款账单(四川)模板.docx";
  743. else if (dto.FileType == 2) tempName = $"收款账单(北京)模板.docx";
  744. string tempPath = AppSettingsHelper.Get("WordBasePath") + $"ForeignReceivables/Temp/{tempName}";
  745. //载入模板
  746. Document doc = new Document(tempPath);
  747. DocumentBuilder builder = new DocumentBuilder(doc);
  748. #region 替换Word模板书签内容
  749. //这里可以创建个DataTable循环添加书签的值,这里提示一下就不多做修改了
  750. //付款方
  751. if (doc.Range.Bookmarks["To"] != null)
  752. {
  753. Bookmark mark = doc.Range.Bookmarks["To"];
  754. mark.Text = _ForeignReceivables[0].To == null ? "" : _ForeignReceivables[0].To.ToString();
  755. }
  756. //付款方电话
  757. if (doc.Range.Bookmarks["ToTel"] != null)
  758. {
  759. Bookmark mark = doc.Range.Bookmarks["ToTel"];
  760. mark.Text = _ForeignReceivables[0].ToTel == null ? "" : _ForeignReceivables[0].ToTel.ToString();
  761. }
  762. //导出时间
  763. if (doc.Range.Bookmarks["Date"] != null)
  764. {
  765. Bookmark mark = doc.Range.Bookmarks["Date"];
  766. mark.Text = DateTime.Now.ToString("yyyy-MM-dd");
  767. }
  768. //注
  769. if (doc.Range.Bookmarks["Attention"] != null)
  770. {
  771. Bookmark mark = doc.Range.Bookmarks["Attention"];
  772. mark.Text = _ForeignReceivables[0].Attention == null ? "" : _ForeignReceivables[0].Attention.ToString();
  773. }
  774. //团队名称
  775. if (doc.Range.Bookmarks["Team"] != null)
  776. {
  777. Bookmark mark = doc.Range.Bookmarks["Team"];
  778. mark.Text = _DelegationInfo.VisitCountry == null ? "" : _DelegationInfo.VisitCountry.ToString();
  779. }
  780. //付款日期
  781. if (doc.Range.Bookmarks["PayDate"] != null)
  782. {
  783. Bookmark mark = doc.Range.Bookmarks["PayDate"];
  784. mark.Text = _ForeignReceivables[0].PayDate == null ? "" : Convert.ToDateTime(_ForeignReceivables[0].PayDate).ToString("yyyy年MM月dd日");
  785. }
  786. decimal sumPrice = 0;
  787. //各项费用
  788. if (doc.Range.Bookmarks["PayItemContent"] != null)
  789. {
  790. string items = "";
  791. foreach (var fr in _ForeignReceivables)
  792. {
  793. items += fr.PriceName + " " + fr.Currency + " " + fr.Price.ToString("#0.00") + " * " + fr.Count + " " + fr.Unit + " * " + fr.Rate + ".................. RMB " + fr.ItemSumPrice.ToString("#0.00") + "\n";
  794. sumPrice += fr.ItemSumPrice;
  795. }
  796. Bookmark mark = doc.Range.Bookmarks["PayItemContent"];
  797. mark.Text = items;
  798. }
  799. //合计
  800. if (doc.Range.Bookmarks["Total"] != null)
  801. {
  802. Bookmark mark = doc.Range.Bookmarks["Total"];
  803. mark.Text = sumPrice.ToString("#0.00");
  804. }
  805. #endregion
  806. //文件名
  807. string strFileName = _DelegationInfo.TeamName + "-收款账单.docx";
  808. doc.Save(AppSettingsHelper.Get("WordBasePath") + "ForeignReceivables/File/" + strFileName);
  809. string url = AppSettingsHelper.Get("WordBaseUrl") + "Office/Word/ForeignReceivables/File/" + strFileName;
  810. return Ok(JsonView(true, "成功", new { Url = url }));
  811. }
  812. else if (dto.FileType == 3) //汇款通知
  813. {
  814. var _EnterExitCosts = _sqlSugar.Queryable<Grp_EnterExitCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).First();
  815. var _DayAndCosts = _sqlSugar.Queryable<Grp_DayAndCost>().Where(it => it.IsDel == 0 && it.DiId == dto.DiId).ToList();
  816. if (_EnterExitCosts == null)
  817. {
  818. return Ok(JsonView(false, "该团组未填写出入境费用;"));
  819. }
  820. //数据源
  821. List<Grp_DayAndCost> dac1 = _DayAndCosts.Where(it => it.Type == 1).ToList(); //住宿费
  822. List<Grp_DayAndCost> dac2 = _DayAndCosts.Where(it => it.Type == 2).ToList(); //伙食费
  823. List<Grp_DayAndCost> dac3 = _DayAndCosts.Where(it => it.Type == 3).ToList(); //公杂费
  824. List<Grp_DayAndCost> dac4 = _DayAndCosts.Where(it => it.Type == 4).ToList(); //培训费
  825. var DeleClientList = _sqlSugar.Queryable<Grp_TourClientList>()
  826. .LeftJoin<Crm_DeleClient>((tcl, dc) => tcl.ClientId == dc.Id && dc.IsDel == 0)
  827. .LeftJoin<Crm_CustomerCompany>((tcl, dc, cc) => dc.CrmCompanyId == cc.Id && dc.IsDel == 0)
  828. .Where((tcl, dc, cc) => tcl.IsDel == 0 && tcl.DiId == dto.DiId)
  829. .Select((tcl, dc, cc) => new
  830. {
  831. Name = dc.LastName + dc.FirstName,
  832. Sex = dc.Sex,
  833. Birthday = dc.BirthDay,
  834. Company = cc.CompanyFullName,
  835. Job = dc.Job,
  836. AirType = tcl.ShippingSpaceTypeId
  837. })
  838. .ToList();
  839. if (DeleClientList.Count < 1)
  840. {
  841. return Ok(JsonView(false, "暂无团组成员,请先填写团组成员!!!"));
  842. }
  843. var _ClientNames = DeleClientList.Select(x => x.Name).ToList();
  844. var _GroupClient = DeleClientList.GroupBy(x => x.Company).ToList();
  845. Dictionary<string, string> bookmarkArr = null;
  846. string tempPath = AppSettingsHelper.Get("WordBasePath") + $"ForeignReceivables/Temp/汇款通知.docx";
  847. //载入模板
  848. Document doc = new Document(tempPath);
  849. DocumentBuilder builder = null;
  850. List<string> filesToZip = new List<string>();
  851. foreach (var ClientItem in _GroupClient) //遍历单位
  852. {
  853. doc = new Document(tempPath);
  854. builder = new DocumentBuilder(doc);
  855. Paragraph paragraph = new Paragraph(doc);
  856. bookmarkArr = new Dictionary<string, string>();
  857. bookmarkArr.Add("titleClientUnit", ClientItem.Key); //title单位
  858. bookmarkArr.Add("ClientUnit", ClientItem.Key); //单位
  859. bookmarkArr.Add("VisitStartDate", _DelegationInfo.VisitStartDate.ToString("yyyy年MM月dd日"));//出发日期
  860. bookmarkArr.Add("name", string.Join(",", ClientItem.Select(x => x.Name).ToArray()).TrimEnd(','));//全部人员信息
  861. bookmarkArr.Add("VisitCountry", _DelegationInfo.VisitCountry);//出访国家
  862. bookmarkArr.Add("dayTime", DateTime.Now.ToString("yyyy年MM月dd日"));//今天日期
  863. var ClientItemList = ClientItem.ToList();
  864. string UsersTop = string.Empty;//word中人员以及金额
  865. decimal WordAllPrice = 0.00M;
  866. //int[] infoColumn = new int[5] {dac1.Select(x=>x.Place.Length).ToList().Max(),2, dac1.Select(x => x.Cost.Length).Max() + dac1.Select(x => x.Currency.Length).Max(),
  867. // 6, 3 + dac1.Where(x=>!string.IsNullOrWhiteSpace(x.Place)).Select(x=>(Convert.ToDecimal(x.SubTotal) / Convert.ToDecimal(x.Cost)).ToString().Length).Max() };
  868. //遍历人员
  869. for (int i = 0; i < ClientItemList.Count(); i++)
  870. {
  871. Dictionary<string, string> TeableBookmarkArr = new Dictionary<string, string>();
  872. var client = ClientItemList[i]; //每个人员
  873. var firstName = ClientItemList[i].Name;
  874. //计算费用总和
  875. decimal airPrice = client.AirType == 460 ? _EnterExitCosts.AirJJ : _EnterExitCosts.AirGW;
  876. decimal AllPrice = airPrice + _EnterExitCosts.CityTranffic + dac1.Sum(x => x.SubTotal) + dac2.Sum(x => x.SubTotal) +
  877. dac3.Sum(x => x.SubTotal) + dac4.Sum(x => x.SubTotal) + _EnterExitCosts.Visa + _EnterExitCosts.Safe +
  878. _EnterExitCosts.Service;
  879. WordAllPrice += AllPrice;
  880. UsersTop += firstName + "出访费用为¥" + AllPrice.ToString("#0.00") + "元、";
  881. TeableBookmarkArr.Add("jp", (client.AirType == 460 ? _EnterExitCosts.AirJJ : _EnterExitCosts.AirGW).ToString("#0.00") + " 元"); //机票金额
  882. TeableBookmarkArr.Add("cs", _EnterExitCosts.CityTranffic.ToString("#0.00") + " 元"); //城市交通费用
  883. TeableBookmarkArr.Add("zs", dac1.Sum(x => Convert.ToDecimal(x.SubTotal)).ToString("#0.00") + " 元"); //住宿费
  884. string zsinfo = string.Empty;
  885. string hsinfo = string.Empty;
  886. string gzinfo = string.Empty;
  887. List<string> placeArr = new List<string>();
  888. Aspose.Words.Tables.Table FirstTable = (Aspose.Words.Tables.Table)doc.GetChild(NodeType.Table, 0, true);
  889. Aspose.Words.Tables.Table ChildTable = (Aspose.Words.Tables.Table)FirstTable.GetChild(NodeType.Table, 0, true);
  890. Aspose.Words.Tables.Table ChildTable1 = (Aspose.Words.Tables.Table)FirstTable.GetChild(NodeType.Table, 1, true);
  891. Aspose.Words.Tables.Table ChildTable2 = (Aspose.Words.Tables.Table)FirstTable.GetChild(NodeType.Table, 2, true);
  892. int rowIndex = 0;
  893. foreach (var item in dac1)
  894. {
  895. if (string.IsNullOrWhiteSpace(item.Place))
  896. {
  897. continue;
  898. }
  899. if (placeArr.Contains(item.Place))
  900. {
  901. continue;
  902. }
  903. else
  904. {
  905. placeArr.Add(item.Place);
  906. }
  907. if (!string.IsNullOrWhiteSpace(item.Place))
  908. {
  909. if (rowIndex > ChildTable.Rows.Count - 1)
  910. {
  911. var chitableRow = ChildTable.LastRow.Clone(true);
  912. ChildTable.AppendChild(chitableRow);
  913. }
  914. int days = dac1.FindAll(x => x.Place == item.Place).Count();
  915. SetCells(ChildTable, doc, rowIndex, 0, item.Place);
  916. SetCells(ChildTable, doc, rowIndex, 1, days + "晚");
  917. SetCells(ChildTable, doc, rowIndex, 2, item.Cost + item.Currency + "/晚");
  918. SetCells(ChildTable, doc, rowIndex, 3, " 汇率" + (item.SubTotal / item.Cost).ToString("#0.00"));
  919. SetCells(ChildTable, doc, rowIndex, 4, "CNY" + item.SubTotal * days + "\r\n");
  920. rowIndex++;
  921. zsinfo += item.Place + " " + days + "晚 " + item.Cost + item.Currency + "/晚" + " 汇率" + (item.SubTotal / item.Cost).ToString("#0.00") + " CNY" + item.SubTotal * days + "\r\n";
  922. }
  923. }
  924. placeArr.Clear();
  925. rowIndex = 0;
  926. foreach (var item in dac2)
  927. {
  928. if (string.IsNullOrWhiteSpace(item.Place))
  929. {
  930. continue;
  931. }
  932. if (placeArr.Contains(item.Place))
  933. {
  934. continue;
  935. }
  936. else
  937. {
  938. placeArr.Add(item.Place);
  939. }
  940. if (!string.IsNullOrWhiteSpace(item.Place))
  941. {
  942. if (rowIndex > ChildTable1.Rows.Count - 1)
  943. {
  944. var chitableRow = ChildTable1.LastRow.Clone(true);
  945. ChildTable1.AppendChild(chitableRow);
  946. }
  947. int days = dac2.FindAll(x => x.Place == item.Place).Count();
  948. SetCells(ChildTable1, doc, rowIndex, 0, item.Place);
  949. SetCells(ChildTable1, doc, rowIndex, 1, days + "天");
  950. SetCells(ChildTable1, doc, rowIndex, 2, item.Cost + item.Currency + "/天");
  951. SetCells(ChildTable1, doc, rowIndex, 3, " 汇率" + (item.SubTotal / item.Cost).ToString("#0.00"));
  952. SetCells(ChildTable1, doc, rowIndex, 4, "CNY" + item.SubTotal * days);
  953. rowIndex++;
  954. hsinfo += item.Place + " " + days + "天 " + item.Cost + item.Currency + "/天" + " 汇率" + (item.SubTotal / item.Cost).ToString("#0.00") + " CNY" + item.SubTotal * days + "\r\n";
  955. }
  956. }
  957. placeArr.Clear();
  958. rowIndex = 0;
  959. foreach (var item in dac3)
  960. {
  961. if (string.IsNullOrWhiteSpace(item.Place))
  962. {
  963. continue;
  964. }
  965. if (placeArr.Contains(item.Place))
  966. {
  967. continue;
  968. }
  969. else
  970. {
  971. placeArr.Add(item.Place);
  972. }
  973. if (!string.IsNullOrWhiteSpace(item.Place))
  974. {
  975. if (rowIndex > ChildTable2.Rows.Count - 1)
  976. {
  977. var chitableRow = ChildTable2.LastRow.Clone(true);
  978. ChildTable2.AppendChild(chitableRow);
  979. }
  980. int days = dac3.FindAll(x => x.Place == item.Place).Count();
  981. SetCells(ChildTable2, doc, rowIndex, 0, item.Place);
  982. SetCells(ChildTable2, doc, rowIndex, 1, days + "天");
  983. SetCells(ChildTable2, doc, rowIndex, 2, item.Cost + item.Currency + "/天");
  984. SetCells(ChildTable2, doc, rowIndex, 3, " 汇率" + (item.SubTotal / item.Cost).ToString("#0.00"));
  985. SetCells(ChildTable2, doc, rowIndex, 4, "CNY" + item.SubTotal * days + "\r\n");
  986. rowIndex++;
  987. gzinfo += item.Place + " " + days + "天 " + item.Cost + item.Currency + "/天" + " 汇率" + (item.SubTotal / item.Cost).ToString("#0.00") + " CNY" + item.SubTotal * days + "\r\n";
  988. }
  989. }
  990. placeArr.Clear();
  991. TeableBookmarkArr.Add("zsinfo", zsinfo); //住宿费详情
  992. TeableBookmarkArr.Add("hs", dac2.Sum(x => Convert.ToDecimal(x.SubTotal)).ToString("#0.00") + " 元"); //伙食费
  993. TeableBookmarkArr.Add("hsinfo", hsinfo); //伙食费详情
  994. TeableBookmarkArr.Add("gz", dac3.Sum(x => Convert.ToDecimal(x.SubTotal)).ToString("#0.00") + " 元"); //公杂费
  995. TeableBookmarkArr.Add("gzinfo", gzinfo); //公杂费详情
  996. TeableBookmarkArr.Add("qt", (_EnterExitCosts.Visa + _EnterExitCosts.Safe).ToString("#0.00") + " 元");//其他费用
  997. TeableBookmarkArr.Add("qtinfo", $"(签证费{_EnterExitCosts.Visa.ToString("#0.00")}元、保险{_EnterExitCosts.Safe.ToString("#0.00")}元等费用)");//其他费用第二列
  998. TeableBookmarkArr.Add("fw", _EnterExitCosts.Service.ToString("#0.00") + "元/人");//服务费
  999. TeableBookmarkArr.Add("AllPrice", AllPrice.ToString("#0.00") + "元/人");//表格合计费用
  1000. string airStr = client.AirType == 460 ? "经济舱" : client.AirType == 458 ? "公务舱" : "";
  1001. TeableBookmarkArr.Add("title", $"费用清单-{airStr}({firstName})");
  1002. foreach (var book in TeableBookmarkArr.Keys)
  1003. {
  1004. if (doc.Range.Bookmarks[book] != null)
  1005. {
  1006. Bookmark mark = doc.Range.Bookmarks[book];
  1007. mark.Text = TeableBookmarkArr[book];
  1008. }
  1009. }
  1010. if (i != ClientItemList.Count - 1)
  1011. {
  1012. builder.PageSetup.Orientation = Aspose.Words.Orientation.Portrait;
  1013. Aspose.Words.Tables.Table table = (Aspose.Words.Tables.Table)doc.GetChild(NodeType.Table, 0, true);
  1014. table.ParentNode.InsertAfter(paragraph, table);
  1015. var CloneTable = (Aspose.Words.Tables.Table)table.Clone(true);
  1016. table.ParentNode.InsertAfter(CloneTable, paragraph);
  1017. }
  1018. TeableBookmarkArr.Clear();
  1019. }
  1020. bookmarkArr.Add("VisitPrice", WordAllPrice.ToString());//出访费用总额
  1021. bookmarkArr.Add("CnAllPrice", WordAllPrice.ConvertCNYUpper());//出访费用总额中文
  1022. bookmarkArr.Add("namesPrice", UsersTop.TrimEnd('、'));//各人员出访费用 付辰同志出访费用为¥73,604.8元
  1023. foreach (var book in bookmarkArr.Keys)
  1024. {
  1025. if (doc.Range.Bookmarks[book] != null)
  1026. {
  1027. Bookmark mark = doc.Range.Bookmarks[book];
  1028. mark.Text = bookmarkArr[book];
  1029. }
  1030. }
  1031. //MemoryStream outSteam = new MemoryStream();
  1032. string filsPath = AppSettingsHelper.Get("WordBasePath") + $"ForeignReceivables/File/{ClientItem.Key}.docx";
  1033. doc.Save(filsPath);
  1034. filesToZip.Add(filsPath);
  1035. //streams.Add(ClientItem.Key + ".docx", outSteam.ToArray());
  1036. }
  1037. //文件名
  1038. string zipFileName = _DelegationInfo.TeamName + "-收款账单.zip";
  1039. string zipPath = $"ForeignReceivables/File/{_DelegationInfo.TeamName}-收款账单{DateTime.Now.ToString("yyyyMMddHHmmss")}.zip";
  1040. try
  1041. {
  1042. using (var zip = ZipFile.Open(AppSettingsHelper.Get("WordBasePath") + zipPath, ZipArchiveMode.Create))
  1043. {
  1044. foreach (var file in filesToZip)
  1045. {
  1046. zip.CreateEntryFromFile(file, Path.GetFileName(file));
  1047. }
  1048. }
  1049. }
  1050. catch (Exception ex)
  1051. {
  1052. return Ok(JsonView(false, ex.Message));
  1053. }
  1054. string url = AppSettingsHelper.Get("WordBaseUrl") + $"Office/Word/{zipPath}";
  1055. return Ok(JsonView(true, "成功", new { Url = url }));
  1056. }
  1057. return Ok(JsonView(false, "操作失败!"));
  1058. }
  1059. catch (Exception ex)
  1060. {
  1061. return Ok(JsonView(false, ex.Message));
  1062. }
  1063. }
  1064. private void SetCells(Aspose.Words.Tables.Table table, Document doc, int rows, int cells, string val)
  1065. {
  1066. //获取table中的某个单元格,从0开始
  1067. Aspose.Words.Tables.Cell lshCell = table.Rows[rows].Cells[cells];
  1068. //将单元格中的第一个段落移除
  1069. lshCell.FirstParagraph.Remove();
  1070. //新建一个段落
  1071. Paragraph p = new Paragraph(doc);
  1072. var r = new Run(doc, val);
  1073. r.Font.Size = 8;
  1074. //把设置的值赋给之前新建的段落
  1075. p.AppendChild(r);
  1076. //将此段落加到单元格内
  1077. lshCell.AppendChild(p);
  1078. }
  1079. #endregion
  1080. #region 已收款项
  1081. /// <summary>
  1082. /// 已收款项
  1083. /// 查询
  1084. /// </summary>
  1085. /// <param name="dto"></param>
  1086. /// <returns></returns>
  1087. [HttpPost]
  1088. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1089. public async Task<IActionResult> PostAmountReceived(AmountReceivedDto dto)
  1090. {
  1091. try
  1092. {
  1093. if (dto == null)
  1094. {
  1095. return Ok(JsonView(false, "参数不能为空!"));
  1096. }
  1097. Result ffrData = await _proceedsReceivedRep.PostAmountReceived(dto.DiId);
  1098. dynamic data = null;
  1099. if (dto.PortType == 1)
  1100. {
  1101. if (ffrData.Code != 0)
  1102. {
  1103. return Ok(JsonView(false, ffrData.Msg));
  1104. }
  1105. data = ffrData.Data;
  1106. }
  1107. else if (dto.PortType == 2)
  1108. {
  1109. if (ffrData.Code != 0)
  1110. {
  1111. return Ok(JsonView(false, ffrData.Msg));
  1112. }
  1113. data = ffrData.Data;
  1114. }
  1115. else if (dto.PortType == 2)
  1116. {
  1117. if (ffrData.Code != 0)
  1118. {
  1119. return Ok(JsonView(false, ffrData.Msg));
  1120. }
  1121. data = ffrData.Data;
  1122. }
  1123. else
  1124. {
  1125. return Ok(JsonView(false, "请选择正确的端口号!"));
  1126. }
  1127. return Ok(JsonView(true, "操作成功!", data));
  1128. }
  1129. catch (Exception ex)
  1130. {
  1131. return Ok(JsonView(false, ex.Message));
  1132. }
  1133. }
  1134. /// <summary>
  1135. /// 已收款项
  1136. /// Add Or Edit
  1137. /// </summary>
  1138. /// <param name="dto"></param>
  1139. /// <returns></returns>
  1140. [HttpPost]
  1141. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1142. public async Task<IActionResult> PostAmountReceivedAddOrEdit(AmountReceivedAddOrEditDto dto)
  1143. {
  1144. try
  1145. {
  1146. if (dto == null)
  1147. {
  1148. return Ok(JsonView(false, "参数不能为空!"));
  1149. }
  1150. Result ffrData = await _proceedsReceivedRep.PostAmountReceivedAddOrEditDto(dto);
  1151. if (dto.PortType == 1)
  1152. {
  1153. if (ffrData.Code != 0)
  1154. {
  1155. return Ok(JsonView(false, ffrData.Msg));
  1156. }
  1157. }
  1158. else if (dto.PortType == 2)
  1159. {
  1160. if (ffrData.Code != 0)
  1161. {
  1162. return Ok(JsonView(false, ffrData.Msg));
  1163. }
  1164. }
  1165. else if (dto.PortType == 2)
  1166. {
  1167. if (ffrData.Code != 0)
  1168. {
  1169. return Ok(JsonView(false, ffrData.Msg));
  1170. }
  1171. }
  1172. else
  1173. {
  1174. return Ok(JsonView(false, "请选择正确的端口号!"));
  1175. }
  1176. return Ok(JsonView(true, "操作成功!"));
  1177. }
  1178. catch (Exception ex)
  1179. {
  1180. return Ok(JsonView(false, ex.Message));
  1181. }
  1182. }
  1183. /// <summary>
  1184. /// 已收款项
  1185. /// Del
  1186. /// </summary>
  1187. /// <param name="dto"></param>
  1188. /// <returns></returns>
  1189. [HttpPost]
  1190. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1191. public async Task<IActionResult> PostAmountReceived_Del(AmountReceivedDelDto dto)
  1192. {
  1193. try
  1194. {
  1195. if (dto == null)
  1196. {
  1197. return Ok(JsonView(false, "参数不能为空!"));
  1198. }
  1199. Result ffrData = await _proceedsReceivedRep.PostAmountReceivedDel(dto);
  1200. if (ffrData.Code != 0)
  1201. {
  1202. return Ok(JsonView(false, ffrData.Msg));
  1203. }
  1204. return Ok(JsonView(true, "操作成功!"));
  1205. }
  1206. catch (Exception ex)
  1207. {
  1208. return Ok(JsonView(false, ex.Message));
  1209. }
  1210. }
  1211. #endregion
  1212. #region 收款退还与其他款项
  1213. /// <summary>
  1214. /// 收款退还与其他款项
  1215. /// 查询 根据团组Id
  1216. /// </summary>
  1217. /// <param name="dto"></param>
  1218. /// <returns></returns>
  1219. [HttpPost]
  1220. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1221. public async Task<IActionResult> PostPaymentRefundAndOtherMoneyItemByDiId(PaymentRefundAndOtherMoneyItemByDiIdDto dto)
  1222. {
  1223. try
  1224. {
  1225. if (dto == null) return Ok(JsonView(false, "参数不能为空!"));
  1226. if (dto.PageId <= 0) return Ok(JsonView(false, "请传入正确的的页面Id!"));
  1227. if (dto.UserId <= 0) return Ok(JsonView(false, "请传入正确的的员工Id!"));
  1228. #region 页面功能权限处理
  1229. PageFunAuthViewBase pageFunAuth = new PageFunAuthViewBase();
  1230. pageFunAuth = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  1231. if (pageFunAuth.CheckAuth == 0)
  1232. {
  1233. return Ok(JsonView(false, "您没有当前页面查询权限!"));
  1234. }
  1235. #endregion
  1236. Result _result = await _paymentRefundAndOtherMoneyRep._ItemByDiId(dto.DiId);
  1237. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) //1 Web 2 Android 3 Ios
  1238. {
  1239. if (_result.Code != 0)
  1240. {
  1241. return Ok(JsonView(false, _result.Msg));
  1242. }
  1243. var data = new
  1244. {
  1245. PageFuncAuth = pageFunAuth,
  1246. Data = _result.Data
  1247. };
  1248. return Ok(JsonView(true, "操作成功!", data));
  1249. }
  1250. else
  1251. {
  1252. return Ok(JsonView(false, "请输入正确的端口号! 1 Web 2 Android 3 Ios;"));
  1253. }
  1254. }
  1255. catch (Exception ex)
  1256. {
  1257. return Ok(JsonView(false, ex.Message));
  1258. }
  1259. }
  1260. /// <summary>
  1261. /// 收款退还与其他款项
  1262. /// 删除
  1263. /// </summary>
  1264. /// <param name="dto"></param>
  1265. /// <returns></returns>
  1266. [HttpPost]
  1267. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1268. public async Task<IActionResult> PostPaymentRefundAndOtherMoneyDel(PaymentRefundAndOtherMoneyDelDto dto)
  1269. {
  1270. try
  1271. {
  1272. if (dto == null) return Ok(JsonView(false, "参数不能为空!"));
  1273. if (dto.PageId <= 0) return Ok(JsonView(false, "请传入正确的的页面Id!"));
  1274. if (dto.UserId <= 0) return Ok(JsonView(false, "请传入正确的的员工Id!"));
  1275. PageFunAuthViewBase pageFunAuth = new PageFunAuthViewBase();
  1276. #region 页面功能权限处理
  1277. pageFunAuth = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  1278. #endregion
  1279. if (pageFunAuth.DeleteAuth == 0)
  1280. {
  1281. return Ok(JsonView(false, "您没有当前页面删除权限!"));
  1282. }
  1283. Result _result = await _paymentRefundAndOtherMoneyRep._Del(dto);
  1284. if (_result.Code != 0)
  1285. {
  1286. return Ok(JsonView(false, _result.Msg));
  1287. }
  1288. return Ok(JsonView(true, "操作成功!"));
  1289. }
  1290. catch (Exception ex)
  1291. {
  1292. return Ok(JsonView(false, ex.Message));
  1293. }
  1294. }
  1295. /// <summary>
  1296. /// 收款退还与其他款项
  1297. /// Info Data Source
  1298. /// </summary>
  1299. /// <param name="dto"></param>
  1300. /// <returns></returns>
  1301. [HttpPost]
  1302. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1303. public async Task<IActionResult> PostPaymentRefundAndOtherMoneyInfoDataSource(PortDtoBase dto)
  1304. {
  1305. try
  1306. {
  1307. Result _result = await _paymentRefundAndOtherMoneyRep._InfoDataSource(dto);
  1308. if (_result.Code != 0)
  1309. {
  1310. return Ok(JsonView(false, _result.Msg));
  1311. }
  1312. return Ok(JsonView(true, "查询成功!", _result.Data));
  1313. }
  1314. catch (Exception ex)
  1315. {
  1316. return Ok(JsonView(false, ex.Message));
  1317. }
  1318. }
  1319. /// <summary>
  1320. /// 收款退还与其他款项
  1321. /// Info
  1322. /// </summary>
  1323. /// <param name="dto"></param>
  1324. /// <returns></returns>
  1325. [HttpPost]
  1326. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1327. public async Task<IActionResult> PostPaymentRefundAndOtherMoneyInfo(PaymentRefundAndOtherMoneyInfoDto dto)
  1328. {
  1329. try
  1330. {
  1331. if (dto == null)
  1332. {
  1333. return Ok(JsonView(false, "参数不能为空!"));
  1334. }
  1335. Result _result = await _paymentRefundAndOtherMoneyRep._Info(dto);
  1336. if (_result.Code != 0)
  1337. {
  1338. return Ok(JsonView(false, _result.Msg));
  1339. }
  1340. return Ok(JsonView(true, "查询成功!", _result.Data));
  1341. }
  1342. catch (Exception ex)
  1343. {
  1344. return Ok(JsonView(false, ex.Message));
  1345. }
  1346. }
  1347. /// <summary>
  1348. /// 收款退还与其他款项
  1349. /// 操作(Add Or Edit)
  1350. /// </summary>
  1351. /// <param name="dto"></param>
  1352. /// <returns></returns>
  1353. [HttpPost]
  1354. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1355. public async Task<IActionResult> PostPaymentRefundAndOtherMoneyAddOrEdit(PaymentRefundAndOtherMoneyAddOrEditDto dto)
  1356. {
  1357. try
  1358. {
  1359. if (dto == null) return Ok(JsonView(false, "参数不能为空!"));
  1360. if (dto.PageId <= 0) return Ok(JsonView(false, "请传入正确的的页面Id!"));
  1361. if (dto.UserId <= 0) return Ok(JsonView(false, "请传入正确的的员工Id!"));
  1362. #region 页面功能权限处理
  1363. PageFunAuthViewBase pageFunAuth = new PageFunAuthViewBase();
  1364. pageFunAuth = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  1365. #endregion
  1366. if (dto.Status == 1) //add
  1367. {
  1368. if (pageFunAuth.AddAuth == 0)
  1369. {
  1370. return Ok(JsonView(false, "您没有当前页面添加权限!"));
  1371. }
  1372. }
  1373. else if (dto.Status == 2) //edit
  1374. {
  1375. if (pageFunAuth.EditAuth == 0)
  1376. {
  1377. return Ok(JsonView(false, "您没有当前页面编辑权限!"));
  1378. }
  1379. }
  1380. else
  1381. {
  1382. return Ok(JsonView(false, "请输入正确的操作状态! 1 添加 2 修改!"));
  1383. }
  1384. Result _result = await _paymentRefundAndOtherMoneyRep._AddOrEdit(dto);
  1385. if (_result.Code != 0)
  1386. {
  1387. return Ok(JsonView(false, _result.Msg));
  1388. }
  1389. return Ok(JsonView(true, "操作成功!"));
  1390. }
  1391. catch (Exception ex)
  1392. {
  1393. return Ok(JsonView(false, ex.Message));
  1394. }
  1395. }
  1396. #endregion
  1397. #region 应收报表
  1398. /// <summary>
  1399. /// 应收报表
  1400. /// 查询 根据日期范围
  1401. /// </summary>
  1402. /// <param name="dto"></param>
  1403. /// <returns></returns>
  1404. [HttpPost]
  1405. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1406. public async Task<IActionResult> PostSyntheticalReceivableByDateRange(PostSyntheticalReceivableByDateRangeDto dto)
  1407. {
  1408. string sqlWhere = " Where di.IsDel=0 ";
  1409. #region 验证
  1410. if (string.IsNullOrEmpty(dto.beginDt) && string.IsNullOrEmpty(dto.endDt))
  1411. {
  1412. return Ok(JsonView(false, "日期参数至少填写一个!"));
  1413. }
  1414. if (!string.IsNullOrEmpty(dto.beginDt))
  1415. {
  1416. if (Regex.Match(dto.beginDt, @"^\d{4}-\d{2}-\d{2}$").Value.Length < 1)
  1417. {
  1418. return Ok(JsonView(false, "日期参数格式错误,应为yyyy-MM-dd!"));
  1419. }
  1420. else
  1421. {
  1422. sqlWhere += string.Format(@" And di.VisitDate >= '{0} 00:00:00' ", dto.beginDt);
  1423. }
  1424. }
  1425. if (!string.IsNullOrEmpty(dto.endDt))
  1426. {
  1427. if (Regex.Match(dto.endDt, @"^\d{4}-\d{2}-\d{2}$").Value.Length < 1)
  1428. {
  1429. return Ok(JsonView(false, "日期参数格式错误,应为yyyy-MM-dd!"));
  1430. }
  1431. else
  1432. {
  1433. sqlWhere += string.Format(@" And di.VisitDate <= '{0} 23:59:59' ", dto.endDt);
  1434. }
  1435. }
  1436. #endregion
  1437. string sql = string.Format(@" select distinct fr.diid,di.TeamName,di.ClientUnit,di.VisitDate from Fin_ForeignReceivables fr join Grp_DelegationInfo di on fr.DIID = di.id {0} ", sqlWhere);
  1438. List<PostSyntheticalReceivableByDateRangeView> list_rst = _sqlSugar.SqlQueryable<PostSyntheticalReceivableByDateRangeView>(sql).ToList();
  1439. decimal sumAll_fr = 0M;
  1440. decimal sumAll_pr = 0M;
  1441. decimal sumAll_balance = 0M;
  1442. if (list_rst.Count > 0)
  1443. {
  1444. int rowNumber = 1;
  1445. foreach (var item_rst in list_rst)
  1446. {
  1447. DateTime dtTemp;
  1448. bool b = DateTime.TryParse(item_rst.visitDate, out dtTemp);
  1449. if (b)
  1450. {
  1451. item_rst.visitDate = dtTemp.ToString("yyyy-MM-dd");
  1452. }
  1453. item_rst.No = rowNumber;
  1454. rowNumber++;
  1455. int diId = item_rst.diid;
  1456. decimal sum_fr = 0M;
  1457. decimal sum_pr = 0M;
  1458. string str_client = string.Empty;
  1459. decimal sum_other = 0M; //收款退还
  1460. decimal sum_extra = 0M; //超支费用
  1461. decimal balance = 0M;
  1462. string str_schedule = string.Empty;
  1463. //1. 缺超支费用!!!!!!!!!!!!!!!!!!!!
  1464. string sql_fr = string.Format(@" Select * From Fin_ForeignReceivables Where IsDel=0 And Diid={0} ", diId);
  1465. List<Fin_ForeignReceivables> list_fr = _sqlSugar.SqlQueryable<Fin_ForeignReceivables>(sql_fr).ToList();
  1466. sum_fr = list_fr.Sum(s => s.ItemSumPrice);
  1467. //2.
  1468. string sql_pr = string.Format(@" Select * From Fin_ProceedsReceived Where IsDel=0 And Diid={0} ", diId);
  1469. List<Fin_ProceedsReceived> list_pr = _sqlSugar.SqlQueryable<Fin_ProceedsReceived>(sql_pr).ToList();
  1470. foreach (var item_pr in list_pr)
  1471. {
  1472. sum_pr += item_pr.Price;
  1473. str_client += string.Format(@"{0};", item_pr.Client);
  1474. str_schedule += string.Format(@"{0};", item_pr.Remark);
  1475. }
  1476. if (str_schedule.Length > 0)
  1477. {
  1478. str_schedule = str_schedule.TrimEnd(';');
  1479. }
  1480. if (str_client.Length > 0)
  1481. {
  1482. str_client = str_client.TrimEnd(';');
  1483. }
  1484. //3.
  1485. string sql_other = string.Format(@" Select * From Fin_OtherPrice where diid = {0} and isdel = 0 and RefundType = 1 and PayType=1 ", diId);
  1486. List<Fin_OtherPrice> list_other = _sqlSugar.SqlQueryable<Fin_OtherPrice>(sql_other).ToList();
  1487. sum_other = list_other.Sum(s => s.Price);
  1488. //4.
  1489. string sql_extra = string.Format(@" Select c.* From Fin_GroupExtraCost f
  1490. Inner join Grp_CreditCardPayment c On f.Id = c.CId
  1491. Where c.CTable = 1015 And c.IsPay = 1 And f.IsDel = 0 And c.IsDel = 0 And f.DiId = {0} ", diId);
  1492. List<Grp_CreditCardPayment> list_extra = _sqlSugar.SqlQueryable<Grp_CreditCardPayment>(sql_extra).ToList();
  1493. sum_extra = list_extra.Sum(s => s.RMBPrice);
  1494. item_rst.frPrice = (sum_fr + sum_extra).ToString("#0.00");
  1495. item_rst.prPrice = (sum_pr - sum_other).ToString("#0.00");
  1496. item_rst.balPrice = ((sum_fr + sum_extra) - (sum_pr - sum_other)).ToString("#0.00");
  1497. item_rst.prClient = str_client;
  1498. item_rst.schedule = str_schedule;
  1499. string tempVisitDate = Convert.ToDateTime(item_rst.visitDate).ToString("yyyy-MM-dd");
  1500. sumAll_fr += (sum_fr + sum_extra);
  1501. sumAll_pr += (sum_pr - sum_other);
  1502. sumAll_balance += ((sum_fr + sum_extra) - (sum_pr - sum_other));
  1503. }
  1504. PostSyntheticalReceivableByDateRangeResultView result = new PostSyntheticalReceivableByDateRangeResultView();
  1505. result.total_fr = sumAll_fr.ToString("#0.00");
  1506. result.total_pr = sumAll_pr.ToString("#0.00");
  1507. result.total_balance = sumAll_balance.ToString("#0.00");
  1508. result.dataList = new List<PostSyntheticalReceivableByDateRangeView>(list_rst);
  1509. if (dto.requestType == 1)
  1510. {
  1511. return Ok(JsonView(true, "请求成功", result, list_rst.Count));
  1512. }
  1513. else
  1514. {
  1515. //----------------------------
  1516. List<Excel_SyntheticalReceivableByDateRange> list_Ex = new List<Excel_SyntheticalReceivableByDateRange>();
  1517. WorkbookDesigner designer = new WorkbookDesigner();
  1518. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/应收款项模板 - 副本.xls");
  1519. int excNo = 1;
  1520. foreach (var item in list_rst)
  1521. {
  1522. Excel_SyntheticalReceivableByDateRange exc = new Excel_SyntheticalReceivableByDateRange();
  1523. exc.No = excNo.ToString();
  1524. excNo++;
  1525. exc.TeamName = item.teamName;
  1526. exc.ClientUnit = item.clientUnit;
  1527. exc.VisitDate = item.visitDate;
  1528. exc.Accounts = item.frPrice;
  1529. exc.Received = item.prPrice;
  1530. exc.Balance = item.balPrice;
  1531. exc.Collection = item.schedule;
  1532. DateTime time = Convert.ToDateTime(item.visitDate);
  1533. TimeSpan ts = DateTime.Now - time;
  1534. float SY = float.Parse(item.balPrice);
  1535. if (ts.Days >= 365 && SY > 0)
  1536. {
  1537. exc.Sign = "需收款";
  1538. }
  1539. else
  1540. {
  1541. exc.Sign = "";
  1542. }
  1543. list_Ex.Add(exc);
  1544. }
  1545. var dt = CommonFun.GetDataTableFromIList(list_Ex);
  1546. dt.TableName = "Excel_SyntheticalReceivableByDateRange";
  1547. if (dt != null)
  1548. {
  1549. designer.SetDataSource("SumPrice", "应收合计:" + result.total_fr + "RMB 已收合计:" + result.total_pr + "RMB 余款合计:" + result.total_balance + "RMB");
  1550. //数据源
  1551. designer.SetDataSource(dt);
  1552. //根据数据源处理生成报表内容
  1553. designer.Process();
  1554. string fileName = ("Receivable/应收款项(" + dto.beginDt + "~" + dto.endDt + ").xlsx");
  1555. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  1556. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  1557. return Ok(JsonView(true, "成功", new { url = rst }));
  1558. }
  1559. }
  1560. }
  1561. return Ok(JsonView(true, "获取成功", "", list_rst.Count));
  1562. }
  1563. #endregion
  1564. #region 付款申请
  1565. /// <summary>
  1566. /// 付款申请
  1567. /// 基础数据
  1568. /// </summary>
  1569. /// <param name="dto"></param>
  1570. /// <returns></returns>
  1571. [HttpPost]
  1572. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1573. public async Task<IActionResult> PostPayRequestInit()
  1574. {
  1575. try
  1576. {
  1577. var conpanyDatas = _sqlSugar.Queryable<Sys_Company>()
  1578. .Where(it => it.IsDel == 0)
  1579. .Select(it => new
  1580. {
  1581. Id = it.Id,
  1582. ConpamyName = it.CompanyName
  1583. }).ToList();
  1584. return Ok(JsonView(true, "操作成功!", new { ConpanyData = conpanyDatas }));
  1585. }
  1586. catch (Exception ex)
  1587. {
  1588. return Ok(JsonView(false, ex.Message));
  1589. }
  1590. }
  1591. /// <summary>
  1592. /// 付款申请 (PageId=51)
  1593. /// 查询 根据日期范围
  1594. /// </summary>
  1595. /// <param name="dto"></param>
  1596. /// <returns></returns>
  1597. [HttpPost]
  1598. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1599. public async Task<IActionResult> PostPayRequest_Center(PostPayRequestByDateRangeDto dto)
  1600. {
  1601. #region 验证
  1602. DateTime beginDt, endDt;
  1603. string format = "yyyy-MM-dd";
  1604. if (!DateTime.TryParseExact(dto.beginDt, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out beginDt))
  1605. {
  1606. return Ok(JsonView(false, "开始日期格式不正确!正确格式:yyyy-MM-dd"));
  1607. }
  1608. if (!DateTime.TryParseExact(dto.endDt, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out endDt))
  1609. {
  1610. return Ok(JsonView(false, "结束日期格式不正确!正确格式:yyyy-MM-dd"));
  1611. }
  1612. #region 页面操作权限验证
  1613. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  1614. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  1615. if (pageFunAuthView.CheckAuth == 0) return Ok(JsonView(false, "您没有查看权限!"));
  1616. #endregion
  1617. #endregion
  1618. try
  1619. {
  1620. PaymentRequestCheckedView checkedView = new PaymentRequestCheckedView();
  1621. var checkedStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("paymentRequestCheckedData");
  1622. if (checkedStr != null)
  1623. {
  1624. checkedView = JsonConvert.DeserializeObject<PaymentRequestCheckedView>(checkedStr.ToString());
  1625. }
  1626. tree_Fin_DailyFeePaymentResult dailyResult = PayRequest_DailyByDateRange(dto.Status, checkedView.DailyPaymentIds, dto.beginDt, dto.endDt);
  1627. tree_Group_DailyFeePaymentResult groupResult = PayRequest_GroupPaymentByDateRange(dto.Status, checkedView.GroupIds, dto.beginDt, dto.endDt);
  1628. return Ok(JsonView(true, "获取成功", new { daily = dailyResult, group = groupResult }));
  1629. }
  1630. catch (Exception ex)
  1631. {
  1632. return Ok(JsonView(false, ex.Message));
  1633. }
  1634. }
  1635. /// <summary>
  1636. /// 根据团组类型类型处理团组费用所属公司
  1637. /// </summary>
  1638. /// <param name="teamId"></param>
  1639. /// <returns></returns>
  1640. private CompanyInfo ExpenseCompanyByTeamId(int teamId)
  1641. {
  1642. CompanyInfo _companyInfo = new CompanyInfo();
  1643. List<int> _SiChuan = new List<int>() {
  1644. 38 , // 政府团
  1645. 39 , // 企业团
  1646. 40 , // 散客团
  1647. 102, // 未知
  1648. 248, // 非团组
  1649. 691, // 四川-会务活动
  1650. 762, // 四川-赛事项目收入
  1651. };
  1652. List<int> _ChengDu = new List<int>() {
  1653. 302, // 成都-会务活动
  1654. 1047, // 成都-赛事项目收入
  1655. };
  1656. if (_SiChuan.Contains(teamId))
  1657. {
  1658. _companyInfo.Id = 2;
  1659. _companyInfo.ConpanyName = "四川泛美交流有限公司";
  1660. }
  1661. if (_ChengDu.Contains(teamId))
  1662. {
  1663. _companyInfo.Id = 1;
  1664. _companyInfo.ConpanyName = "成都泛美商务有限公司";
  1665. }
  1666. return _companyInfo;
  1667. }
  1668. /// <summary>
  1669. /// 付款申请(团组费用申请相关)
  1670. /// 查询 根据日期范围
  1671. /// </summary>
  1672. /// <param name="_groupIds"></param>
  1673. /// <param name="beginDt"></param>
  1674. /// <param name="endDt"></param>
  1675. /// <returns></returns>
  1676. private tree_Group_DailyFeePaymentResult PayRequest_GroupPaymentByDateRange(int status, List<int> _groupIds, string beginDt, string endDt)
  1677. {
  1678. tree_Group_DailyFeePaymentResult _DailyFeePaymentResult = new tree_Group_DailyFeePaymentResult();
  1679. List<tree_Group_DailyFeePaymentPageListView> dataList = new List<tree_Group_DailyFeePaymentPageListView>();
  1680. #region sql条件处理
  1681. string sqlWhere = string.Format(@" And (AuditGMDate Between '{0} 00:00:00' And '{1} 23:59:59') ", beginDt, endDt);
  1682. if (status == 2)
  1683. {
  1684. if (_groupIds.Count < 1)
  1685. {
  1686. _DailyFeePaymentResult.dataList = new List<tree_Group_DailyFeePaymentPageListView>();
  1687. return _DailyFeePaymentResult;
  1688. }
  1689. sqlWhere += string.Format(@" And Id In ({0})", string.Join(",", _groupIds));
  1690. }
  1691. string sql_1 = string.Format(@"Select * From Grp_CreditCardPayment Where IsDel = 0 And IsPay = 0 And IsAuditGM = 1 {0}", sqlWhere);
  1692. #endregion
  1693. var _paymentDatas = _sqlSugar.SqlQueryable<Grp_CreditCardPayment>(sql_1).ToList();//付款信息
  1694. _DailyFeePaymentResult.gz = _paymentDatas.Where(it => it.OrbitalPrivateTransfer == 0).Sum(it => ((it.PayMoney * it.DayRate) / 100) * it.PayPercentage); //公转
  1695. _DailyFeePaymentResult.sz = _paymentDatas.Where(it => it.OrbitalPrivateTransfer == 1).Sum(it => ((it.PayMoney * it.DayRate) / 100) * it.PayPercentage); ; //私转
  1696. List<int> groupIds = _paymentDatas.Select(it => it.DIId).Distinct().ToList();
  1697. var _groupDatas = _sqlSugar.Queryable<Grp_DelegationInfo>().Where(it => it.IsDel == 0 && groupIds.Contains(it.Id)).ToList();
  1698. //_groupDatas = (List<Grp_DelegationInfo>)_groupDatas.GroupBy(it => it.TeamDid);
  1699. #region 相关基础数据源
  1700. var userDatas = _sqlSugar.Queryable<Sys_Users>().ToList();
  1701. var setDatas = _sqlSugar.Queryable<Sys_SetData>().ToList();
  1702. var hotelDatas = _sqlSugar.Queryable<Grp_HotelReservations>().Where(it => it.IsDel == 0 && groupIds.Contains(it.DiId)).ToList();
  1703. var opDatas = _sqlSugar.Queryable<Grp_CarTouristGuideGroundReservations>().Where(it => it.IsDel == 0 && groupIds.Contains(it.DiId)).ToList();
  1704. var visaDatas = _sqlSugar.Queryable<Grp_VisaInfo>().Where(it => it.IsDel == 0 && groupIds.Contains(it.DIId)).ToList();
  1705. var ioaDatas = _sqlSugar.Queryable<Grp_InvitationOfficialActivities>().Where(it => it.IsDel == 0 && groupIds.Contains(it.DiId)).ToList();
  1706. var insureDatas = _sqlSugar.Queryable<Grp_Customers>().Where(it => it.IsDel == 0 && groupIds.Contains(it.DiId)).ToList();
  1707. var airDatas = _sqlSugar.Queryable<Grp_AirTicketReservations>().Where(it => it.IsDel == 0 && groupIds.Contains(it.DIId)).ToList();
  1708. var otherMoneyDatas = _sqlSugar.Queryable<Fin_OtherPrice>().Where(it => it.IsDel == 0 && groupIds.Contains(it.Diid)).ToList();
  1709. var refundPaymentDatas = _sqlSugar.Queryable<Fin_PaymentRefundAndOtherMoney>().Where(it => it.IsDel == 0 && groupIds.Contains(it.DiId)).ToList();
  1710. var ExtraCostDatas = _sqlSugar.Queryable<Fin_GroupExtraCost>().Where(it => it.IsDel == 0 && groupIds.Contains(it.DiId)).ToList();
  1711. #endregion
  1712. //Expense company
  1713. foreach (var groupInfo in _groupDatas)
  1714. {
  1715. List<Group_DailyFeePaymentContentInfolView> childList = new List<Group_DailyFeePaymentContentInfolView>();
  1716. var groupPaymentDatas = _paymentDatas.Where(it => groupInfo.Id == it.DIId).ToList();
  1717. int rouNumber = 1;
  1718. foreach (var payInfo in groupPaymentDatas)
  1719. {
  1720. string priName = "-";
  1721. string orbitalPrivateTransfer = payInfo.OrbitalPrivateTransfer == 0 ? "公转" : payInfo.OrbitalPrivateTransfer == 1 ? "私转" : "-";
  1722. switch (payInfo.CTable)
  1723. {
  1724. case 76: //76 酒店预订
  1725. priName = hotelDatas.Find(it => payInfo.DIId == it.DiId && payInfo.CId == it.Id)?.HotelName ?? "";
  1726. break;
  1727. case 79: //79 车/导游地接
  1728. var opData = opDatas.Find(it => payInfo.DIId == it.DiId && payInfo.CId == it.Id);
  1729. if (opData != null)
  1730. {
  1731. if (payInfo.OrbitalPrivateTransfer == 0) //公转
  1732. {
  1733. priName = $"【{orbitalPrivateTransfer}】【导游: {opData.ServiceGuide} 】{opData.Area}";
  1734. }
  1735. else if (payInfo.OrbitalPrivateTransfer == 1) //私转
  1736. {
  1737. priName = $"【{orbitalPrivateTransfer}】【导游:{opData.ServiceGuide}】{opData.Area}";
  1738. }
  1739. }
  1740. break;
  1741. case 80: // 80 签证
  1742. priName = visaDatas.Find(it => payInfo.DIId == it.DIId && payInfo.CId == it.Id)?.VisaClient ?? "-";
  1743. break;
  1744. case 81: // 81 邀请/公务活动
  1745. priName = ioaDatas.Find(it => payInfo.DIId == it.DiId && payInfo.CId == it.Id)?.Inviter ?? "-";
  1746. break;
  1747. case 82: // 82 团组客户保险
  1748. priName = insureDatas.Find(it => payInfo.DIId == it.DiId && payInfo.CId == it.Id)?.ClientName ?? "-";
  1749. break;
  1750. case 85: // 85 机票预订
  1751. string flightsCode = airDatas.Find(it => payInfo.DIId == it.DIId && payInfo.CId == it.Id)?.FlightsCode ?? "-";
  1752. string airPayType = setDatas.Find(it => it.Id == payInfo.PayDId)?.Name ?? "-";
  1753. priName = $"{flightsCode}【{airPayType}】";
  1754. break;
  1755. case 98: // 98 其他款项
  1756. priName = otherMoneyDatas.Find(it => payInfo.DIId == it.Diid && payInfo.CId == it.Id)?.PriceName ?? "-";
  1757. break;
  1758. case 285: // 285 收款退还
  1759. priName = refundPaymentDatas.Find(it => payInfo.DIId == it.DiId && payInfo.CId == it.Id)?.PriceName ?? "-";
  1760. break;
  1761. case 1015: // 1015 超支费用
  1762. priName = ExtraCostDatas.Find(it => payInfo.DIId == it.DiId && payInfo.CId == it.Id)?.PriceName ?? "-";
  1763. break;
  1764. default:
  1765. priName = "";
  1766. break;
  1767. }
  1768. bool status1 = false;
  1769. if (_groupIds != null)
  1770. {
  1771. status1 = _groupIds.Contains(payInfo.Id);
  1772. }
  1773. var childInfo = new Group_DailyFeePaymentContentInfolView()
  1774. {
  1775. IsChecked = status1,
  1776. Id = payInfo.Id,
  1777. Payee = payInfo.Payee,
  1778. RowNumber = rouNumber,
  1779. Applicant = userDatas.Find(it => it.Id == payInfo.CreateUserId)?.CnName ?? "",
  1780. ApplicantDt = payInfo.CreateTime.ToString("yyyy-MM-dd HH:mm:ss"),
  1781. PayType = setDatas.Find(it => it.Id == payInfo.PayDId)?.Name ?? "",
  1782. TransferMark = orbitalPrivateTransfer,
  1783. PriceName = priName,
  1784. ModuleName = setDatas.Find(it => it.Id == payInfo.CTable)?.Name ?? "",
  1785. PayCurrCode = setDatas.Find(it => it.Id == payInfo.PaymentCurrency)?.Name ?? "",
  1786. PaymentAmount = payInfo.PayMoney,
  1787. PayRate = payInfo.DayRate,
  1788. CNYSubTotalAmount = ((payInfo.DayRate * payInfo.PayMoney) / 100) * payInfo.PayPercentage //此次付款金额
  1789. };
  1790. string remaksDescription = $"【{childInfo.PayType}】【{childInfo.ModuleName}】{rouNumber}、[申请人:{childInfo.Applicant}][收款方:{childInfo.Payee}]{priName}[{payInfo.ConsumptionPatterns}] {childInfo.PayCurrCode} {payInfo.PayMoney.ToString("#0.00")}、CNY:{childInfo.CNYSubTotalAmount.ToString("#0.00")}";
  1791. childInfo.RemaksDescription = remaksDescription;
  1792. childList.Add(childInfo);
  1793. rouNumber++;
  1794. }
  1795. CompanyInfo companyInfo = new CompanyInfo();
  1796. companyInfo = ExpenseCompanyByTeamId(groupInfo.TeamDid);
  1797. dataList.Add(new tree_Group_DailyFeePaymentPageListView()
  1798. {
  1799. Id = Guid.NewGuid().ToString("N"),
  1800. GroupName = groupInfo.TeamName,
  1801. CompanyId = companyInfo.Id,
  1802. ConpanyName = companyInfo.ConpanyName,
  1803. CNYTotalAmount = childList.Sum(it => it.CNYSubTotalAmount),
  1804. ChildList = childList,
  1805. });
  1806. }
  1807. _DailyFeePaymentResult.dataList = dataList;
  1808. return _DailyFeePaymentResult;
  1809. }
  1810. /// <summary>
  1811. /// 付款申请(日付申请相关)
  1812. /// 查询 根据日期范围
  1813. /// </summary>
  1814. /// <param name="_dailyIds"></param>
  1815. /// <param name="beginDt"></param>
  1816. /// <param name="endDt"></param>
  1817. /// <returns></returns>
  1818. private tree_Fin_DailyFeePaymentResult PayRequest_DailyByDateRange(int status, List<int> _dailyIds, string beginDt, string endDt)
  1819. {
  1820. #region sql条件处理
  1821. string sqlWhere = string.Format(@" And dfp.CreateTime between '{0} 00:00:00' And '{1} 23:59:59' ", beginDt, endDt);
  1822. if (status == 2)
  1823. {
  1824. if (_dailyIds.Count < 1)
  1825. {
  1826. return new tree_Fin_DailyFeePaymentResult() { childList = new List<Fin_DailyFeePaymentContentInfolView>() };
  1827. }
  1828. sqlWhere += string.Format(@" And dfp.Id In({0}) ", string.Join(",", _dailyIds));
  1829. }
  1830. string sql_1 = string.Format(@"Select * From (
  1831. Select row_number() over (order by dfp.Id Desc) as RowNumber,
  1832. dfp.Id,dfp.CompanyId,c.CompanyName,dfp.Instructions,dfp.SumPrice,
  1833. dfp.CreateUserId,u.CnName CreateUser,dfp.CreateTime,dfp.FAudit,dfp.MAudit,
  1834. dfp.PriceTypeId,dfp.TransferTypeId
  1835. From Fin_DailyFeePayment dfp
  1836. Inner Join Sys_Company c On dfp.CompanyId = c.Id
  1837. Left Join Sys_Users u On dfp.CreateUserId = u.Id
  1838. Where dfp.IsDel=0 {0} And dfp.FAudit = 1 And dfp.MAudit = 1 And dfp.IsPay = 0
  1839. ) temp ", sqlWhere);
  1840. #endregion
  1841. List<tree_Fin_DailyFeePaymentPageListView> DailyFeePaymentData = _sqlSugar.SqlQueryable<tree_Fin_DailyFeePaymentPageListView>(sql_1).ToList();
  1842. Dictionary<int, string> dic_setData = new Dictionary<int, string>();
  1843. foreach (var item in DailyFeePaymentData)
  1844. {
  1845. if (_dailyIds != null)
  1846. {
  1847. item.IsChecked = _dailyIds.Contains(item.Id);
  1848. }
  1849. if (dic_setData.ContainsKey(item.PriceTypeId))
  1850. {
  1851. item.priceTypeStr = dic_setData[item.PriceTypeId];
  1852. }
  1853. else
  1854. {
  1855. Sys_SetData sd_priceType = _daiRep.Query<Sys_SetData>(s => s.Id == item.PriceTypeId).First();
  1856. if (sd_priceType != null)
  1857. {
  1858. item.priceTypeStr = sd_priceType.Name;
  1859. dic_setData.Add(item.PriceTypeId, sd_priceType.Name);
  1860. }
  1861. }
  1862. if (dic_setData.ContainsKey(item.transferTypeId))
  1863. {
  1864. item.transferTypeIdStr = dic_setData[item.transferTypeId];
  1865. Sys_SetData sd_transfer = _daiRep.Query<Sys_SetData>(s => s.Id == item.transferTypeId).First();
  1866. if (sd_transfer != null)
  1867. {
  1868. item.transferParentId = sd_transfer.STid;
  1869. item.transferParentIdStr = sd_transfer.STid == 62 ? "公转" : sd_transfer.STid == 63 ? "私转" : "";
  1870. }
  1871. }
  1872. else
  1873. {
  1874. Sys_SetData sd_transfer = _daiRep.Query<Sys_SetData>(s => s.Id == item.transferTypeId).First();
  1875. if (sd_transfer != null)
  1876. {
  1877. item.transferTypeIdStr = sd_transfer.Name;
  1878. item.transferParentId = sd_transfer.STid;
  1879. item.transferParentIdStr = sd_transfer.STid == 62 ? "公转" : sd_transfer.STid == 63 ? "私转" : "";
  1880. dic_setData.Add(item.transferTypeId, sd_transfer.Name);
  1881. }
  1882. }
  1883. string feeContentSql = string.Format(@"Select * From Fin_DailyFeePaymentContent
  1884. Where IsDel=0 And DFPId = {0} ", item.Id);
  1885. item.childList = _sqlSugar.SqlQueryable<Fin_DailyFeePaymentContentInfolView>(feeContentSql).ToList();
  1886. int rowNumber = 1;
  1887. foreach (var subItem in item.childList)
  1888. {
  1889. string remaksDescription = $"{rowNumber}、【{item.priceTypeStr}】{item.Instructions}({subItem.PriceName}) CNY:{subItem.ItemTotal.ToString("#0.00")}(单价:{subItem.Price.ToString("#0.00")} * {subItem.Quantity})";
  1890. subItem.RemaksDescription = remaksDescription;
  1891. string excelRemaksDescription = $"【{item.priceTypeStr}】{item.Instructions}({subItem.PriceName}) CNY:{subItem.ItemTotal.ToString("#0.00")}(单价:{subItem.Price.ToString("#0.00")} * {subItem.Quantity})【申请人:{item.CreateUser} 申请时间:{item.CreateTime.ToString("yyyy-MM-dd HH:mm:ss")}】";
  1892. subItem.ExcelRemaksDescription = excelRemaksDescription;
  1893. rowNumber++;
  1894. }
  1895. }
  1896. decimal total_gz = DailyFeePaymentData.Where(s => s.transferParentId == 62).Sum(d => d.SumPrice ?? 0M);
  1897. decimal total_sz = DailyFeePaymentData.Where(s => s.transferParentId == 63).Sum(d => d.SumPrice ?? 0M);
  1898. var result = new tree_Fin_DailyFeePaymentResult() { gz = total_gz, sz = total_sz, dataList = DailyFeePaymentData };
  1899. return result;
  1900. }
  1901. /// <summary>
  1902. /// 付款申请 (PageId=51)
  1903. /// 团组,日付相关费用 选中状态变更
  1904. /// </summary>
  1905. /// <param name="dto"></param>
  1906. /// <returns></returns>
  1907. [HttpPost]
  1908. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1909. public async Task<IActionResult> PostPayRequestCheckedChange(PayRequestCheckedChangeDto dto)
  1910. {
  1911. #region 验证
  1912. if (dto.Type < 1 || dto.Type > 2)
  1913. {
  1914. return Ok(JsonView(false, "请传入有效的Type参数! 1 checked 2 清除上次勾选"));
  1915. }
  1916. #endregion
  1917. try
  1918. {
  1919. PaymentRequestCheckedView requestCheckedView = new PaymentRequestCheckedView();
  1920. List<int> groupIds = new List<int>();
  1921. List<int> dailyPaymentIds = new List<int>();
  1922. #region 参数处理
  1923. if (!string.IsNullOrEmpty(dto.GroupIds))
  1924. {
  1925. if (dto.GroupIds.Contains(","))
  1926. {
  1927. groupIds = dto.GroupIds.Split(',').Select(int.Parse).ToList();
  1928. }
  1929. else
  1930. {
  1931. groupIds.Add(int.Parse(dto.GroupIds));
  1932. }
  1933. }
  1934. if (!string.IsNullOrEmpty(dto.DailyPaymentIds))
  1935. {
  1936. if (dto.DailyPaymentIds.Contains(","))
  1937. {
  1938. dailyPaymentIds = dto.DailyPaymentIds.Split(',').Select(int.Parse).ToList();
  1939. }
  1940. else
  1941. {
  1942. dailyPaymentIds.Add(int.Parse(dto.DailyPaymentIds));
  1943. }
  1944. }
  1945. #endregion
  1946. requestCheckedView.GroupIds = groupIds;
  1947. requestCheckedView.DailyPaymentIds = dailyPaymentIds;
  1948. if (dto.Type == 1)
  1949. {
  1950. TimeSpan ts = DateTime.Now.AddDays(180) - DateTime.Now; //设置redis 过期时间 半年(180)
  1951. var status = await RedisRepository.RedisFactory.CreateRedisRepository().StringSetAsync<string>("paymentRequestCheckedData", JsonConvert.SerializeObject(requestCheckedView), ts);
  1952. if (status)
  1953. {
  1954. return Ok(JsonView(true, "操作成功!"));
  1955. }
  1956. }
  1957. else if (dto.Type == 2)
  1958. {
  1959. var status = await RedisRepository.RedisFactory.CreateRedisRepository().KeyDeleteAsync("paymentRequestCheckedData");
  1960. if (status)
  1961. {
  1962. return Ok(JsonView(true, "操作成功!"));
  1963. }
  1964. }
  1965. return Ok(JsonView(false, "操作失败!"));
  1966. }
  1967. catch (Exception ex)
  1968. {
  1969. return Ok(JsonView(false, ex.Message));
  1970. }
  1971. }
  1972. /// <summary>
  1973. /// 付款申请 (PageId=51)
  1974. /// 团组,日付相关费用 汇率变更
  1975. /// </summary>
  1976. /// <param name="dto"></param>
  1977. /// <returns></returns>
  1978. [HttpPost]
  1979. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  1980. public async Task<IActionResult> PostPayRequestRateChange(PayRequestRateChangeDto dto)
  1981. {
  1982. #region 验证
  1983. DateTime beginDt, endDt;
  1984. string format = "yyyy-MM-dd";
  1985. if (!DateTime.TryParseExact(dto.beginDt, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out beginDt))
  1986. {
  1987. return Ok(JsonView(false, "开始日期格式不正确!正确格式:yyyy-MM-dd"));
  1988. }
  1989. if (!DateTime.TryParseExact(dto.endDt, format, CultureInfo.InvariantCulture, DateTimeStyles.None, out endDt))
  1990. {
  1991. return Ok(JsonView(false, "结束日期格式不正确!正确格式:yyyy-MM-dd"));
  1992. }
  1993. if (dto.UserId < 1)
  1994. {
  1995. return Ok(JsonView(false, "请传入有效的UserId参数!"));
  1996. }
  1997. if (dto.Id < 1)
  1998. {
  1999. return Ok(JsonView(false, "请传入有效的Id参数!"));
  2000. }
  2001. if (dto.Rate <= 0)
  2002. {
  2003. return Ok(JsonView(false, "请传入有效的Rate参数!"));
  2004. }
  2005. #endregion
  2006. try
  2007. {
  2008. var status = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  2009. .SetColumns(it => it.DayRate == dto.Rate)
  2010. .Where(it => it.Id == dto.Id)
  2011. .ExecuteCommand();
  2012. if (status > 0)
  2013. {
  2014. PaymentRequestCheckedView checkedView = new PaymentRequestCheckedView();
  2015. var checkedStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("paymentRequestCheckedData");
  2016. if (checkedStr != null)
  2017. {
  2018. checkedView = JsonConvert.DeserializeObject<PaymentRequestCheckedView>(checkedStr.ToString());
  2019. }
  2020. tree_Fin_DailyFeePaymentResult dailyResult = PayRequest_DailyByDateRange(1, checkedView.DailyPaymentIds, dto.beginDt, dto.endDt);
  2021. tree_Group_DailyFeePaymentResult groupResult = PayRequest_GroupPaymentByDateRange(1, checkedView.GroupIds, dto.beginDt, dto.endDt);
  2022. decimal _gz = dailyResult.gz + groupResult.gz;
  2023. decimal _sz = dailyResult.sz + groupResult.sz;
  2024. return Ok(JsonView(true, "操作成功!", new { gz = dailyResult, sz = groupResult }));
  2025. }
  2026. return Ok(JsonView(false, "该项汇率修改失败!"));
  2027. }
  2028. catch (Exception ex)
  2029. {
  2030. return Ok(JsonView(false, ex.Message));
  2031. }
  2032. }
  2033. /// <summary>
  2034. /// 付款申请 (PageId=51)
  2035. /// 团组,日付相关费用 付款状态变更
  2036. /// </summary>
  2037. /// <param name="dto"></param>
  2038. /// <returns></returns>
  2039. [HttpPost]
  2040. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2041. public async Task<IActionResult> PostPayRequestPayChange(PayRequestPayChangeDto dto)
  2042. {
  2043. if (dto.UserId < 1)
  2044. {
  2045. return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2046. }
  2047. //if (string.IsNullOrEmpty(dto.GroupIds))
  2048. //{
  2049. // return Ok(JsonView(false, "请传入有效的GroupIds参数!"));
  2050. //}
  2051. //if (string.IsNullOrEmpty(dto.DailyPaymentIds))
  2052. //{
  2053. // return Ok(JsonView(false, "请传入有效的DailyPaymentIds参数!"));
  2054. //}
  2055. try
  2056. {
  2057. List<int> groupIds = new List<int>();
  2058. List<int> dailyPaymentIds = new List<int>();
  2059. #region 参数处理
  2060. if (!string.IsNullOrEmpty(dto.GroupIds))
  2061. {
  2062. if (dto.GroupIds.Contains(","))
  2063. {
  2064. groupIds = dto.GroupIds.Split(',').Select(int.Parse).ToList();
  2065. }
  2066. else
  2067. {
  2068. groupIds.Add(int.Parse(dto.GroupIds));
  2069. }
  2070. }
  2071. if (!string.IsNullOrEmpty(dto.DailyPaymentIds))
  2072. {
  2073. if (dto.DailyPaymentIds.Contains(","))
  2074. {
  2075. dailyPaymentIds = dto.DailyPaymentIds.Split(',').Select(int.Parse).ToList();
  2076. }
  2077. else
  2078. {
  2079. dailyPaymentIds.Add(int.Parse(dto.DailyPaymentIds));
  2080. }
  2081. }
  2082. #endregion
  2083. bool changeStatus = false;
  2084. _sqlSugar.BeginTran();
  2085. if (groupIds.Count > 0)
  2086. {
  2087. var groupStatus = _sqlSugar.Updateable<Grp_CreditCardPayment>()
  2088. .SetColumns(it => it.IsPay == 1)
  2089. .Where(it => groupIds.Contains(it.Id))
  2090. .ExecuteCommand();
  2091. if (groupStatus > 0)
  2092. {
  2093. changeStatus = true;
  2094. }
  2095. }
  2096. if (dailyPaymentIds.Count > 0)
  2097. {
  2098. var dailyPaymentStatus = _sqlSugar.Updateable<Fin_DailyFeePayment>()
  2099. .SetColumns(it => it.IsPay == 1)
  2100. .Where(it => dailyPaymentIds.Contains(it.Id))
  2101. .ExecuteCommand();
  2102. if (dailyPaymentStatus > 0)
  2103. {
  2104. changeStatus = true;
  2105. }
  2106. }
  2107. if (changeStatus)
  2108. {
  2109. _sqlSugar.CommitTran();
  2110. return Ok(JsonView(true, "操作成功!"));
  2111. }
  2112. _sqlSugar.RollbackTran();
  2113. return Ok(JsonView(false, "付款状态修改失败!"));
  2114. }
  2115. catch (Exception ex)
  2116. {
  2117. _sqlSugar.RollbackTran();
  2118. return Ok(JsonView(false, ex.Message));
  2119. }
  2120. }
  2121. /// <summary>
  2122. /// 付款申请 (PageId=51)
  2123. /// File Download
  2124. /// </summary>
  2125. /// <param name="dto"></param>
  2126. /// <returns></returns>
  2127. [HttpPost]
  2128. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2129. public async Task<IActionResult> PostPayRequestFileDownload(PayRequestFileDownloadDto dto)
  2130. {
  2131. #region 参数,权限 验证
  2132. if (dto.PortType < 1)
  2133. {
  2134. return Ok(JsonView(false, "请传入有效的PortType参数!"));
  2135. }
  2136. if (dto.UserId < 1)
  2137. {
  2138. return Ok(JsonView(false, "请传入有效的UserId参数!"));
  2139. }
  2140. if (dto.PageId < 1)
  2141. {
  2142. dto.PageId = 51;
  2143. return Ok(JsonView(false, "请传入有效的PageId参数!"));
  2144. }
  2145. if (dto.ConpanyId < 1 || dto.ConpanyId > 4)
  2146. {
  2147. return Ok(JsonView(false, "请传入有效的ConpanyId参数!"));
  2148. }
  2149. PageFunAuthViewBase pageFunAuthView = new PageFunAuthViewBase();
  2150. #region 页面操作权限验证
  2151. pageFunAuthView = await GeneralMethod.PostUserPageFuncDatas(dto.UserId, dto.PageId);
  2152. if (pageFunAuthView.FilesDownloadAuth == 0) return Ok(JsonView(false, "您没有文件下载权限!"));
  2153. #endregion
  2154. #endregion
  2155. try
  2156. {
  2157. PaymentRequestCheckedView checkedView = new PaymentRequestCheckedView();
  2158. var checkedStr = await RedisRepository.RedisFactory.CreateRedisRepository().StringGetAsync<string>("paymentRequestCheckedData");
  2159. if (checkedStr != null)
  2160. {
  2161. checkedView = JsonConvert.DeserializeObject<PaymentRequestCheckedView>(checkedStr.ToString());
  2162. }
  2163. if (checkedView == null)
  2164. {
  2165. return Ok(JsonView(false, "没有选中的数据!"));
  2166. }
  2167. if (checkedView.GroupIds == null && checkedView.DailyPaymentIds == null)
  2168. {
  2169. return Ok(JsonView(false, "没有选中的数据!"));
  2170. }
  2171. tree_Fin_DailyFeePaymentResult dailyResult = PayRequest_DailyByDateRange(2, checkedView.DailyPaymentIds, dto.beginDt, dto.endDt);
  2172. tree_Group_DailyFeePaymentResult groupResult = PayRequest_GroupPaymentByDateRange(2, checkedView.GroupIds, dto.beginDt, dto.endDt);
  2173. if (dailyResult.childList == null)
  2174. {
  2175. dailyResult.childList = new List<Fin_DailyFeePaymentContentInfolView>();
  2176. }
  2177. List<tree_Group_DailyFeePaymentPageListView> _GroupData = new List<tree_Group_DailyFeePaymentPageListView>();
  2178. List<tree_Fin_DailyFeePaymentPageListView> _DailyData = new List<tree_Fin_DailyFeePaymentPageListView>();
  2179. //1 成都泛美商务有限公司
  2180. if (dto.ConpanyId == 1)
  2181. {
  2182. if (groupResult.dataList != null && groupResult.dataList.Count > 0) _GroupData = groupResult.dataList.Where(it => it.CompanyId == 1).ToList();
  2183. if (dailyResult.dataList != null && dailyResult.dataList.Count > 0) _DailyData = dailyResult.dataList.Where(it => it.CompanyId == 1).ToList();
  2184. }
  2185. //2 四川泛美交流有限公司
  2186. else if (dto.ConpanyId == 2)
  2187. {
  2188. if (groupResult.dataList != null && groupResult.dataList.Count > 0) _GroupData = groupResult.dataList.Where(it => it.CompanyId == 2).ToList();
  2189. if (dailyResult.dataList != null && dailyResult.dataList.Count > 0) _DailyData = dailyResult.dataList.Where(it => it.CompanyId == 2).ToList();
  2190. }
  2191. //3 成都纽茵教育科技有限公司
  2192. else if (dto.ConpanyId == 3)
  2193. {
  2194. if (groupResult.dataList != null && groupResult.dataList.Count > 0) _GroupData = groupResult.dataList.Where(it => it.CompanyId == 3).ToList();
  2195. if (dailyResult.dataList != null && dailyResult.dataList.Count > 0) _DailyData = dailyResult.dataList.Where(it => it.CompanyId == 3).ToList();
  2196. }
  2197. //4 成都鸿企中元科技有限公司
  2198. else if (dto.ConpanyId == 4)
  2199. {
  2200. return Ok(JsonView(false, "暂未开放该类型!"));
  2201. }
  2202. else
  2203. {
  2204. return Ok(JsonView(false, "参数ConpanyId不可使用!"));
  2205. }
  2206. string _requestPaymentDt = DateTime.Now.ToString("yyyy-MM-dd"),//申请付款日期
  2207. _appliedAmount = "", //申请付款金额
  2208. _GZStr = "", //公转价格描述
  2209. _SZStr = ""; //私转价格描述
  2210. decimal groupGZAmout = 0.00M, groupSZAmout = 0.00M;
  2211. decimal dailyGZAmout = 0.00M, dailySZAmout = 0.00M;
  2212. string dailyGZStr = "", dailySZStr = "", groupGZStr = "", groupSZStr = "";
  2213. #region 数据处理
  2214. //团组费用相关
  2215. foreach (var item in _GroupData)
  2216. {
  2217. string groupGZSubStr = "";
  2218. string groupSZSubStr = "";
  2219. foreach (var subItem in item.ChildList)
  2220. {
  2221. if (subItem.TransferMark.Equals("公转"))
  2222. {
  2223. groupGZAmout += subItem.CNYSubTotalAmount;
  2224. groupGZSubStr += $"{subItem.RemaksDescription}\r\n";
  2225. }
  2226. else if (subItem.TransferMark.Equals("私转"))
  2227. {
  2228. groupSZAmout += subItem.CNYSubTotalAmount;
  2229. groupSZSubStr += $"{subItem.RemaksDescription}\r\n";
  2230. }
  2231. groupGZSubStr += $"\t";
  2232. }
  2233. if (!string.IsNullOrEmpty(groupGZSubStr)) groupGZStr += $"团组:{item.GroupName}\r\n{groupGZSubStr}\r\n";
  2234. if (!string.IsNullOrEmpty(groupSZSubStr)) groupSZStr += $"团组:{item.GroupName}\r\n{groupSZSubStr}\r\n";
  2235. }
  2236. //日常费用相关
  2237. foreach (var item in _DailyData)
  2238. {
  2239. foreach (var subItem in item.childList)
  2240. {
  2241. if (item.transferParentId == 62) //公转
  2242. {
  2243. dailyGZAmout += item.SumPrice ?? 0.00M;
  2244. dailyGZStr += $"{item.RowNumber}、【{item.CompanyName}】{subItem.ExcelRemaksDescription}\r\n";
  2245. }
  2246. else if (item.transferParentId == 63) //私转
  2247. {
  2248. dailySZAmout += item.SumPrice ?? 0.00M;
  2249. dailySZStr += $"{item.RowNumber}、【{item.CompanyName}】{subItem.ExcelRemaksDescription}\r\n";
  2250. }
  2251. }
  2252. }
  2253. _GZStr = $"【公转】团组相关费用(合计:CNY {groupGZAmout.ToString("#0.00")}):\r\n{groupGZStr}【公转】日常付款费用(合计:CNY {dailyGZAmout.ToString("#0.00")}):\r\n{dailyGZStr}";
  2254. _SZStr = $"【私转】团组相关费用(合计:CNY {groupSZAmout.ToString("#0.00")}):\r\n{groupSZStr}【私转】日常付款费用(合计:CNY {dailySZAmout.ToString("#0.00")}):\r\n{dailySZStr}";
  2255. _appliedAmount = $"公转:CNY {(groupGZAmout + dailyGZAmout).ToString("#0.00")}\r\n私转:CNY {(groupSZAmout + dailySZAmout).ToString("#0.00")}";
  2256. #endregion
  2257. WorkbookDesigner designer = new WorkbookDesigner();
  2258. designer.Workbook = new Workbook(AppSettingsHelper.Get("ExcelBasePath") + "Template/付款申请书.xls");
  2259. designer.SetDataSource("Date", _requestPaymentDt);
  2260. designer.SetDataSource("Price", _appliedAmount);
  2261. designer.SetDataSource("Content", _GZStr);
  2262. designer.SetDataSource("Content1", _SZStr);
  2263. //根据数据源处理生成报表内容
  2264. designer.Process();
  2265. string fileName = ("PayRequest/付款申请(" + dto.beginDt + "~" + dto.endDt + ").xlsx");
  2266. designer.Workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2267. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2268. return Ok(JsonView(true, "操作成功!", new { url = rst }));
  2269. }
  2270. catch (Exception ex)
  2271. {
  2272. return Ok(JsonView(false, ex.Message));
  2273. }
  2274. }
  2275. #endregion
  2276. #region 超支费用
  2277. /// <summary>
  2278. /// 超支费用
  2279. /// 1增、2改、3删
  2280. /// </summary>
  2281. /// <param name="dto"></param>
  2282. /// <returns></returns>
  2283. [HttpPost]
  2284. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2285. public async Task<IActionResult> PostGroupExtraCost_Operator(Fin_GroupExtraCostDto_OP dto)
  2286. {
  2287. #region 验证
  2288. #endregion
  2289. Fin_GroupExtraCost _entity = new Fin_GroupExtraCost();
  2290. _entity.DiId = dto.diId;
  2291. _entity.PriceName = dto.priceName;
  2292. _entity.Price = dto.price;
  2293. _entity.PriceCurrency = dto.currency;
  2294. _entity.PriceType = dto.priceType;
  2295. _entity.Coefficient = dto.coefficient;
  2296. _entity.PriceDetailType = dto.priceDetailType;
  2297. _entity.FilePath = dto.filePath;
  2298. _entity.Remark = dto.remark;
  2299. _entity.PriceCount = dto.PriceCount;
  2300. _entity.PriceDt = DateTime.Parse(dto.PriceDt);
  2301. _entity.PriceSum = dto.price * dto.PriceCount;
  2302. _daiRep.BeginTran();
  2303. if (dto.editType == 1)
  2304. {
  2305. _entity.CreateUserId = dto.createUser;
  2306. _entity.CreateTime = DateTime.Now;
  2307. _entity.IsDel = 0;
  2308. int returnId = await _daiRep.AddAsyncReturnId<Fin_GroupExtraCost>(_entity);
  2309. if (returnId > 0)
  2310. {
  2311. dto.Id = returnId;
  2312. }
  2313. }
  2314. else if (dto.editType == 2)
  2315. {
  2316. bool res = await _daiRep.UpdateAsync<Fin_GroupExtraCost>(s => s.Id == dto.Id, s => new Fin_GroupExtraCost
  2317. {
  2318. PriceName = dto.priceName,
  2319. Price = dto.price,
  2320. PriceCurrency = dto.currency,
  2321. PriceType = dto.priceType,
  2322. PriceDetailType = dto.priceDetailType,
  2323. Coefficient = dto.coefficient,
  2324. FilePath = dto.filePath,
  2325. Remark = dto.remark,
  2326. PriceCount = dto.PriceCount,
  2327. PriceDt = _entity.PriceDt,
  2328. PriceSum = _entity.PriceSum
  2329. });
  2330. if (!res)
  2331. {
  2332. _daiRep.RollbackTran();
  2333. return Ok(JsonView(false, "2操作失败!"));
  2334. }
  2335. }
  2336. else if (dto.editType == 3)
  2337. {
  2338. string delTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm");
  2339. bool res = await _daiRep.UpdateAsync<Fin_GroupExtraCost>(s => s.Id == dto.Id, s => new Fin_GroupExtraCost
  2340. {
  2341. IsDel = 1,
  2342. DeleteTime = delTime,
  2343. DeleteUserId = dto.createUser
  2344. });
  2345. if (!res)
  2346. {
  2347. _daiRep.RollbackTran();
  2348. return Ok(JsonView(false, "3操作失败!"));
  2349. }
  2350. }
  2351. else
  2352. {
  2353. _daiRep.RollbackTran();
  2354. return Ok(JsonView(false, "未知的editType"));
  2355. }
  2356. if (!extraCost_editCreditCardPayment(dto))
  2357. {
  2358. return Ok(JsonView(false, "ccp操作失败"));
  2359. }
  2360. _daiRep.CommitTran();
  2361. return Ok(JsonView(true, "操作成功"));
  2362. }
  2363. private bool extraCost_editCreditCardPayment(Fin_GroupExtraCostDto_OP costDto)
  2364. {
  2365. //设置团组汇率
  2366. decimal dcm_dayrate = 1M;
  2367. decimal dcm_rmbPrice = costDto.price;
  2368. int ispay = costDto.payType == 72 ? 1 : 0;
  2369. if (costDto.costSign != 3)
  2370. {
  2371. Grp_TeamRate tr = _daiRep.Query<Grp_TeamRate>(s => s.DiId == costDto.diId && s.CTable == 1015).First();
  2372. if (tr != null)
  2373. {
  2374. if (costDto.currency == 49)
  2375. {
  2376. dcm_dayrate = tr.RateU;
  2377. dcm_rmbPrice = dcm_rmbPrice * tr.RateU;
  2378. }
  2379. else if (costDto.currency == 51)
  2380. {
  2381. dcm_dayrate = tr.RateE;
  2382. dcm_rmbPrice = dcm_rmbPrice * tr.RateE;
  2383. }
  2384. }
  2385. }
  2386. Grp_CreditCardPayment ccp = _daiRep.Query<Grp_CreditCardPayment>(s => s.CId == costDto.Id && s.CTable == 1015).First();
  2387. if (ccp == null)
  2388. {
  2389. ccp = new Grp_CreditCardPayment();
  2390. ccp.PayDId = costDto.payType;// dto
  2391. ccp.ConsumptionPatterns = "";
  2392. ccp.ConsumptionDate = "";
  2393. ccp.CTDId = costDto.payCardId;// dto
  2394. ccp.BankNo = "";
  2395. ccp.CardholderName = "";
  2396. ccp.PayMoney = costDto.price;// dto
  2397. ccp.PaymentCurrency = costDto.currency;// dto
  2398. ccp.CompanyBankNo = "";
  2399. ccp.OtherBankName = "";
  2400. ccp.OtherSideNo = "";
  2401. ccp.OtherSideName = "";
  2402. ccp.Remark = "";
  2403. ccp.CreateUserId = costDto.createUser;
  2404. ccp.CreateTime = DateTime.Now;
  2405. ccp.MFOperator = 0;
  2406. ccp.MFOperatorDate = "";
  2407. ccp.IsAuditDM = 0;
  2408. ccp.AuditDMOperate = 0;
  2409. ccp.AuditDMDate = "";
  2410. ccp.IsAuditMF = 0;
  2411. ccp.AuditMFOperate = 0;
  2412. ccp.AuditMFDate = "";
  2413. ccp.IsAuditGM = 0;
  2414. ccp.AuditGMOperate = 0;
  2415. ccp.AuditGMDate = "";
  2416. ccp.IsPay = ispay; // upd
  2417. ccp.DIId = costDto.diId;// dto
  2418. ccp.CId = costDto.Id;// dto
  2419. ccp.CTable = 1015; //超支费用指向id
  2420. ccp.IsDel = 0;
  2421. ccp.PayPercentage = 100M;
  2422. ccp.PayThenMoney = 0M;
  2423. ccp.PayPercentageOld = 100M;
  2424. ccp.PayThenMoneyOld = 0M;
  2425. ccp.UpdateDate = "";
  2426. ccp.Payee = costDto.payee;// dto
  2427. ccp.OrbitalPrivateTransfer = costDto.costSign;// dto
  2428. ccp.ExceedBudget = 0;
  2429. ccp.DayRate = dcm_dayrate; //upd
  2430. ccp.RMBPrice = dcm_rmbPrice; //upd
  2431. int ccpInsertId = _daiRep.AddReturnId<Grp_CreditCardPayment>(ccp);
  2432. if (ccpInsertId > 0)
  2433. {
  2434. return true;
  2435. }
  2436. }
  2437. else
  2438. {
  2439. if (costDto.editType == 2)
  2440. {
  2441. bool res = _daiRep.Update<Grp_CreditCardPayment>(s => s.Id == ccp.Id, s => new Grp_CreditCardPayment
  2442. {
  2443. PayDId = costDto.payType,
  2444. CTDId = costDto.payCardId,
  2445. PayMoney = costDto.price,
  2446. PaymentCurrency = costDto.currency,
  2447. IsPay = ispay,
  2448. Payee = costDto.payee,
  2449. OrbitalPrivateTransfer = costDto.costSign,
  2450. DayRate = dcm_dayrate,
  2451. RMBPrice = dcm_rmbPrice
  2452. });
  2453. return res;
  2454. }
  2455. else if (costDto.editType == 3)
  2456. {
  2457. string delTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm");
  2458. bool res2 = _daiRep.Update<Grp_CreditCardPayment>(s => s.Id == ccp.Id, s => new Grp_CreditCardPayment
  2459. {
  2460. IsDel = 1,
  2461. DeleteTime = delTime,
  2462. DeleteUserId = costDto.createUser
  2463. });
  2464. return res2;
  2465. }
  2466. }
  2467. return false;
  2468. }
  2469. /// <summary>
  2470. /// 超支费用
  2471. /// 详情查询
  2472. /// </summary>
  2473. /// <param name="dto"></param>
  2474. /// <returns></returns>
  2475. [HttpPost]
  2476. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2477. public async Task<IActionResult> PostGroupExtraCost_Detail(Fin_GroupExtraCostDto_Detail dto)
  2478. {
  2479. if (dto.Id < 1)
  2480. {
  2481. return Ok(JsonView(false, "查询失败"));
  2482. }
  2483. string sql = string.Format(@" Select
  2484. f.Id,f.DiId,
  2485. f.PriceName,f.Price,f.PriceCurrency,c.Payee,c.OrbitalPrivateTransfer,c.PayDId,
  2486. c.CTDId,f.PriceType,f.PriceDetailType,f.Coefficient,f.Remark,f.PriceCount,f.PriceDt
  2487. From Fin_GroupExtraCost f
  2488. Inner Join Grp_CreditCardPayment c On f.Id = c.CId
  2489. Left Join Sys_Users u On f.CreateUserId = u.Id
  2490. Where f.IsDel=0 And c.CTable = 1015
  2491. And f.Id = {0} ", dto.Id);
  2492. Fin_GroupExtraCostDetailView detailView = await _sqlSugar.SqlQueryable<Fin_GroupExtraCostDetailView>(sql).FirstAsync();
  2493. if (detailView == null)
  2494. {
  2495. return Ok(JsonView(false, "查询失败"));
  2496. }
  2497. return Ok(JsonView(true, "查询成功", detailView));
  2498. }
  2499. /// <summary>
  2500. /// 超支费用
  2501. /// 列表查询
  2502. /// </summary>
  2503. /// <param name="dto"></param>
  2504. /// <returns></returns>
  2505. [HttpPost]
  2506. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2507. public async Task<IActionResult> PostGroupExtraCost_Search(Fin_GroupExtraCostDto_Search dto)
  2508. {
  2509. string sqlWhere = string.Format(@" And f.DiId = {0} ", dto.diId);
  2510. int startIndex = (dto.PageIndex - 1) * dto.PageSize + 1;
  2511. int endIndex = startIndex + dto.PageSize - 1;
  2512. string sql_data = string.Format(@"Select * From (
  2513. Select row_number() over (order by f.Id Desc) as RowNumber,f.Id,f.DiId,
  2514. f.PriceName,f.PriceType,f.PriceDetailType,CAST(f.Price as varchar)+' '+s.[Name] as PriceStr,f.PriceCount,CAST(f.PriceSum as varchar)+' '+s.[Name] as PriceSumStr,
  2515. f.CreateUserId,f.PriceDt,c.IsAuditGM
  2516. From Fin_GroupExtraCost f
  2517. Inner Join Grp_CreditCardPayment c On f.Id = c.CId
  2518. Inner Join Sys_SetData s On f.PriceCurrency = s.Id
  2519. Left Join Sys_Users u On f.CreateUserId = u.Id
  2520. Where f.IsDel=0 And c.CTable = 1015 {0}
  2521. ) temp Where RowNumber Between {1} and {2}", sqlWhere, startIndex, endIndex);
  2522. string sql_count = string.Format(@"Select Count(1) as DataCount From (
  2523. Select row_number() over (order by f.Id Desc) as RowNumber,f.Id,f.DiId,
  2524. f.PriceName,f.PriceType,f.Price,f.FilePath,f.CreateUserId,f.CreateTime,c.IsAuditGM
  2525. From Fin_GroupExtraCost f
  2526. Inner Join Grp_CreditCardPayment c On f.Id = c.CId
  2527. Inner Join Sys_SetData s On f.PriceCurrency = s.Id
  2528. Left Join Sys_Users u On f.CreateUserId = u.Id
  2529. Where f.IsDel=0 And c.CTable = 1015 {0}
  2530. ) temp ", sqlWhere);
  2531. if (dto.PortType == 1 || dto.PortType == 2 || dto.PortType == 3) //web
  2532. {
  2533. //Fin_DailyFeePaymentPageCount
  2534. var count = await _sqlSugar.SqlQueryable<Fin_GroupExtraCostViewDataCount>(sql_count).FirstAsync();
  2535. List<Fin_GroupExtraCostView> dataList = await _sqlSugar.SqlQueryable<Fin_GroupExtraCostView>(sql_data).ToListAsync();
  2536. Dictionary<int, string> dic_setData = new Dictionary<int, string>();
  2537. Dictionary<int, string> dic_user = new Dictionary<int, string>();
  2538. foreach (var item in dataList)
  2539. {
  2540. DateTime dtTemp_PriceDt;
  2541. bool b_ct = DateTime.TryParse(item.PriceDt, out dtTemp_PriceDt);
  2542. if (b_ct)
  2543. {
  2544. item.PriceDt = dtTemp_PriceDt.ToString("yyyy-MM-dd");
  2545. }
  2546. //费用类型
  2547. if (dic_setData.ContainsKey(item.PriceType))
  2548. {
  2549. item.PriceTypeStr = dic_setData[item.PriceType];
  2550. }
  2551. else
  2552. {
  2553. Sys_SetData sd_priceTypeDetail = _daiRep.Query<Sys_SetData>(s => s.Id == item.PriceType).First();
  2554. if (sd_priceTypeDetail != null)
  2555. {
  2556. string tempName = sd_priceTypeDetail.Name.Replace("n", "");
  2557. item.PriceTypeStr = tempName;
  2558. dic_setData.Add(item.PriceType, tempName);
  2559. }
  2560. }
  2561. if (item.PriceDetailType > 0)
  2562. {
  2563. if (dic_setData.ContainsKey(item.PriceDetailType))
  2564. {
  2565. item.PriceTypeStr = item.PriceTypeStr + " - " + dic_setData[item.PriceDetailType];
  2566. }
  2567. else
  2568. {
  2569. Sys_SetData sd_priceTypeDetail = _daiRep.Query<Sys_SetData>(s => s.Id == item.PriceDetailType).First();
  2570. if (sd_priceTypeDetail != null)
  2571. {
  2572. string tempName = sd_priceTypeDetail.Name.Replace("n", "");
  2573. item.PriceTypeStr = item.PriceTypeStr + " - " + tempName;
  2574. dic_setData.Add(item.PriceDetailType, tempName);
  2575. }
  2576. }
  2577. }
  2578. //系统用户
  2579. if (dic_user.ContainsKey(item.CreateUserId))
  2580. {
  2581. item.CreateUserIdStr = dic_user[item.CreateUserId];
  2582. }
  2583. else
  2584. {
  2585. Sys_Users users = _daiRep.Query<Sys_Users>(s => s.Id == item.CreateUserId).First();
  2586. if (users != null)
  2587. {
  2588. item.CreateUserIdStr = users.CnName;
  2589. dic_user.Add(item.CreateUserId, users.CnName);
  2590. }
  2591. }
  2592. switch (item.IsAuditGM)
  2593. {
  2594. case 0: item.IsAuditGMStr = "未审核"; break;
  2595. case 1: item.IsAuditGMStr = "已通过"; break;
  2596. case 2: item.IsAuditGMStr = "未通过"; break;
  2597. default: item.IsAuditGMStr = "未知状态"; break;
  2598. }
  2599. }
  2600. var result = new ListViewBase<Fin_GroupExtraCostView>
  2601. {
  2602. CurrPageIndex = dto.PageIndex,
  2603. CurrPageSize = dto.PageSize,
  2604. DataCount = count.DataCount,
  2605. DataList = dataList
  2606. };
  2607. return Ok(JsonView(true, "查询成功", result));
  2608. }
  2609. return Ok(JsonView(false, "查询失败"));
  2610. }
  2611. /// <summary>
  2612. /// 超支费用
  2613. /// 数据集合配置
  2614. /// </summary>
  2615. /// <param name="dto"></param>
  2616. /// <returns></returns>
  2617. [HttpPost]
  2618. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2619. public async Task<IActionResult> PostGroupExtraCost_ListDataInit(Fin_GroupExtraCostDto_DataListInit dto)
  2620. {
  2621. //支付方式
  2622. List<Sys_SetData> Payment = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 14 && a.IsDel == 0).ToList();
  2623. List<SetDataInfoView> _Payment = _mapper.Map<List<SetDataInfoView>>(Payment);
  2624. //信用卡类型
  2625. List<Sys_SetData> Card = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 15 && a.IsDel == 0).ToList();
  2626. List<SetDataInfoView> _Card = _mapper.Map<List<SetDataInfoView>>(Card);
  2627. //超支费用类型
  2628. List<Sys_SetData> PriceType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 79 && a.IsDel == 0).ToList();
  2629. List<SetDataInfoView> _PriceType = _mapper.Map<List<SetDataInfoView>>(PriceType);
  2630. //超支费用详细类型
  2631. List<Sys_SetData> PriceDetailType = _sqlSugar.Queryable<Sys_SetData>().Where(a => a.STid == 80 && a.IsDel == 0).ToList();
  2632. PriceDetailType.ForEach(a => { a.Name = a.Name.Replace("n", ""); });
  2633. List<SetDataInfoView> _PriceDetailType = _mapper.Map<List<SetDataInfoView>>(PriceDetailType);
  2634. var data = new
  2635. {
  2636. Payment = _Payment,
  2637. Card = _Card,
  2638. PriceType = _PriceType,
  2639. PriceDetailType = _PriceDetailType
  2640. };
  2641. return Ok(JsonView(true, "", data));
  2642. }
  2643. /// <summary>
  2644. /// 超支费用
  2645. /// 导出团组超支费用Excel
  2646. /// </summary>
  2647. /// <param name="dto"></param>
  2648. /// <returns></returns>
  2649. [HttpPost]
  2650. [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
  2651. public async Task<IActionResult> PostGroupExtraCost_OutputExcel(Fin_GroupExtraCostExcelDto dto)
  2652. {
  2653. string sqlGroup = string.Format(@" Select * From Grp_DelegationInfo WIth(Nolock) where Id = {0} ", dto.diId);
  2654. Grp_DelegationInfo grp_DelegationInfo = await _sqlSugar.SqlQueryable<Grp_DelegationInfo>(sqlGroup).FirstAsync();
  2655. if (grp_DelegationInfo == null)
  2656. {
  2657. return Ok(JsonView(false, "导出失败,未查询到团组"));
  2658. }
  2659. Workbook workbook = new Workbook();
  2660. Worksheet sheet = workbook.Worksheets[0];
  2661. Cells cells = sheet.Cells;
  2662. //sheet.Protect(Aspose.Cells.ProtectionType.All, "123123", "");//保护工作表
  2663. //sheet.Protection.IsSelectingLockedCellsAllowed = true;//设置只能选择解锁单元格
  2664. //sheet.Protection.IsFormattingColumnsAllowed = true;//设置可以调整列
  2665. //sheet.Protection.IsFormattingRowsAllowed = true;//设置可以调整行
  2666. #region 数据源
  2667. string sqlData = string.Format(@" Select f.PriceType,REPLACE(s2.[Name],'超支费用','') as PriceTypeStr,'('+REPLACE(s3.[Name],'n','')+')' as PriceDetailTypeStr, PriceDt,PriceName,
  2668. Price,PriceCount,s.[Name] as Currency,PriceSum,f.Remark
  2669. From Fin_GroupExtraCost as f With(Nolock)
  2670. Inner Join Grp_CreditCardPayment as c With(Nolock) On f.Id = c.CId
  2671. Inner Join Sys_SetData as s With(Nolock) On f.PriceCurrency = s.Id
  2672. Inner Join Sys_SetData as s2 With(Nolock) On f.PriceType = s2.Id
  2673. Inner Join Sys_SetData as s3 With(Nolock) On f.PriceDetailType = s3.Id
  2674. Where f.DiId = {0} And f.IsDel=0 And c.CTable=1015
  2675. Order by PriceType ASC,PriceDt ASC ", dto.diId);
  2676. string sqlDataCount = string.Format(@" Select f.PriceType,COUNT(f.PriceType) as DataCount
  2677. From Fin_GroupExtraCost as f With(Nolock)
  2678. Inner Join Grp_CreditCardPayment as c With(Nolock) On f.Id = c.CId
  2679. Where f.DiId = {0} And f.IsDel=0 And c.CTable=1015
  2680. Group by PriceType ", dto.diId);
  2681. List<Fin_GroupExtraCost_ExcelView> dataList = await _sqlSugar.SqlQueryable<Fin_GroupExtraCost_ExcelView>(sqlData).ToListAsync();
  2682. List<Fin_GroupExtraCost_ExcelCountView> countList = await _sqlSugar.SqlQueryable<Fin_GroupExtraCost_ExcelCountView>(sqlDataCount).ToListAsync();
  2683. if (dataList.Count < 1 || countList.Count < 1)
  2684. {
  2685. return Ok(JsonView(false, "导出失败,未查询到数据"));
  2686. }
  2687. #endregion
  2688. #region 标题
  2689. string cellValue_Header = grp_DelegationInfo.TeamName;
  2690. //Aspose.Cells.Style style1 = workbook.Styles[workbook.Styles.Add()];//新增样式
  2691. Aspose.Cells.Style style_Header = workbook.CreateStyle();
  2692. style_Header.HorizontalAlignment = TextAlignmentType.Center;//文字居中
  2693. style_Header.VerticalAlignment = TextAlignmentType.Center;
  2694. style_Header.Font.Name = "微软雅黑";//文字字体
  2695. style_Header.Font.Size = 18;//文字大小
  2696. style_Header.IsLocked = false;//单元格解锁
  2697. style_Header.Font.IsBold = false;//粗体
  2698. style_Header.Font.Color = Color.FromArgb(255, 0, 0);
  2699. //style1.ForegroundColor = Color.FromArgb(0x99, 0xcc, 0xff);//设置背景色
  2700. //style1.Pattern = BackgroundType.Solid; //设置背景样式
  2701. //style1.IsTextWrapped = true;//单元格内容自动换行
  2702. style_Header.Borders[Aspose.Cells.BorderType.LeftBorder].LineStyle = CellBorderType.Thin; //应用边界线 左边界线
  2703. style_Header.Borders[Aspose.Cells.BorderType.RightBorder].LineStyle = CellBorderType.Thin; //应用边界线 右边界线
  2704. style_Header.Borders[Aspose.Cells.BorderType.TopBorder].LineStyle = CellBorderType.Thin; //应用边界线 上边界线
  2705. style_Header.Borders[Aspose.Cells.BorderType.BottomBorder].LineStyle = CellBorderType.Thin; //应用边界线 下边界线
  2706. cells.Merge(1, 1, 1, 10);
  2707. Aspose.Cells.Range range_header = cells.CreateRange(1, 1, 1, 10);
  2708. range_header.PutValue(cellValue_Header, false, false);
  2709. range_header.SetStyle(style_Header);
  2710. cells.SetRowHeight(1, 35);
  2711. #endregion
  2712. #region 列名
  2713. Aspose.Cells.Style style_colName = workbook.CreateStyle();
  2714. style_colName.Name = "colName";
  2715. style_colName.HorizontalAlignment = TextAlignmentType.Center;//文字居中
  2716. style_colName.VerticalAlignment = TextAlignmentType.Center;
  2717. style_colName.Font.Name = "微软雅黑";//文字字体
  2718. style_colName.Font.Size = 12;//文字大小
  2719. style_colName.IsLocked = false;//单元格解锁
  2720. style_colName.Font.IsBold = true;//粗体
  2721. style_colName.Font.Color = Color.FromArgb(0, 0, 0);
  2722. style_colName.Borders[Aspose.Cells.BorderType.LeftBorder].LineStyle = CellBorderType.Thin; //应用边界线 左边界线
  2723. style_colName.Borders[Aspose.Cells.BorderType.RightBorder].LineStyle = CellBorderType.Thin; //应用边界线 右边界线
  2724. style_colName.Borders[Aspose.Cells.BorderType.TopBorder].LineStyle = CellBorderType.Thin; //应用边界线 上边界线
  2725. style_colName.Borders[Aspose.Cells.BorderType.BottomBorder].LineStyle = CellBorderType.Thin; //应用边界线 下边界线
  2726. List<Fin_GroupExtraCostExcelColumnSetting> colNameSettingList = new List<Fin_GroupExtraCostExcelColumnSetting>()
  2727. {
  2728. new Fin_GroupExtraCostExcelColumnSetting(){ columnIndex = 1, columnName="类型", columnWidth= 25},
  2729. new Fin_GroupExtraCostExcelColumnSetting(){ columnIndex = 2, columnName="时间", columnWidth= 16},
  2730. new Fin_GroupExtraCostExcelColumnSetting(){ columnIndex = 3, columnName="内容", columnWidth= 35},
  2731. new Fin_GroupExtraCostExcelColumnSetting(){ columnIndex = 4, columnName="单价", columnWidth= 12},
  2732. new Fin_GroupExtraCostExcelColumnSetting(){ columnIndex = 5, columnName="数量", columnWidth= 12},
  2733. new Fin_GroupExtraCostExcelColumnSetting(){ columnIndex = 6, columnName="货币", columnWidth= 12},
  2734. new Fin_GroupExtraCostExcelColumnSetting(){ columnIndex = 7, columnName="费用", columnWidth= 12},
  2735. new Fin_GroupExtraCostExcelColumnSetting(){ columnIndex = 8, columnName="汇率", columnWidth= 12},
  2736. new Fin_GroupExtraCostExcelColumnSetting(){ columnIndex = 9, columnName="人民币", columnWidth= 12},
  2737. new Fin_GroupExtraCostExcelColumnSetting(){ columnIndex = 10, columnName="备注信息", columnWidth= 24}
  2738. };
  2739. foreach (var col in colNameSettingList)
  2740. {
  2741. cells[2, col.columnIndex].PutValue(col.columnName);
  2742. cells[2, col.columnIndex].SetStyle(style_colName);
  2743. cells.SetColumnWidth(col.columnIndex, col.columnWidth);
  2744. }
  2745. cells.SetRowHeight(2, 25);
  2746. #endregion
  2747. #region 数据填充
  2748. Aspose.Cells.Style style_dataCol = workbook.GetNamedStyle("colName");
  2749. style_dataCol.Font.IsBold = false;
  2750. style_dataCol.Name = "dataCol";
  2751. Aspose.Cells.Style style_dataBlue = workbook.CreateStyle();
  2752. style_dataBlue.HorizontalAlignment = TextAlignmentType.Center;//文字居中
  2753. style_dataBlue.VerticalAlignment = TextAlignmentType.Center;
  2754. style_dataBlue.Font.Name = "微软雅黑";//文字字体
  2755. style_dataBlue.Font.Size = 12;//文字大小
  2756. style_dataBlue.IsLocked = false;//单元格解锁
  2757. style_dataBlue.Font.IsBold = false;//粗体
  2758. style_dataBlue.ForegroundColor = Color.FromArgb(189, 215, 238);
  2759. style_dataBlue.Pattern = BackgroundType.Solid;
  2760. style_dataBlue.Font.Color = Color.FromArgb(0, 0, 0);
  2761. style_dataBlue.Borders[Aspose.Cells.BorderType.LeftBorder].LineStyle = CellBorderType.Thin; //应用边界线 左边界线
  2762. style_dataBlue.Borders[Aspose.Cells.BorderType.RightBorder].LineStyle = CellBorderType.Thin; //应用边界线 右边界线
  2763. style_dataBlue.Borders[Aspose.Cells.BorderType.TopBorder].LineStyle = CellBorderType.Thin; //应用边界线 上边界线
  2764. style_dataBlue.Borders[Aspose.Cells.BorderType.BottomBorder].LineStyle = CellBorderType.Thin; //应用边界线 下边界线
  2765. Aspose.Cells.Style style_dataYellow = workbook.CreateStyle();
  2766. style_dataYellow.HorizontalAlignment = TextAlignmentType.Center;//文字居中
  2767. style_dataYellow.VerticalAlignment = TextAlignmentType.Center;
  2768. style_dataYellow.Font.Name = "微软雅黑";//文字字体
  2769. style_dataYellow.Font.Size = 12;//文字大小
  2770. style_dataYellow.IsLocked = false;//单元格解锁
  2771. style_dataYellow.Font.IsBold = false;//粗体
  2772. style_dataYellow.ForegroundColor = Color.FromArgb(255, 242, 204);
  2773. style_dataYellow.Pattern = BackgroundType.Solid;
  2774. style_dataYellow.Font.Color = Color.FromArgb(0, 0, 0);
  2775. style_dataYellow.Borders[Aspose.Cells.BorderType.LeftBorder].LineStyle = CellBorderType.Thin; //应用边界线 左边界线
  2776. style_dataYellow.Borders[Aspose.Cells.BorderType.RightBorder].LineStyle = CellBorderType.Thin; //应用边界线 右边界线
  2777. style_dataYellow.Borders[Aspose.Cells.BorderType.TopBorder].LineStyle = CellBorderType.Thin; //应用边界线 上边界线
  2778. style_dataYellow.Borders[Aspose.Cells.BorderType.BottomBorder].LineStyle = CellBorderType.Thin; //应用边界线 下边界线
  2779. int rowIndex = 4;
  2780. foreach (var d in dataList)
  2781. {
  2782. //内容
  2783. string typeStr = d.PriceDetailTypeStr + d.PriceName;
  2784. cells["B" + rowIndex.ToString()].PutValue(d.PriceTypeStr);
  2785. cells["C" + rowIndex.ToString()].PutValue(d.PriceDtStr);
  2786. cells["D" + rowIndex.ToString()].PutValue(typeStr);
  2787. cells["E" + rowIndex.ToString()].PutValue(d.Price.ToString("#0.00"));
  2788. cells["F" + rowIndex.ToString()].PutValue(d.PriceCount);
  2789. cells["G" + rowIndex.ToString()].PutValue(d.Currency);
  2790. cells["H" + rowIndex.ToString()].PutValue(d.PriceSum.ToString("#0.00"));
  2791. cells["K" + rowIndex.ToString()].PutValue(d.Remark);
  2792. //样式
  2793. cells["B" + rowIndex.ToString()].SetStyle(style_dataCol);
  2794. cells["C" + rowIndex.ToString()].SetStyle(style_dataCol);
  2795. cells["D" + rowIndex.ToString()].SetStyle(style_dataCol);
  2796. cells["E" + rowIndex.ToString()].SetStyle(style_dataBlue);
  2797. cells["F" + rowIndex.ToString()].SetStyle(style_dataBlue);
  2798. cells["G" + rowIndex.ToString()].SetStyle(style_dataBlue);
  2799. cells["H" + rowIndex.ToString()].SetStyle(style_dataBlue);
  2800. cells["I" + rowIndex.ToString()].SetStyle(style_dataBlue);
  2801. cells["J" + rowIndex.ToString()].SetStyle(style_dataBlue);
  2802. cells["K" + rowIndex.ToString()].SetStyle(style_dataYellow);
  2803. //公式
  2804. cells["H" + rowIndex.ToString()].Formula = string.Format(@"E{0}*F{0}", rowIndex);
  2805. cells["J" + rowIndex.ToString()].Formula = string.Format(@"H{0}*I{0}", rowIndex);
  2806. cells.SetRowHeight(rowIndex - 1, 25);
  2807. rowIndex++;
  2808. }
  2809. cells["B" + rowIndex.ToString()].SetStyle(style_dataCol);
  2810. cells["C" + rowIndex.ToString()].SetStyle(style_dataCol);
  2811. cells["D" + rowIndex.ToString()].SetStyle(style_dataCol);
  2812. cells["E" + rowIndex.ToString()].SetStyle(style_dataBlue);
  2813. cells["F" + rowIndex.ToString()].SetStyle(style_dataBlue);
  2814. cells["G" + rowIndex.ToString()].SetStyle(style_dataBlue);
  2815. cells["H" + rowIndex.ToString()].SetStyle(style_dataBlue);
  2816. cells["I" + rowIndex.ToString()].SetStyle(style_dataBlue);
  2817. cells["J" + rowIndex.ToString()].SetStyle(style_dataBlue);
  2818. cells["K" + rowIndex.ToString()].SetStyle(style_dataYellow);
  2819. rowIndex++;
  2820. cells["B" + rowIndex.ToString()].SetStyle(style_dataCol);
  2821. cells["C" + rowIndex.ToString()].SetStyle(style_dataCol);
  2822. cells["D" + rowIndex.ToString()].SetStyle(style_dataCol);
  2823. cells["E" + rowIndex.ToString()].SetStyle(style_dataBlue);
  2824. cells["F" + rowIndex.ToString()].SetStyle(style_dataBlue);
  2825. cells["G" + rowIndex.ToString()].SetStyle(style_dataBlue);
  2826. cells["H" + rowIndex.ToString()].SetStyle(style_dataBlue);
  2827. cells["I" + rowIndex.ToString()].SetStyle(style_dataBlue);
  2828. cells["J" + rowIndex.ToString()].SetStyle(style_dataBlue);
  2829. cells["K" + rowIndex.ToString()].SetStyle(style_dataYellow);
  2830. rowIndex = 3;
  2831. int tempPriceType = 0;
  2832. foreach (var c in dataList)
  2833. {
  2834. if (tempPriceType == c.PriceType)
  2835. {
  2836. continue;
  2837. }
  2838. tempPriceType = c.PriceType;
  2839. int _rowCount = countList.First(s => s.PriceType == tempPriceType).DataCount;
  2840. cells.Merge(rowIndex, 1, _rowCount, 1);
  2841. Aspose.Cells.Range tempRange = cells.CreateRange(rowIndex, 1, _rowCount, 1);
  2842. rowIndex += _rowCount;
  2843. }
  2844. rowIndex = 4 + dataList.Count;
  2845. cells["D" + rowIndex.ToString()].PutValue("合计");
  2846. cells["J" + rowIndex.ToString()].Formula = string.Format(@"SUM(J4,J{0})", rowIndex - 1);
  2847. cells.SetRowHeight(rowIndex - 1, 25);
  2848. rowIndex++;
  2849. cells["D" + rowIndex.ToString()].PutValue("服务费10%开票税金8%");
  2850. cells["J" + rowIndex.ToString()].Formula = string.Format(@"J{0}*1.1*1.08", rowIndex - 1);
  2851. cells.SetRowHeight(rowIndex - 1, 25);
  2852. #endregion
  2853. #region IO
  2854. System.IO.MemoryStream ms = workbook.SaveToStream();//生成数据流
  2855. string fileName = ("GroupExtraCost/超支费用(" + cellValue_Header + ").xlsx");
  2856. byte[] bt = ms.ToArray();
  2857. workbook.Save(AppSettingsHelper.Get("ExcelBasePath") + fileName);
  2858. #endregion
  2859. string rst = AppSettingsHelper.Get("ExcelBaseUrl") + AppSettingsHelper.Get("ExcelFtpPath") + fileName;
  2860. return Ok(JsonView(true, "成功", new { url = rst }));
  2861. }
  2862. #endregion
  2863. }
  2864. }