Fin_DailyFeePaymentView.cs 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629
  1. using Dm;
  2. using Google.Protobuf.WellKnownTypes;
  3. using Npgsql.Replication.PgOutput;
  4. using OASystem.Domain.Entities.Financial;
  5. using OASystem.Domain.ViewModels.System;
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Globalization;
  9. using System.Linq;
  10. using System.Text;
  11. using System.Threading.Tasks;
  12. using System.Xml.Linq;
  13. namespace OASystem.Domain.ViewModels.Financial
  14. {
  15. /// <summary>
  16. /// 日付申请 View
  17. /// </summary>
  18. public class Fin_DailyFeePaymentView : Fin_DailyFeePayment
  19. { }
  20. public class Fin_DailyFeePaymentPageCount
  21. {
  22. /// <summary>
  23. /// 总条数
  24. /// </summary>
  25. public int Count { get; set; }
  26. }
  27. /// <summary>
  28. /// 日付申请 分页查询View
  29. /// </summary>
  30. public class Fin_DailyFeePaymentPageListView
  31. {
  32. /// <summary>
  33. /// 是否选中
  34. /// </summary>
  35. public bool IsChecked { get; set; }
  36. /// <summary>
  37. /// 行号
  38. /// </summary>
  39. public int RowNumber { get; set; }
  40. /// <summary>
  41. /// Id
  42. /// </summary>
  43. public int Id { get; set; }
  44. /// <summary>
  45. /// 公司Id
  46. /// </summary>
  47. public int CompanyId { get; set; }
  48. /// <summary>
  49. /// 公司名称
  50. /// </summary>
  51. public string? CompanyName { get; set; }
  52. /// <summary>
  53. /// 费用描述
  54. /// </summary>
  55. public string? Instructions { get; set; }
  56. /// <summary>
  57. /// 费用总计
  58. /// </summary>
  59. public decimal? SumPrice { get; set; }
  60. /// <summary>
  61. /// 申请人Id
  62. /// </summary>
  63. public int CreateUserId { get; set; }
  64. /// <summary>
  65. /// 申请人姓名
  66. /// </summary>
  67. public string? CreateUser { get; set; }
  68. /// <summary>
  69. /// 申请时间
  70. /// </summary>
  71. public DateTime CreateTime { get; set; }
  72. /// <summary>
  73. /// 财务审核
  74. /// </summary>
  75. public int FAudit { get; set; }
  76. /// <summary>
  77. /// 财务 审核状态
  78. /// </summary>
  79. public string? FAuditDesc
  80. {
  81. get
  82. {
  83. string str = "未审核";
  84. if (FAudit == 0) str = "未审核";
  85. else if (FAudit == 1)
  86. {
  87. str = "已通过";
  88. FAuditName = "朱成梅";
  89. }
  90. else if (FAudit == 2)
  91. {
  92. str = "未通过";
  93. FAuditName = "朱成梅";
  94. }
  95. return str;
  96. }
  97. }
  98. /// <summary>
  99. /// 财务审核人姓名
  100. /// </summary>
  101. public string? FAuditName { get; set; } = "无";
  102. /// <summary>
  103. /// 总经理审核
  104. /// </summary>
  105. public int MAudit { get; set; }
  106. /// <summary>
  107. /// 总经理 审核状态
  108. /// </summary>
  109. public string? MAuditDesc
  110. {
  111. get
  112. {
  113. string str = "未审核";
  114. if (MAudit == 0) str = "未审核";
  115. else if (MAudit == 1) { str = "已通过"; MAuditName = "张海麟"; }
  116. else if (MAudit == 2) { str = "未通过"; MAuditName = "张海麟"; }
  117. return str;
  118. }
  119. }
  120. /// <summary>
  121. /// 总经理审核姓名
  122. /// </summary>
  123. public string? MAuditName { get; set; } = "无";
  124. /// <summary>
  125. /// 费用类型
  126. /// </summary>
  127. public int PriceTypeId { get; set; }
  128. /// <summary>
  129. /// 支付标识 0,1
  130. /// </summary>
  131. public int IsPay { get; set; }
  132. }
  133. /// <summary>
  134. /// 日服申请 分页
  135. /// </summary>
  136. public class Fin_DailyFeePaymentPage
  137. {
  138. /// <summary>
  139. /// 总条数
  140. /// </summary>
  141. public int? Rows { get; set; }
  142. public List<Fin_DailyFeePaymentPageListView> Data { get; set; }
  143. }
  144. /// <summary>
  145. /// 日付申请费用明细
  146. /// </summary>
  147. public class Fin_DailyFeePaymentContentInfolView
  148. {
  149. public int Id { get; set; }
  150. /// <summary>
  151. /// 费用名称
  152. /// </summary>
  153. public string PriceName { get; set; }
  154. /// <summary>
  155. /// 数量单价
  156. /// </summary>
  157. public decimal Quantity { get; set; }
  158. /// <summary>
  159. /// 费用单价
  160. /// </summary>
  161. public decimal Price { get; set; }
  162. /// <summary>
  163. /// 当前总计
  164. /// </summary>
  165. public decimal ItemTotal { get; set; }
  166. /// <summary>
  167. /// 备注
  168. /// </summary>
  169. public string Remark { get; set; }
  170. /// <summary>
  171. /// 备注描述
  172. /// </summary>
  173. public string RemaksDescription { get; set; }
  174. /// <summary>
  175. /// Excel备注描述
  176. /// </summary>
  177. public string ExcelRemaksDescription { get; set; }
  178. }
  179. public class Fin_DailyFeePaymentInfolView
  180. {
  181. public int Id { get; set; }
  182. public int CompanyId { get; set; }
  183. public int TransferTypeId { get; set; }
  184. public int PriceTypeId { get; set; }
  185. public string Instructions { get; set; }
  186. public decimal SumPrice { get; set; }
  187. public int CreateUserId { get; set; }
  188. /// <summary>
  189. /// 财务审核
  190. /// </summary>
  191. public int FAudit { get; set; }
  192. public string FAuditDesc
  193. {
  194. get
  195. {
  196. string str = "未审核";
  197. if (FAudit == 0) str = "未审核";
  198. else if (FAudit == 1) str = "已通过";
  199. else if (FAudit == 2) str = "未通过";
  200. return str;
  201. }
  202. }
  203. /// <summary>
  204. /// 总经理审核
  205. /// </summary>
  206. public int MAudit { get; set; }
  207. public string MAuditDesc
  208. {
  209. get
  210. {
  211. string str = "未审核";
  212. if (MAudit == 0) str = "未审核";
  213. else if (MAudit == 1) str = "已通过";
  214. else if (MAudit == 2) str = "未通过";
  215. return str;
  216. }
  217. }
  218. public DateTime CreateTime { get; set; }
  219. public List<Fin_DailyFeePaymentContentInfolView> FeeContents { get; set; }
  220. }
  221. /// <summary>
  222. /// android 详情
  223. /// </summary>
  224. public class Fin_DailyFeePaymentInfoAndroidlView
  225. {
  226. public int Id { get; set; }
  227. public int CompanyId { get; set; }
  228. public int TransferTypeId { get; set; }
  229. public int PriceTypeId { get; set; }
  230. public string Instructions { get; set; }
  231. public decimal SumPrice { get; set; }
  232. public int CreateUserId { get; set; }
  233. public List<Fin_DailyFeePaymentContentInfolView> FeeContents { get; set; }
  234. }
  235. /// <summary>
  236. /// 费用类型
  237. /// </summary>
  238. public class Fin_DailyFeePaymentPagePriceTypeView
  239. {
  240. /// <summary>
  241. /// 类型Id
  242. /// </summary>
  243. public int Id { get; set; }
  244. /// <summary>
  245. /// 名称
  246. /// </summary>
  247. public string Name { get; set; }
  248. }
  249. /// <summary>
  250. /// 费用子类型
  251. /// </summary>
  252. public class Fin_DailyFeePaymentPagePriceSubTypeView
  253. {
  254. /// <summary>
  255. /// 费用类型Id
  256. /// </summary>
  257. public int STid { get; set; }
  258. /// <summary>
  259. /// 子类型Id
  260. /// </summary>
  261. public int Id { get; set; }
  262. /// <summary>
  263. /// 子类型名称
  264. /// </summary>
  265. public string Name { get; set; }
  266. }
  267. /// <summary>
  268. /// 费用类型数据源
  269. /// </summary>
  270. public class Fin_DailyFeePaymentPagePriceTypeDataView
  271. {
  272. /// <summary>
  273. /// 费用类型
  274. /// </summary>
  275. public List<Fin_DailyFeePaymentPagePriceTypeView>? FeeTypeData { get; set; }
  276. /// <summary>
  277. /// 费用子类型
  278. /// </summary>
  279. public List<Fin_DailyFeePaymentPagePriceSubTypeView>? FeeSubTypeData { get; set; }
  280. /// <summary>
  281. /// 用户名称
  282. /// </summary>
  283. public List<UserNameView>? UserNameData { get; set; }
  284. /// <summary>
  285. /// 费用标识类型
  286. /// </summary>
  287. public List<Fin_DailyFeePaymentPagePriceTypeView>? FeeMarkTypeData { get; set; }
  288. /// <summary>
  289. /// 费用子类型
  290. /// </summary>
  291. public List<Fin_DailyFeePaymentPagePriceSubTypeView>? FeeMarkSubTypeData { get; set; }
  292. /// <summary>
  293. /// 公司名称
  294. /// </summary>
  295. public List<CompanyNameView>? CompanyNameData { get; set; }
  296. }
  297. /// <summary>
  298. /// 类型数据源
  299. /// </summary>
  300. public class DailyFeePaymentDataSourceView : Fin_DailyFeePaymentPagePriceTypeView
  301. {
  302. public List<Fin_DailyFeePaymentPagePriceSubTypeView> SubDatas { get; set; }
  303. }
  304. public class tree_Fin_DailyFeePaymentPageListView : Fin_DailyFeePaymentPageListView
  305. {
  306. public List<Fin_DailyFeePaymentContentInfolView> childList { get; set; }
  307. public string priceTypeStr { get; set; }
  308. public int transferTypeId { get; set; }
  309. public string transferTypeIdStr { get; set; }
  310. /// <summary>
  311. /// 公转:62,私转:63 --2024年4月9日 16:49:46 0,1
  312. /// </summary>
  313. public int transferParentId { get; set; }
  314. public string transferParentIdStr { get; set; }
  315. }
  316. public class tree_Fin_DailyFeePaymentResult : tree_Fin_DailyFeePaymentPageListView
  317. {
  318. public decimal gz { get; set; } = 0M;
  319. public decimal sz { get; set; } = 0M;
  320. public List<tree_Fin_DailyFeePaymentPageListView> dataList { get; set; }
  321. }
  322. /// <summary>
  323. /// 团组相关费用
  324. /// </summary>
  325. public class tree_Group_DailyFeePaymentResult
  326. {
  327. public decimal gz { get; set; } = 0M;
  328. public decimal sz { get; set; } = 0M;
  329. public List<tree_Group_DailyFeePaymentPageListView> dataList { get; set; }
  330. }
  331. /// <summary>
  332. /// 团组相关费用 List
  333. /// </summary>
  334. public class tree_Group_DailyFeePaymentPageListView
  335. {
  336. public string Id { get; set; }
  337. public string GroupName { get; set; }
  338. /// <summary>
  339. /// 费用所属公司Id
  340. /// </summary>
  341. public int CompanyId { get; set; }
  342. /// <summary>
  343. /// 费用所属公司
  344. /// </summary>
  345. public string ConpanyName { get; set; }
  346. /// <summary>
  347. /// 团组总计金额
  348. /// </summary>
  349. public decimal CNYTotalAmount { get; set; }
  350. public List<Group_DailyFeePaymentContentInfolView> ChildList { get; set; }
  351. }
  352. public class CompanyInfo
  353. {
  354. public int Id { get; set; }
  355. public string ConpanyName { get; set; }
  356. }
  357. public class Group_DailyFeePaymentContentInfolView
  358. {
  359. /// <summary>
  360. /// 是否选中
  361. /// </summary>
  362. public bool IsChecked { get; set; }
  363. public int Id { get; set; }
  364. /// <summary>
  365. /// 酒店费用子类 Id
  366. /// </summary>
  367. public int HotelSubId { get; set; } = -1;
  368. /// <summary>
  369. /// 支付方式
  370. /// </summary>
  371. public string PayType { get; set; }
  372. /// <summary>
  373. /// 转账标识
  374. /// </summary>
  375. public string TransferMark { get; set; }
  376. /// <summary>
  377. /// 序号
  378. /// </summary>
  379. public int RowNumber { get; set; }
  380. /// <summary>
  381. /// 申请人
  382. /// </summary>
  383. public string Applicant { get; set; }
  384. /// <summary>
  385. /// 申请时间
  386. /// </summary>
  387. public string ApplicantDt { get; set; }
  388. /// <summary>
  389. /// 收款方
  390. /// </summary>
  391. public string Payee { get; set; }
  392. /// <summary>
  393. /// 费用名称
  394. /// </summary>
  395. public string PriceName { get; set; }
  396. /// <summary>
  397. /// 费用所属模块
  398. /// </summary>
  399. public string ModuleName { get; set; }
  400. /// <summary>
  401. /// 付款币种
  402. /// </summary>
  403. public string PayCurrCode { get; set; }
  404. /// <summary>
  405. /// 付款金额
  406. /// </summary>
  407. public decimal PaymentAmount { get; set; }
  408. /// <summary>
  409. /// 付款汇率
  410. /// </summary>
  411. public decimal PayRate { get; set; }
  412. /// <summary>
  413. /// 小计人民币金额
  414. /// </summary>
  415. public decimal CNYSubTotalAmount { get; set; }
  416. /// <summary>
  417. /// 费用描述
  418. /// </summary>
  419. public string RemaksDescription { get; set; }
  420. /// <summary>
  421. /// 审核状态
  422. /// 0 未审核 1已通过 2未通过 3 自动审核
  423. /// </summary>
  424. public int AuditStatus { get; set; }
  425. }
  426. public class PaymentRequestCheckedView
  427. {
  428. public List<int> GroupIds { get; set; }
  429. public List<int> DailyPaymentIds { get; set; }
  430. public List<int> HotelSubIds { get; set; }
  431. }
  432. #region 日付报表
  433. [SqlSugar.SugarTable("Fin_DailyFeePayment")]
  434. public class DailyFeePaymentRangeView
  435. {
  436. //public string ViewStr
  437. //{
  438. // get
  439. // {
  440. // return $"{RowIndex}、【{CompanyName}】【{TransferType}】【{FeeType}】【{Instructions}】【{SumPrice.ToString("#0.00")}】【申请人:{Applicant} 申请时间:{ApplicantDt.ToString("yyyy-MM-dd HH:mm:ss")}】";
  441. // }
  442. //}
  443. public string ViewStr
  444. {
  445. get
  446. {
  447. return $"【{CompanyName}】【{TransferType}】【{FeeType}】【{Instructions}】【{SumPrice.ToString("#0.00")}】【申请人:{Applicant} 申请时间:{ApplicantDt.ToString("yyyy-MM-dd HH:mm:ss")}】";
  448. }
  449. }
  450. [SugarColumn(IsIgnore = true)]//需要加上
  451. public int RowIndex { get; set; } //行号 序号
  452. [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
  453. public int Id { get; set; }
  454. public string Instructions { get; set; }
  455. public int PriceTypeId { get; set; }
  456. public string FeeType { get; set; }
  457. public int TransferTypeId { get; set; }
  458. public string TransferType { get; set; }
  459. public decimal SumPrice { get; set; }
  460. public DateTime FAuditDate { get; set; }
  461. public DateTime MAuditDate { get; set; }
  462. public int CompanyId { get; set; }
  463. public string CompanyName { get; set; }
  464. public int ApplicantId { get; set; }
  465. public string Applicant { get; set; }
  466. public DateTime ApplicantDt { get; set; }
  467. [Navigate(NavigateType.OneToMany, nameof(DailyFeePaymentContentView.DFPId))]//BookA表中的studenId
  468. public List<DailyFeePaymentContentView> Contents { get; set; }
  469. //public string ContentStr { get; set; }
  470. }
  471. [SqlSugar.SugarTable("Fin_DailyFeePaymentContent")]
  472. public class DailyFeePaymentContentView
  473. {
  474. //[SugarColumn(IsIgnore = true)]//需要加上
  475. //public int RowIndex { get; set; } //行号 序号
  476. [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
  477. public int Id { get; set; }
  478. public int DFPId { get; set; }
  479. public string PriceName { get; set; }
  480. public int Quantity { get; set; }
  481. public decimal Price { get; set; }
  482. public decimal ItemTotal { get; set; }
  483. public string Remark { get; set; }
  484. //public int IsDel { get; set; }
  485. /// <summary>
  486. /// 示例:费用名称:[2024.07.11招商信用卡还款] 单价:[20000.00] 数量:[1.00] 小计:[20000.00] 备注:[]
  487. /// </summary>
  488. //public string ViewStr
  489. //{
  490. // get
  491. // {
  492. // return $"费用名称:[{PriceName}] 单价:[{Price.ToString("#0.00")}] 数量:[{Quantity.ToString("#0.00")}] 小计:[{ItemTotal.ToString("#0.00")}] 备注:[{Remark}]";
  493. // }
  494. //}
  495. //public string ViewSubStr { get; set; }
  496. }
  497. public class ExcelView : DailyFeePaymentRangeView
  498. {
  499. public string ContentStr { get; set; }
  500. }
  501. #endregion
  502. #region 统计模块
  503. #region YOY
  504. public class StatisticsYOYView
  505. {
  506. public int Id { get; set; }
  507. public DateTime VisitDate { get; set; }
  508. public int Year { get; set; }
  509. public int Month { get; set; }
  510. /// <summary>
  511. /// 销售额金额
  512. /// </summary>
  513. public decimal SaleAmount { get; set; }
  514. /// <summary>
  515. /// 机票金额
  516. /// </summary>
  517. public decimal AirTicketAmount { get; set; }
  518. /// <summary>
  519. /// op金额
  520. /// </summary>
  521. public decimal OPAmount { get; set; }
  522. /// <summary>
  523. /// 其他费用金额
  524. /// </summary>
  525. public decimal OtherCostAmount { get; set; }
  526. /// <summary>
  527. /// 签证金额
  528. /// </summary>
  529. public decimal VisaAmount { get; set; }
  530. /// <summary>
  531. /// 邀请公务金额
  532. /// </summary>
  533. public decimal OAAmount { get; set; }
  534. /// <summary>
  535. /// 保险金额
  536. /// </summary>
  537. public decimal InsureAmount { get; set; }
  538. /// <summary>
  539. /// 酒店金额
  540. /// </summary>
  541. public decimal HotelAmount { get; set; }
  542. /// <summary>
  543. /// 超支金额
  544. /// </summary>
  545. public decimal ExcessAmount { get; set; }
  546. /// <summary>
  547. /// 收款退还金额
  548. /// </summary>
  549. public decimal SKTHAmount { get; set; }
  550. /// <summary>
  551. /// 成本金额
  552. /// </summary>
  553. public decimal CostAmount
  554. {
  555. get
  556. {
  557. return AirTicketAmount + HotelAmount + InsureAmount + OAAmount + VisaAmount + OtherCostAmount + OPAmount + ExcessAmount;
  558. }
  559. }
  560. /// <summary>
  561. /// 毛利润
  562. /// </summary>
  563. public decimal GrossProfitAmount
  564. {
  565. get
  566. {
  567. return SaleAmount - SKTHAmount - CostAmount;
  568. }
  569. }
  570. }
  571. public class YOYReturnView
  572. {
  573. public int Year { get; set; }
  574. public int Month { get; set; }
  575. public decimal ThisAmount { get; set; }
  576. public decimal LastAmount { get; set; }
  577. public string Yoy { get; set; }
  578. public List<int> ThisIds { get; set; }
  579. public List<int> LastIds { get; set; }
  580. /// <summary>
  581. /// 构造函数
  582. /// </summary>
  583. /// <param name="year"></param>
  584. /// <param name="month"></param>
  585. /// <param name="thisAmount"></param>
  586. /// <param name="lastAmount"></param>
  587. /// <param name="thisIds"></param>
  588. /// <param name="lastIds"></param>
  589. public YOYReturnView(int year, int month, decimal thisAmount, decimal lastAmount, List<int> thisIds, List<int> lastIds)
  590. {
  591. this.Year = year;
  592. this.Month = month;
  593. this.ThisAmount = thisAmount;
  594. this.LastAmount = lastAmount;
  595. string _yoy = "0.00%";
  596. if (lastAmount != 0)
  597. {
  598. _yoy = ((thisAmount - lastAmount) / lastAmount).ToString("#0.00") + "%";
  599. }
  600. this.Yoy = _yoy;
  601. this.ThisIds = thisIds;
  602. this.LastIds = lastIds;
  603. }
  604. }
  605. #endregion
  606. #region 国交数据统计 - 机票
  607. public class StatisticsAirTicketView
  608. {
  609. public int DIId { get; set; }
  610. public DmDateTime FlightsDate { get; set; }
  611. public int Year { get; set; }
  612. public int Month { get; set; }
  613. public int CType { get; set; }
  614. public string CTypeName { get; set; }
  615. public string FlightsCity { get; set; }
  616. public string FlightsCityName { get; set; }
  617. public int ClientNum { get; set; }
  618. public string GroupName { get; set; }
  619. public string Platform { get; set; }
  620. }
  621. public class AirTicketReturnView
  622. {
  623. public int Year { get; set; }
  624. public int Month { get; set; }
  625. /// <summary>
  626. /// 票数
  627. /// </summary>
  628. public int Quantity { get; set; }
  629. public List<AitTicketInfo> AitTicketInfos { get; set; }
  630. public List<int> LinkGroupIds { get; set; }
  631. /// <summary>
  632. /// 构造函数
  633. /// </summary>
  634. /// <param name="year"></param>
  635. /// <param name="month"></param>
  636. /// <param name="quantity"></param>
  637. /// <param name="linkGroupIds"></param>
  638. public AirTicketReturnView(int year, int month, int quantity, List<AitTicketInfo> aitTicketInfos, List<int> linkGroupIds)
  639. {
  640. this.Year = year;
  641. this.Month = month;
  642. this.Quantity = quantity;
  643. this.AitTicketInfos = aitTicketInfos;
  644. this.LinkGroupIds = linkGroupIds;
  645. }
  646. /// <summary>
  647. /// 构造函数
  648. /// </summary>
  649. /// <param name="year"></param>
  650. /// <param name="month"></param>
  651. /// <param name="quantity"></param>
  652. /// <param name="linkGroupIds"></param>
  653. public AirTicketReturnView(int year, int month, int quantity, List<int> linkGroupIds)
  654. {
  655. this.Year = year;
  656. this.Month = month;
  657. this.Quantity = quantity;
  658. this.LinkGroupIds = linkGroupIds;
  659. }
  660. }
  661. public class AirTicketCityReturnView : AirTicketReturnView
  662. {
  663. public List<AirTicketCityInfo> CityData { get; set; }
  664. /// <summary>
  665. /// 构造函数
  666. /// </summary>
  667. /// <param name="year"></param>
  668. /// <param name="month"></param>
  669. /// <param name="quantity"></param>
  670. /// <param name="linkGroupIds"></param>
  671. public AirTicketCityReturnView(int year, int month, int quantity, List<AirTicketCityInfo> cityData, List<int> linkGroupIds)
  672. : base(year, month, quantity, linkGroupIds)
  673. {
  674. this.Year = year;
  675. this.Month = month;
  676. this.Quantity = quantity;
  677. this.CityData = cityData;
  678. this.LinkGroupIds = linkGroupIds;
  679. }
  680. }
  681. public class AitTicketInfo
  682. {
  683. public int Id { get; set; }
  684. public string GroupName { get; set; }
  685. public int Quantity { get; set; }
  686. public AitTicketInfo(int id, string groupName, int quantity)
  687. {
  688. this.Id = id;
  689. this.GroupName = groupName;
  690. this.Quantity = quantity;
  691. }
  692. }
  693. public class AirTicketCityInfo
  694. {
  695. public string City { get; set; }
  696. public int Quantity { get; set; }
  697. public AirTicketCityInfo(string city, int quantity = 0)
  698. {
  699. City = city;
  700. Quantity = quantity;
  701. }
  702. }
  703. #endregion
  704. #region 酒店
  705. public class StatisticsHotelView
  706. {
  707. public int DIId { get; set; }
  708. public string City { get; set; }
  709. public string CityStr
  710. {
  711. get
  712. {
  713. return City.Replace(" ", "").ToUpper();
  714. }
  715. }
  716. public string HotelName { get; set; }
  717. public string BookinSite { get; set; }
  718. public string CheckInDate { get; set; }
  719. //public int Year { get; set; }
  720. //public int Month { get; set; }
  721. public string CheckOutDate { get; set; }
  722. public int SingleRoomCount { get; set; }
  723. public int DoubleRoomCount { get; set; }
  724. public int SuiteRoomCount { get; set; }
  725. public int OtherRoomCount { get; set; }
  726. public int RoomNights
  727. {
  728. get
  729. {
  730. int nights = 0;
  731. if (!string.IsNullOrEmpty(CheckInDate) && !string.IsNullOrEmpty(CheckOutDate))
  732. {
  733. DateTime checkin, checkout;
  734. bool checkInBool = DateTime.TryParse(CheckInDate, out checkin);
  735. bool checkOutBool = DateTime.TryParse(CheckOutDate, out checkout);
  736. if (checkInBool && checkOutBool)
  737. {
  738. nights = (checkout - checkin).Days * RoomTotal;
  739. }
  740. }
  741. return nights;
  742. }
  743. }
  744. public int RoomTotal
  745. {
  746. get
  747. {
  748. return SingleRoomCount + DoubleRoomCount + SuiteRoomCount + OtherRoomCount;
  749. }
  750. }
  751. public StatisticsHotelView() { }
  752. public StatisticsHotelView(int diid, string city, string hotelName, string bookingSite, string checkIn, string checkOut, int singleRoom, int doubleRoomCount, int suiteRoomCount, int otherRoomCount)
  753. {
  754. DIId = diid;
  755. City = city;
  756. BookinSite = bookingSite;
  757. CheckInDate = checkIn;
  758. CheckOutDate = checkOut;
  759. SingleRoomCount = singleRoom;
  760. DoubleRoomCount = doubleRoomCount;
  761. SuiteRoomCount = suiteRoomCount;
  762. OtherRoomCount = otherRoomCount;
  763. }
  764. }
  765. public class HotelReturnView
  766. {
  767. }
  768. #endregion
  769. #region 商邀邀请
  770. public class StatisticsInvitation_HW
  771. {
  772. public int DIId { get; set; }
  773. public string GroupName { get; set; }
  774. public string Country { get; set; }
  775. public string City { get; set; }
  776. public string Client { get; set; }
  777. }
  778. public class StatisticsInvitation
  779. {
  780. public int DIId { get; set; }
  781. public string Country { get; set; }
  782. }
  783. #endregion
  784. #region 团组相关
  785. public class StatisticsGroupInfoEntity
  786. {
  787. public int Id { get; set; }
  788. public DateTime VisitDate { get; set; }
  789. public int Month { get; set; }
  790. public string MonthName { get { return VisitDate.ToString("MMM", CultureInfo.GetCultureInfo("zh-CN")); } }
  791. public int Quarter
  792. {
  793. get
  794. {
  795. int quarter = 0;
  796. if (Month < 1 || Month > 12) return quarter;
  797. if (Month >= 1 && Month <= 3) quarter = 1;
  798. else if (Month >= 4 && Month <= 6) quarter = 2;
  799. else if (Month >= 7 && Month <= 9) quarter = 3;
  800. else if (Month >= 10 && Month <= 12) quarter = 4;
  801. return quarter;
  802. }
  803. }
  804. public string QuarterName
  805. {
  806. get
  807. {
  808. string quarterName = "-";
  809. if (Month < 1 || Month > 12) return quarterName;
  810. if (Month >= 1 && Month <= 3) quarterName = "第一季度";
  811. else if (Month >= 4 && Month <= 6) quarterName = "第二季度";
  812. else if (Month >= 7 && Month <= 9) quarterName = "第三季度";
  813. else if (Month >= 10 && Month <= 12) quarterName = "第四季度";
  814. return quarterName;
  815. }
  816. }
  817. public int VisitPNumber { get; set; }
  818. }
  819. #endregion
  820. #region OP
  821. public class StatisticsOP
  822. {
  823. /*
  824. * OP统计图(实际成本同比年/月)
  825. *分块:如车费/导游费/导游交通/接送机费/司机工资/翻译费
  826. *用于判断实际成本是否有增长【真实使用的时候估计是2025年和2024年对比,2023年的数据格式和数据量有问题】
  827. *
  828. * 车费:91 车费 982 车超时费
  829. * 导游费:92 导游费 985 导游交通 1059 导游超时费用
  830. * 司机费:979 司机工资
  831. * 小费:980 司机小费 95 导游小费
  832. * 接送机费:96 接送机费
  833. * 餐费:93 客户午餐费用 981 司机餐补 983 导游餐补 988 客户早餐费用 989 客户晚餐费用
  834. * 1074 早餐超支费用 1075 午餐超支费用 1076 晚餐超支费用
  835. * 住补费:992 住补费用 984 导游房补
  836. * 景点费:94 导游景点费 990 景点门票费 1085 景点门票超支费用
  837. * 翻译费:994 翻译费 1073 翻译超时费
  838. * 饮料/零食/水果费:991 饮料/零食/水果
  839. * 其他费:97 其他费用 1071 其他额外费用
  840. */
  841. //车费
  842. private static int[] _carFeeIds = new int[] {
  843. 91, //车费
  844. 982, //车超时费
  845. };
  846. //导游费
  847. private static int[] _guideFeeIds = new int[] {
  848. 92, //导游费
  849. 985, //导游交通
  850. 1059, //导游超时费用
  851. };
  852. //司机费
  853. private static int[] _driverFeeIds = new int[]{
  854. 979, //司机工资
  855. };
  856. //小费
  857. private static int[] _tipsFeeIds = new int[] {
  858. 980, //司机小费
  859. 95, //导游小费
  860. };
  861. //接送机费
  862. private static int[] _airportTransferFeeIds = new int[] {
  863. 96, //接送机费
  864. };
  865. //餐费
  866. private static int[] _mealFeeIds = new[] {
  867. 93, //客户午餐费用
  868. 981, //司机餐补
  869. 983, //导游餐补
  870. 988, //客户早餐费用
  871. 989, //客户晚餐费用
  872. 1074,//早餐超支费用
  873. 1075,//午餐超支费用
  874. 1076,//晚餐超支费用
  875. };
  876. //住补费
  877. private static int[] _sububoFeeIds = new[] {
  878. 992, //住补费用
  879. 984, //导游房补
  880. };
  881. //景点费
  882. private static int[] _scenicSpotFeeIds = new[] {
  883. 94, //导游景点费
  884. 990, //景点门票费
  885. 1085,//景点门票超支费用
  886. };
  887. //翻译费
  888. private static int[] _translationFeeIds = new[] {
  889. 994, //翻译费
  890. 1073, //翻译超时费
  891. };
  892. //饮料/零食/水果费
  893. private static int[] _DSFFeeIds = new int[] {
  894. 991, //饮料/零食/水果
  895. };
  896. //其他费
  897. private static int[] _otherFeeIds = new int[] {
  898. 97, //其他费用
  899. 1071,//其他额外费用
  900. };
  901. public int Id { get; set; }
  902. public int DiId { get; set; }
  903. public DateTime PaymentTime { get; set; }
  904. public int Year { get; set; }
  905. public int Quarter { get; set; }
  906. public int Month { get; set; }
  907. public string Area { get; set; }
  908. public string Country { get; set; }
  909. public string City { get; set; }
  910. public int ParentFeeId {
  911. get
  912. {
  913. return int.TryParse(GetFeeParentInfo(FeeSubType, 1), out int id) ? id : 0;
  914. }
  915. }
  916. public string ParentFeeName
  917. {
  918. get
  919. {
  920. return GetFeeParentInfo(FeeSubType, 2);
  921. }
  922. }
  923. public string ParentFeeRemark { get; set; }
  924. public int FeeType { get; set; }
  925. public string FeeTypeName { get; set; }
  926. public int FeeSubType { get; set; }
  927. public string FeeSubTypeName { get; set; }
  928. public decimal Price { get; set; }
  929. /// <summary>
  930. ///
  931. /// </summary>
  932. /// <param name="subFee"></param>
  933. /// <param name="type">1 id 2 name 3 备注 </param>
  934. /// <returns></returns>
  935. private string GetFeeParentInfo(int subFee,int type)
  936. {
  937. int id = -1;
  938. string name =string.Empty;
  939. string remark = string.Empty;
  940. // 车费:91 车费 982 车超时费
  941. if (_carFeeIds.Contains(subFee))
  942. {
  943. id = 1;
  944. name = "车费";
  945. remark = "费用组成:车费、车超时费";
  946. }
  947. // 导游费:92 导游费 985 导游交通 1059 导游超时费用
  948. if (_guideFeeIds.Contains(subFee))
  949. {
  950. id = 2;
  951. remark = "费用组成:导游费、导游交通、导游超时费用";
  952. name = "导游费";
  953. }
  954. // 司机费:979 司机工资
  955. if (_driverFeeIds.Contains(subFee))
  956. {
  957. id = 3;
  958. remark = "费用组成:司机工资";
  959. name = "司机费";
  960. }
  961. // 小费:980 司机小费 95 导游小费
  962. if (_tipsFeeIds.Contains(subFee))
  963. {
  964. id = 4;
  965. remark = "费用组成:司机小费、导游小费";
  966. name = "小费";
  967. }
  968. // 接送机费:96 接送机费
  969. if (_airportTransferFeeIds.Contains(subFee))
  970. {
  971. id = 5;
  972. remark = "费用组成:接送机费";
  973. name = "接送机费";
  974. }
  975. // 餐费:93 客户午餐费用 981 司机餐补 983 导游餐补 988 客户早餐费用 989 客户晚餐费用
  976. // 1074 早餐超支费用 1075 午餐超支费用 1076 晚餐超支费用
  977. if (_mealFeeIds.Contains(subFee))
  978. {
  979. id = 6;
  980. remark = "费用组成:客户早餐费用、客户午餐费用、客户晚餐费用、司机餐补、导游餐补、早餐超支费用、午餐超支费用、晚餐超支费用";
  981. name = "餐费";
  982. }
  983. // 住补费:992 住补费用 984 导游房补
  984. if (_sububoFeeIds.Contains(subFee))
  985. {
  986. id = 7;
  987. remark = "费用组成:住补费用、导游房补";
  988. name = "住补费";
  989. }
  990. // 景点费:94 导游景点费 990 景点门票费 1085 景点门票超支费用
  991. if (_scenicSpotFeeIds.Contains(subFee))
  992. {
  993. id = 8;
  994. remark = "费用组成:导游景点费、景点门票费、景点门票超支费用";
  995. name = "景点费";
  996. }
  997. // 翻译费:994 翻译费 1073 翻译超时费
  998. if (_translationFeeIds.Contains(subFee))
  999. {
  1000. id = 9;
  1001. remark = "费用组成:翻译费、翻译超时费";
  1002. name = "翻译费";
  1003. }
  1004. // 饮料/ 零食 / 水果费:991 饮料 / 零食 / 水果
  1005. if (_DSFFeeIds.Contains(subFee))
  1006. {
  1007. id = 10;
  1008. remark = "费用组成:饮料/零食/水果费";
  1009. name = "饮料/零食/水果费";
  1010. }
  1011. // 其他费用:97 其他费用 1071 其他额外费用
  1012. if (_otherFeeIds.Contains(subFee))
  1013. {
  1014. id = 11;
  1015. remark = "费用组成:其他费用、其他额外费用";
  1016. name = "其他费用";
  1017. }
  1018. string returnStr = string.Empty;
  1019. if (type == 1) returnStr = id.ToString();
  1020. else if (type == 2) returnStr = name;
  1021. else if (type == 3) returnStr = remark;
  1022. return returnStr;
  1023. }
  1024. /// <summary>
  1025. ///
  1026. /// </summary>
  1027. public OPParentFeeInfo[] _OPParentFeeInfo = new OPParentFeeInfo[] {
  1028. new OPParentFeeInfo(1,"车费","费用组成:车费、车超时费"),
  1029. new OPParentFeeInfo(2,"导游费","费用组成:导游费、导游交通、导游超时费用"),
  1030. new OPParentFeeInfo(3,"司机费","费用组成:司机工资"),
  1031. new OPParentFeeInfo(4,"小费","费用组成:司机小费、导游小费"),
  1032. new OPParentFeeInfo(5,"接送机费","费用组成:客户早餐费用、客户午餐费用、客户晚餐费用、司机餐补、导游餐补、早餐超支费用、午餐超支费用、晚餐超支费用"),
  1033. new OPParentFeeInfo(6,"餐费","费用组成:车费、车超时费"),
  1034. new OPParentFeeInfo(7,"住补费","费用组成:住补费用、导游房补"),
  1035. new OPParentFeeInfo(8,"景点费","费用组成:导游景点费、景点门票费、景点门票超支费用"),
  1036. new OPParentFeeInfo(9,"翻译费","费用组成:翻译费、翻译超时费"),
  1037. new OPParentFeeInfo(10,"饮料/零食/水果费","费用组成:饮料/零食/水果费"),
  1038. new OPParentFeeInfo(11,"其他费用","费用组成:其他费用、其他额外费用"),
  1039. };
  1040. }
  1041. public class OPParentFeeInfo
  1042. {
  1043. public int Id { get; set; }
  1044. public string Name { get; set; }
  1045. public string Remark { get; set; }
  1046. public OPParentFeeInfo() { }
  1047. public OPParentFeeInfo(int id,string name ,string remark)
  1048. {
  1049. this.Id = id;
  1050. this.Name = name;
  1051. this.Remark = remark;
  1052. }
  1053. }
  1054. public class StatisticsOPYOY
  1055. {
  1056. public int FeeId { get; set; }
  1057. public string FeeName { get; set; }
  1058. /// <summary>
  1059. /// 本期
  1060. /// </summary>
  1061. public decimal CurrPeriodFee { get; set; }
  1062. /// <summary>
  1063. /// 同期
  1064. /// </summary>
  1065. public decimal SamePeriodFee { get; set; }
  1066. public decimal Yoy { get; set; }
  1067. public int CurrPeriodGroupTotal { get; set; }
  1068. public int SamePeriodGroupTotal { get; set; }
  1069. public StatisticsOPSubFeeYOY[] SubFeeData { get; set; }
  1070. public StatisticsOPYOY() { }
  1071. /// <summary>
  1072. /// 构造函数
  1073. /// </summary>
  1074. /// <param name="year"></param>
  1075. /// <param name="month"></param>
  1076. /// <param name="thisAmount"></param>
  1077. /// <param name="lastAmount"></param>
  1078. /// <param name="thisIds"></param>
  1079. /// <param name="lastIds"></param>
  1080. public StatisticsOPYOY(int feeId, string feeName, decimal currPeriodFee, decimal samePeriodFee,
  1081. int currPeriodGroupTotal ,int samePeriodGroupTotal, StatisticsOPSubFeeYOY[] subFeeData)
  1082. {
  1083. this.FeeId = feeId;
  1084. this.FeeName = feeName;
  1085. this.CurrPeriodFee = currPeriodFee;
  1086. this.SamePeriodFee = samePeriodFee;
  1087. decimal _yoy = 0.00M;
  1088. if (samePeriodFee != 0.00M)
  1089. {
  1090. _yoy = (currPeriodFee - samePeriodFee) / samePeriodFee;
  1091. }
  1092. this.Yoy = decimal.Parse(_yoy.ToString("0.##"));
  1093. this.CurrPeriodGroupTotal = currPeriodGroupTotal;
  1094. this.SamePeriodGroupTotal = samePeriodGroupTotal;
  1095. this.SubFeeData = subFeeData;
  1096. }
  1097. }
  1098. public class StatisticsOPSubFeeYOY : StatisticsOPYOY
  1099. {
  1100. public StatisticsOPCityYOY[] CityData { get; set; }
  1101. public StatisticsOPSubFeeYOY() { }
  1102. /// <summary>
  1103. /// 构造函数
  1104. /// </summary>
  1105. /// <param name="year"></param>
  1106. /// <param name="month"></param>
  1107. /// <param name="thisAmount"></param>
  1108. /// <param name="lastAmount"></param>
  1109. /// <param name="thisIds"></param>
  1110. /// <param name="lastIds"></param>
  1111. public StatisticsOPSubFeeYOY(int feeId, string feeName, decimal currPeriodFee, decimal samePeriodFee,
  1112. int currPeriodGroupTotal, int samePeriodGroupTotal, StatisticsOPCityYOY[] cityData)
  1113. {
  1114. this.FeeId = feeId;
  1115. this.FeeName = feeName;
  1116. this.CurrPeriodFee = currPeriodFee;
  1117. this.SamePeriodFee = samePeriodFee;
  1118. decimal _yoy = 0.00M;
  1119. if (samePeriodFee != 0.00M)
  1120. {
  1121. _yoy = (currPeriodFee - samePeriodFee) / samePeriodFee;
  1122. }
  1123. this.Yoy = decimal.Parse(_yoy.ToString("0.##"));
  1124. this.CurrPeriodGroupTotal = currPeriodGroupTotal;
  1125. this.SamePeriodGroupTotal = samePeriodGroupTotal;
  1126. this.CityData = cityData;
  1127. }
  1128. }
  1129. public class StatisticsOPCityYOY
  1130. {
  1131. public string CityName { get; set; }
  1132. public int CurrPeriodGroupTotal { get; set; }
  1133. public int SamePeriodGroupTotal { get; set; }
  1134. /// <summary>
  1135. /// 本期
  1136. /// </summary>
  1137. public decimal CurrPeriodFee { get; set; }
  1138. /// <summary>
  1139. /// 同期
  1140. /// </summary>
  1141. public decimal SamePeriodFee { get; set; }
  1142. public decimal Yoy { get; set; }
  1143. public StatisticsOPCityYOY() { }
  1144. public StatisticsOPCityYOY(string cityName, decimal currPeriodFee, decimal samePeriodFee,
  1145. int currPeriodGroupTotal,int samePeriodGroupTotal)
  1146. {
  1147. this.CityName = cityName;
  1148. this.CurrPeriodGroupTotal = currPeriodGroupTotal;
  1149. this.SamePeriodGroupTotal = samePeriodGroupTotal;
  1150. this.CurrPeriodFee = currPeriodFee;
  1151. this.SamePeriodFee = samePeriodFee;
  1152. string _yoy = "0.00";
  1153. if (samePeriodFee != 0)
  1154. {
  1155. _yoy = ((currPeriodFee - samePeriodFee) / samePeriodFee).ToString("0.##");
  1156. }
  1157. this.Yoy = decimal.TryParse(_yoy, out decimal yoy1) ? yoy1 : 0.00M;
  1158. }
  1159. }
  1160. public class StatisticsOPMonthYOY
  1161. {
  1162. public int MonthId { get; set; }
  1163. public string MonthName { get; set; }
  1164. public StatisticsOPYOY[] FeeDatas { get; set; }
  1165. public StatisticsOPMonthYOY() { }
  1166. public StatisticsOPMonthYOY(int monthId, string monthName, StatisticsOPYOY[] feeDatas)
  1167. {
  1168. MonthId = monthId;
  1169. MonthName = monthName;
  1170. FeeDatas = feeDatas;
  1171. }
  1172. }
  1173. #endregion
  1174. #region 团组预算/实际成本
  1175. public class StatisticsBRCostBasicData
  1176. {
  1177. /// <summary>
  1178. /// 预算币种
  1179. /// </summary>
  1180. public string Budget_CurrencyCode { get; set; }
  1181. /// <summary>
  1182. /// 预算币种汇率
  1183. /// </summary>
  1184. public decimal Budget_Rate { get; set; }
  1185. /// <summary>
  1186. /// 预算签证成本
  1187. /// </summary>
  1188. public decimal Budget_VisaAmount { get; set; }
  1189. /// <summary>
  1190. /// 实际签证成本
  1191. /// </summary>
  1192. public decimal Reality_VisaAmount { get; set; }
  1193. /// <summary>
  1194. /// 实际签证成本描述
  1195. /// </summary>
  1196. public string Reality_VisaAmountDesc { get; set; }
  1197. /// <summary>
  1198. /// 预算机票成本
  1199. /// </summary>
  1200. public decimal Budget_AirTicketAmount { get; set; }
  1201. /// <summary>
  1202. /// 实际机票
  1203. /// </summary>
  1204. public decimal Reality_AirTicketAmount { get; set; }
  1205. /// <summary>
  1206. /// 实际机票描述
  1207. /// </summary>
  1208. public string Reality_AirTicketAmountDesc { get; set; }
  1209. /// <summary>
  1210. /// 预算酒店成本
  1211. /// </summary>
  1212. public decimal Budget_HotelAmount { get; set; }
  1213. /// <summary>
  1214. /// 实际酒店成本
  1215. /// </summary>
  1216. public decimal Reality_HotelAmount { get; set; }
  1217. /// <summary>
  1218. /// 实际酒店成本描述
  1219. /// </summary>
  1220. public string Reality_HotelAmountDesc { get; set; }
  1221. /// <summary>
  1222. /// 预算 OP
  1223. /// </summary>
  1224. public decimal Budget_OPAmount { get; set; }
  1225. /// <summary>
  1226. /// 实际 OP
  1227. /// </summary>
  1228. public decimal Reality_OPAmount { get; set; }
  1229. /// <summary>
  1230. /// 实际 OP成本描述
  1231. /// </summary>
  1232. public string Reality_OPAmountDesc { get; set; }
  1233. /// <summary>
  1234. /// 预算 商邀
  1235. /// </summary>
  1236. public decimal Budget_OAAmount { get; set; }
  1237. /// <summary>
  1238. /// 实际 商邀
  1239. /// </summary>
  1240. public decimal Reality_OAAmount { get; set; }
  1241. /// <summary>
  1242. /// 实际 商邀成本描述
  1243. /// </summary>
  1244. public string Reality_OAAmountDesc { get; set; }
  1245. /// <summary>
  1246. /// 预算其他成本
  1247. /// </summary>
  1248. public decimal Budget_OtherAmount { get; set; }
  1249. /// <summary>
  1250. /// 实际其他成本 - 保险
  1251. /// </summary>
  1252. public decimal Reality_InsureAmount { get; set; }
  1253. /// <summary>
  1254. /// 实际其他成本 - 其他款项
  1255. /// </summary>
  1256. public decimal Reality_OtherCostAmount { get; set; }
  1257. /// <summary>
  1258. /// 实际其他成本 - 其他款项、保险描述
  1259. /// </summary>
  1260. public string Reality_OtherCostAmountDesc { get; set; }
  1261. }
  1262. public class StatisticsBRCostView : StatisticsBRCostBasicData
  1263. {
  1264. public int RowNumber { get; set; }
  1265. public int Id { get; set; }
  1266. public string GroupName { get; set; }
  1267. public string ClientUnit { get; set; }
  1268. public DateTime VisitDate { get; set; }
  1269. public int VisitDays { get; set; }
  1270. public int VisitPNumber { get; set; }
  1271. public decimal BudgetAmount
  1272. {
  1273. get
  1274. {
  1275. return Budget_VisaAmount + Budget_AirTicketAmount + Budget_HotelAmount + Budget_OPAmount + Budget_OAAmount + Budget_OtherAmount;
  1276. }
  1277. }
  1278. public decimal RealityAmount
  1279. {
  1280. get
  1281. {
  1282. return Reality_VisaAmount + Reality_AirTicketAmount + Reality_HotelAmount + Reality_OPAmount + Reality_OAAmount + Reality_InsureAmount + Reality_OtherCostAmount;
  1283. }
  1284. }
  1285. public decimal ExcessAmount
  1286. {
  1287. get
  1288. {
  1289. return RealityAmount - BudgetAmount;
  1290. }
  1291. }
  1292. public string ExcessPercentage
  1293. {
  1294. get
  1295. {
  1296. if (BudgetAmount == 0) return $"0%";
  1297. //if (ExcessAmount<=0) return $"0%";
  1298. var percentage = (ExcessAmount / BudgetAmount) * 100;
  1299. return $"{percentage.ToString("0.00")}%";
  1300. }
  1301. }
  1302. public GroupTypeInfo[] Details
  1303. {
  1304. get
  1305. {
  1306. var rateStr = $"汇率:{Budget_Rate.ToString("#0.0000")};" ;
  1307. var currencyCode = Budget_CurrencyCode;
  1308. decimal original_budget_airTicketAmount = 0.00M,
  1309. original_budget_HotelAmount = 0.00M,
  1310. original_budget_VisaAmount = 0.00M,
  1311. original_budget_OPAmount = 0.00M,
  1312. original_budget_OAAmount = 0.00M,
  1313. original_budget_OtherAmount = 0.00M;
  1314. if (Budget_Rate != 0) {
  1315. original_budget_airTicketAmount = Budget_AirTicketAmount / Budget_Rate;
  1316. original_budget_HotelAmount = Budget_HotelAmount / Budget_Rate;
  1317. original_budget_VisaAmount = Budget_VisaAmount / Budget_Rate;
  1318. original_budget_OPAmount = Budget_OPAmount / Budget_Rate;
  1319. original_budget_OAAmount = Budget_OAAmount / Budget_Rate;
  1320. original_budget_OtherAmount = Budget_OtherAmount / Budget_Rate;
  1321. }
  1322. var budget_AirTicketAmountStr = Budget_AirTicketAmount == 0 ? "-" :
  1323. $"{Budget_AirTicketAmount.ToString("#0.00")} CNY(实际币种金额:{original_budget_airTicketAmount.ToString("#0.00")} {currencyCode} {rateStr})";
  1324. var budget_HotelAmountStr = Budget_HotelAmount == 0 ? "-" :
  1325. $"{Budget_HotelAmount.ToString("#0.00")} CNY(实际币种金额:{original_budget_HotelAmount.ToString("#0.00")} {currencyCode} {rateStr})";
  1326. var budget_VisaAmountStr = Budget_VisaAmount == 0 ? "-" :
  1327. $"{Budget_VisaAmount.ToString("#0.00")} CNY(实际币种金额:{original_budget_VisaAmount.ToString("#0.00")} {currencyCode} {rateStr})";
  1328. var budget_OPAmountStr = Budget_OPAmount == 0 ? "-" :
  1329. $"{Budget_OPAmount.ToString("#0.00")} CNY(实际币种金额:{original_budget_OPAmount.ToString("#0.00")} {currencyCode} {rateStr})";
  1330. var budget_OAAmountStr = Budget_OAAmount == 0 ? "-" :
  1331. $"{Budget_OAAmount.ToString("#0.00")} CNY(实际币种金额:{original_budget_OAAmount.ToString("#0.00")} {currencyCode} {rateStr})";
  1332. var budget_OtherAmountStr = Budget_OtherAmount == 0 ? "-" :
  1333. $"{Budget_OtherAmount.ToString("#0.00")}CNY(实际币种金额:{original_budget_OtherAmount.ToString("#0.00")} {currencyCode} {rateStr})";
  1334. var reality_AirTicketAmountStr = Reality_AirTicketAmount == 0 ? "-" : $"{Reality_AirTicketAmount.ToString("#0.00")} CNY({Reality_AirTicketAmountDesc})";
  1335. var reality_HotelAmountStr = Reality_HotelAmount == 0 ? "-" : $"{Reality_HotelAmount.ToString("#0.00")} CNY({Reality_HotelAmountDesc})";
  1336. var reality_VisaAmountStr = Reality_VisaAmount == 0 ? "-" : $"{Reality_VisaAmount.ToString("#0.00")} CNY({Reality_VisaAmountDesc})";
  1337. var reality_OPAmountStr = Reality_OPAmount == 0 ? "-" : $"{Reality_OPAmount.ToString("#0.00")} CNY({Reality_OPAmountDesc})";
  1338. var reality_OAAmountStr = Reality_OAAmount == 0 ? "-" : $"{Reality_OAAmount.ToString("#0.00")} CNY({Reality_OAAmountDesc})";
  1339. var reality_otherAmount = (Reality_InsureAmount + Reality_OtherCostAmount);
  1340. var reality_OtherAmountStr = reality_otherAmount == 0 ? "-" : $"{reality_otherAmount.ToString("#0.00")} CNY({Reality_OtherCostAmountDesc})";
  1341. return new GroupTypeInfo[] {
  1342. new GroupTypeInfo(1,"机票",budget_AirTicketAmountStr,reality_AirTicketAmountStr),
  1343. new GroupTypeInfo(2,"酒店",budget_HotelAmountStr,reality_HotelAmountStr),
  1344. new GroupTypeInfo(3,"签证",budget_VisaAmountStr,reality_VisaAmountStr),
  1345. new GroupTypeInfo(4,"OP",budget_OPAmountStr,reality_OPAmountStr),
  1346. new GroupTypeInfo(5,"商邀",budget_OAAmountStr,reality_OAAmountStr),
  1347. new GroupTypeInfo(6,"其他",budget_OtherAmountStr,reality_OtherAmountStr)
  1348. };
  1349. }
  1350. }
  1351. }
  1352. public class GroupTypeInfo
  1353. {
  1354. public int No { get; set; }
  1355. public string Module { get; set; }
  1356. public string BudgetAmountDesc { get; set; }
  1357. public string RealityAmountDesc { get; set; }
  1358. public GroupTypeInfo(int no, string module, string budgetAmount, string realityAmount)
  1359. {
  1360. No = no;
  1361. Module = module;
  1362. BudgetAmountDesc = budgetAmount;
  1363. RealityAmountDesc = realityAmount;
  1364. }
  1365. }
  1366. public class StatisticsBRCostBriefView
  1367. {
  1368. public int RowNumber { get; set; }
  1369. public int Id { get; set; }
  1370. public string GroupName { get; set; }
  1371. public string ClientUnit { get; set; }
  1372. public DateTime VisitDate { get; set; }
  1373. public int VisitDays { get; set; }
  1374. public int VisitPNumber { get; set; }
  1375. public decimal BudgetAmount { get; set; }
  1376. public decimal RealityAmount { get; set; }
  1377. public decimal ExcessAmount { get; set; }
  1378. public string ExcessPercentage { get; set; }
  1379. public GroupTypeInfo[] Details { get; set; }
  1380. }
  1381. #endregion
  1382. #region 团组数据统计-当前时间团组所在城市
  1383. public class StatisticsNowCityOfGroupView
  1384. {
  1385. public string CurrDate { get; set; }
  1386. public string GroupName { get; set; }
  1387. public string FlightNo { get; set; }
  1388. public string DepartAirportCode { get; set; }
  1389. public string DepartCountryName { get; set; }
  1390. public string DepartCityName { get; set; }
  1391. public string ArriveAirportCode { get; set; }
  1392. public string ArriveCountryName { get; set; }
  1393. public string ArriveCityName { get; set; }
  1394. }
  1395. #endregion
  1396. #endregion
  1397. }