Fin_DailyFeePaymentView.cs 53 KB

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