FinanceYearReportSmallForm.cs 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. using LYFZ.Software.MainBusiness.DoorCityProcess;
  2. using System;
  3. using System.Collections;
  4. using System.Collections.Generic;
  5. using System.ComponentModel;
  6. using System.Data;
  7. using System.Drawing;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Windows.Forms;
  11. namespace LYFZ.Software.MainBusiness.StatisticalInquiry
  12. {
  13. public partial class FinanceYearReportSmallForm : LYFZ.Software.UI.StatisticalInquiry.FinanceYearReportSmallForm
  14. {
  15. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  16. public FinanceYearReportSmallForm()
  17. {
  18. this.Load += FinanceYearReportSmallForm_Load;
  19. this.Shown += FinanceYearReportSmallForm_Shown;
  20. this.numYear.ValueChanged += numYear_ValueChanged;
  21. this.cmbtreevPaymentMethod.ComboBoxTree_NodeMouseClick += cmbtreevPaymentMethod_ComboBoxTree_NodeMouseClick;
  22. this.cmbtreevQueryItem.ComboBoxTree_NodeMouseClick += cmbtreevQueryItem_ComboBoxTree_NodeMouseClick;
  23. this.cmbtreevSecondOption.ComboBoxTree_NodeMouseClick += cmbtreevSecondOption_ComboBoxTree_NodeMouseClick;
  24. this.cmbtreevStoreName.ComboBoxTree_NodeMouseClick += cmbtreevStoreName_ComboBoxTree_NodeMouseClick;
  25. this.cmbtreevOrderType.ComboBoxTree_NodeMouseClick += cmbtreevOrderType_ComboBoxTree_NodeMouseClick;
  26. this.btnExport.Click += btnExport_Click;
  27. this.btnPrint.Click += btnPrint_Click;
  28. this.btnClose.Click += btnClose_Click;
  29. this.dgvData.MouseDoubleClick += dgvData_MouseDoubleClick;
  30. this.Resize += FinanceYearReportSmallForm_Resize;
  31. }
  32. /// <summary>
  33. /// 是否有财务支出权限
  34. /// </summary>
  35. private bool IsFinancialOutlay = false;
  36. /// <summary>
  37. /// 分店编号
  38. /// </summary>
  39. private string _StrStoreWhere;
  40. /// <summary>
  41. /// 分店编号
  42. /// </summary>
  43. public string StrStoreWhere
  44. {
  45. get
  46. {
  47. this.Invoke(new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl(delegate()
  48. {
  49. _StrStoreWhere = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetGroupQueryWhere(this.cmbtreevStoreName, "分店编号", ConnectWord: "");
  50. }));
  51. return _StrStoreWhere;
  52. }
  53. set { _StrStoreWhere = value; }
  54. }
  55. /// <summary>
  56. /// 窗体加载事件
  57. /// </summary>
  58. /// <param name="sender"></param>
  59. /// <param name="e"></param>
  60. void FinanceYearReportSmallForm_Load(object sender, EventArgs e)
  61. {
  62. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindGroupStoreName(this.cmbtreevStoreName, StrGroupKeyCode: "st0240", StrKeyCode: "st027");
  63. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindFinanceOrderType(this.cmbtreevOrderType);
  64. string StrColumns = "月份, 总收入, 总支出, 总净收, 优惠金额, 订单定金, 订单补款, 后期收入, 其它收入, 会员充值, 服务卡充值, 摄友会收款, 总业绩, 前期业绩, 后期业绩";
  65. this.dgvData.DataColumns(StrColumns);
  66. this.dgvData.FillLastColumn(true);
  67. }
  68. /// <summary>
  69. /// 窗体加载事件
  70. /// </summary>
  71. /// <param name="sender"></param>
  72. /// <param name="e"></param>
  73. void FinanceYearReportSmallForm_Shown(object sender, EventArgs e)
  74. {
  75. //this.cmbtreevSecondOption.Visible = false;
  76. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboxTreeView(this.cmbtreevSecondOption, "全部,收入,支出,押金,退押金,报损");
  77. this.cmbtreevSecondOption.TextFindTag("全部");
  78. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_PaymentMethod(this.cmbtreevPaymentMethod, IsShowAll: true, IsFirstNodeNull: true, IsFirstNodeName: "全部");
  79. this.cmbtreevPaymentMethod.TextFindTag("全部");
  80. this.PublicFunctionRights();
  81. this.numYear.Value = SDateTime.Now.Year;
  82. }
  83. /// <summary>
  84. /// 年变更事件
  85. /// </summary>
  86. /// <param name="sender"></param>
  87. /// <param name="e"></param>
  88. void numYear_ValueChanged(object sender, EventArgs e)
  89. {
  90. this.dgvData.Rows.Clear();
  91. string StrDateTimeStart = this.numYear.Value + "-01-01";
  92. string StrDateTimeEnd = Convert.ToDateTime(StrDateTimeStart).AddYears(1).AddDays(-1).ToString("yyyy-MM-dd HH:mm:ss.fff");
  93. string StrDateYear = this.numYear.Value.ToString().Trim();
  94. string StrItemQueryText = this.cmbtreevQueryItem.Text.Trim();
  95. string StrSecondOption = this.cmbtreevSecondOption.Text.Trim();
  96. string StrPaymentMethod = this.cmbtreevPaymentMethod.Text.Trim();
  97. string StrOrderType = this.cmbtreevOrderType.Text.Trim();
  98. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
  99. {
  100. LYFZ.BLL.GetFinancialReportModel frmodel = orbll.Funt_GetFinanceYearReport(StrItemQueryText: StrItemQueryText, StrSecondOption: StrSecondOption, StrPaymentMethod: StrPaymentMethod, StrDateYear: StrDateYear, IsFinancialOutlay: this.IsFinancialOutlay, IsOrderStatistic: true, StrStoreWhere: this.StrStoreWhere);
  101. LYFZ.BLL.GetFinancialReportModel frmodel2 = orbll.Funt_GetFinanceDayReport(StrItemQueryText: StrItemQueryText, StrSecondOption: StrSecondOption, StrPaymentMethod: StrPaymentMethod, StrOrderType: StrOrderType, StrDateTimeStart: StrDateTimeStart, StrDateTimeEnd: StrDateTimeEnd, IsFinancialOutlay: this.IsFinancialOutlay, IsGetArrearsOrDeposits: false, StrStoreWhere: this.StrStoreWhere);
  102. DataTable dt = frmodel2.dtFinance_Statistic;
  103. DataTable dt2 = frmodel.dtFinance_DataList;
  104. string StrOrderCountStatistic = frmodel.StrFinance_OrderCountStatistic;
  105. this.Invoke(new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl(delegate()
  106. {
  107. this.lblCount.Text = StrOrderCountStatistic;
  108. if (dt != null)
  109. {
  110. for (int i = 0; i < dt.Rows.Count; i++)
  111. {
  112. this.txtTotalIncome.Text = dt.Rows[i]["总收入"].ToString().Trim();
  113. this.txtOperatingIncome.Text = dt.Rows[i]["营业收入"].ToString().Trim();
  114. this.txtNetIncome.Text = dt.Rows[i]["净收入"].ToString().Trim();
  115. this.txtOrderEarly.Text = dt.Rows[i]["订单前期"].ToString().Trim();
  116. this.txtOrderLate.Text = dt.Rows[i]["订单后期"].ToString().Trim();
  117. this.txtTotalOutlay.Text = dt.Rows[i]["支出"].ToString().Trim();
  118. this.txtVoucher.Text = dt.Rows[i]["代金券"].ToString().Trim();
  119. }
  120. }
  121. if (dt2 != null)
  122. {
  123. for (int i = 0; i < dt2.Rows.Count; i++)
  124. {
  125. DataGridViewRow dgvr = new DataGridViewRow();
  126. DataGridViewCell cell = null;
  127. for (int j = 0; j < dt2.Columns.Count; j++)
  128. {
  129. cell = new DataGridViewTextBoxCell();
  130. cell.Value = dt2.Rows[i][j].ToString().Trim();
  131. dgvr.Cells.Add(cell);
  132. }
  133. this.dgvData.Rows.Add(dgvr);
  134. }
  135. }
  136. }));
  137. });
  138. }
  139. /// <summary>
  140. /// 付款方式
  141. /// </summary>
  142. /// <param name="sender"></param>
  143. /// <param name="e"></param>
  144. void cmbtreevPaymentMethod_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
  145. {
  146. this.cmbtreevSecondOption_ComboBoxTree_NodeMouseClick(this, null);
  147. }
  148. /// <summary>
  149. /// 项目查询
  150. /// </summary>
  151. /// <param name="sender"></param>
  152. /// <param name="e"></param>
  153. void cmbtreevQueryItem_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
  154. {
  155. this.cmbtreevSecondOption.Nodes.Clear();
  156. this.cmbtreevSecondOption.Visible = false;
  157. if (this.cmbtreevQueryItem.Text == "全部")
  158. {
  159. this.cmbtreevSecondOption.Visible = true;
  160. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboxTreeView(this.cmbtreevSecondOption, "全部,收入,支出,押金,退押金,报损");
  161. }
  162. else if (this.cmbtreevQueryItem.Text == "订单前期收入")
  163. {
  164. this.cmbtreevSecondOption.Visible = true;
  165. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboxTreeView(this.cmbtreevSecondOption, "全部,预约收款,预约补款,全款");
  166. }
  167. else if (this.cmbtreevQueryItem.Text == "订单后期收入" || this.cmbtreevQueryItem.Text == "散客消费收入")
  168. {
  169. this.cmbtreevSecondOption.Visible = true;
  170. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBACDAJDFDDEACGJ", this.cmbtreevSecondOption, IsFirstNodeNull: true, IsFirstNodeName: "全部");
  171. }
  172. else if (this.cmbtreevQueryItem.Text == "其它收入")
  173. { }
  174. else if (this.cmbtreevQueryItem.Text == "会员充值")
  175. { }
  176. else if (this.cmbtreevQueryItem.Text == "服务卡消费")
  177. { }
  178. else if (this.cmbtreevQueryItem.Text == "摄友会收款")
  179. {
  180. this.cmbtreevSecondOption.Visible = true;
  181. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboxTreeView(this.cmbtreevSecondOption, "全部,摄友会升级,摄友会返还款");
  182. }
  183. else if (this.cmbtreevQueryItem.Text == "礼服租售收入")
  184. {
  185. this.cmbtreevSecondOption.Visible = true;
  186. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboxTreeView(this.cmbtreevSecondOption, "全部,礼服出租,礼服出售,礼服押金,退押金,报损");
  187. }
  188. else if (this.cmbtreevQueryItem.Text == "会员返现")
  189. { }
  190. else if (this.cmbtreevQueryItem.Text == "店面支出")
  191. {
  192. this.cmbtreevSecondOption.Visible = true;
  193. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBACIAFBEDIGJJFE", this.cmbtreevSecondOption, IsFirstNodeNull: true, IsFirstNodeName: "全部");
  194. }
  195. else if (this.cmbtreevQueryItem.Text == "财务支出")
  196. {
  197. this.cmbtreevSecondOption.Visible = true;
  198. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BFAGBGBAEJBACEEHJ", this.cmbtreevSecondOption, IsFirstNodeNull: true, IsFirstNodeName: "全部");
  199. }
  200. //else if (this.cmbtreevQueryItem.Text == "押金")
  201. //{ }
  202. if (this.cmbtreevSecondOption.Visible)
  203. { this.cmbtreevSecondOption.TextFindTag("全部"); }
  204. this.cmbtreevSecondOption_ComboBoxTree_NodeMouseClick(this, null);
  205. }
  206. /// <summary>
  207. /// 第二选项选择事件
  208. /// </summary>
  209. /// <param name="sender"></param>
  210. /// <param name="e"></param>
  211. void cmbtreevSecondOption_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
  212. {
  213. string StrDateTimeStart = this.numYear.Value + "-01-01";
  214. string StrDateTimeEnd = Convert.ToDateTime(StrDateTimeStart).AddYears(1).AddSeconds(-1).ToString("yyyy-MM-dd HH:mm:ss.fff");
  215. string StrItemQueryText = this.cmbtreevQueryItem.Text.Trim();
  216. string StrSecondOption = this.cmbtreevSecondOption.Text.Trim();
  217. string StrPaymentMethod = this.cmbtreevPaymentMethod.Text.Trim();
  218. string StrOrderType = this.cmbtreevOrderType.Text.Trim();
  219. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
  220. {
  221. LYFZ.BLL.GetFinancialReportModel frmodel2 = orbll.Funt_GetFinanceDayReport(StrItemQueryText: StrItemQueryText, StrSecondOption: StrSecondOption, StrPaymentMethod: StrPaymentMethod, StrOrderType: StrOrderType, StrDateTimeStart: StrDateTimeStart, StrDateTimeEnd: StrDateTimeEnd, IsFinancialOutlay: IsFinancialOutlay, IsGetArrearsOrDeposits: false, StrStoreWhere: this.StrStoreWhere);
  222. DataTable dt = frmodel2.dtFinance_Statistic;
  223. this.Invoke(new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl(delegate()
  224. {
  225. if (dt != null)
  226. {
  227. for (int i = 0; i < dt.Rows.Count; i++)
  228. {
  229. this.txtTotalIncome.Text = dt.Rows[i]["总收入"].ToString().Trim();
  230. this.txtOperatingIncome.Text = dt.Rows[i]["营业收入"].ToString().Trim();
  231. this.txtNetIncome.Text = dt.Rows[i]["净收入"].ToString().Trim();
  232. this.txtOrderEarly.Text = dt.Rows[i]["订单前期"].ToString().Trim();
  233. this.txtOrderLate.Text = dt.Rows[i]["订单后期"].ToString().Trim();
  234. this.txtTotalOutlay.Text = dt.Rows[i]["支出"].ToString().Trim();
  235. this.txtVoucher.Text = dt.Rows[i]["代金券"].ToString().Trim();
  236. }
  237. }
  238. }));
  239. });
  240. }
  241. /// <summary>
  242. /// 选择分店
  243. /// </summary>
  244. /// <param name="sender"></param>
  245. /// <param name="e"></param>
  246. void cmbtreevStoreName_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
  247. {
  248. this.PublicFunctionRights();
  249. this.numYear_ValueChanged(this, null);
  250. }
  251. /// <summary>
  252. /// 选择订单类型
  253. /// </summary>
  254. /// <param name="sender"></param>
  255. /// <param name="e"></param>
  256. void cmbtreevOrderType_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
  257. {
  258. this.cmbtreevSecondOption_ComboBoxTree_NodeMouseClick(this, null);
  259. }
  260. /// <summary>
  261. /// 选择分店获取权限
  262. /// </summary>
  263. void PublicFunctionRights()
  264. {
  265. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboxTreeView(this.cmbtreevQueryItem, "全部,订单前期收入,订单后期收入,散客消费收入,其它收入,礼服租售收入,会员充值,服务卡消费,摄友会收款,会员返现,店面支出,财务支出");//,押金
  266. this.cmbtreevQueryItem.TextFindTag("全部");
  267. this.btnExport.Enabled = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetGroupStoreRights(this.cmbtreevStoreName, "YearFinanceCompetence", CustomAttributes.OperatingAuthority.DataExport);
  268. this.btnPrint.Enabled = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetGroupStoreRights(this.cmbtreevStoreName, "YearFinanceCompetence", CustomAttributes.OperatingAuthority.Print);
  269. this.IsFinancialOutlay = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetGroupStoreRights(this.cmbtreevStoreName, "DayFinanceCompetence", CustomAttributes.OperatingAuthority.FinancialExpenses);
  270. if (!this.IsFinancialOutlay)
  271. { this.cmbtreevQueryItem.Nodes.Remove(this.cmbtreevQueryItem.GetNodeItem_TextToTag("财务支出")); }
  272. }
  273. /// <summary>
  274. /// 导出
  275. /// </summary>
  276. /// <param name="sender"></param>
  277. /// <param name="e"></param>
  278. void btnExport_Click(object sender, EventArgs e)
  279. {
  280. this.dgvData.ExportDataTable(StrFileName: "年财务详情");
  281. }
  282. /// <summary>
  283. /// 打印
  284. /// </summary>
  285. /// <param name="sender"></param>
  286. /// <param name="e"></param>
  287. void btnPrint_Click(object sender, EventArgs e)
  288. {
  289. try
  290. {
  291. string StrDateWeek = this.numYear.Value.ToString().Trim() + "年";
  292. object StrText = "总收入:" + this.txtTotalIncome.Text.Trim() + " 营业收入:" + this.txtOperatingIncome.Text.Trim() + " 总支出:" + this.txtTotalOutlay.Text.Trim();
  293. StrText += "\r\n净收入:" + this.txtNetIncome.Text.Trim() + " 前期业绩:" + this.txtOrderEarly.Text.Trim() + " 后期业绩:" + this.txtOrderLate.Text.Trim();
  294. StrText += "\r\n" + this.lblCount.Text.Trim();
  295. Hashtable htData = new Hashtable();
  296. htData["dgvData"] = this.dgvData;
  297. htData["StrText"] = StrText;
  298. htData["StrDateWeek"] = StrDateWeek;
  299. LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PrintFixedFormat(EnumPublic.PrintTypeEnum.财务报表年, htData);
  300. }
  301. catch (Exception ex)
  302. { MessageBoxCustom.Show(ex.Message); }
  303. }
  304. /// <summary>
  305. /// 关闭
  306. /// </summary>
  307. /// <param name="sender"></param>
  308. /// <param name="e"></param>
  309. void btnClose_Click(object sender, EventArgs e)
  310. {
  311. this.Close();
  312. }
  313. /// <summary>
  314. /// 列表双击事件
  315. /// </summary>
  316. /// <param name="sender"></param>
  317. /// <param name="e"></param>
  318. void dgvData_MouseDoubleClick(object sender, MouseEventArgs e)
  319. {
  320. try
  321. {
  322. if (e.Location.Y > this.dgvData.ColumnHeadersHeight)
  323. {
  324. if (this.dgvData.SelectedRows.Count == 0)
  325. { MessageBoxCustom.Show("请选择你要查看的月份!"); return; }
  326. LYFZ.Software.MainBusiness.StatisticalInquiry.FinanceMonthReportSmallForm frm = new FinanceMonthReportSmallForm();
  327. frm.StrDateTime = this.dgvData.CurrentRow.Cells["月份"].Value.ToString();
  328. frm.DataTimeStoreName = this.cmbtreevStoreName.Text.Trim();
  329. frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  330. frm.Location = new Point(LYFZ.EnumPublic.FormLocation_X, LYFZ.EnumPublic.FormLocation_Y);
  331. frm.Size = new Size(LYFZ.EnumPublic.FormSize_Width, LYFZ.EnumPublic.FormSize_Height);
  332. frm.ShowDialog();
  333. }
  334. }
  335. catch (Exception ex) { MessageBoxCustom.Show(ex.Message); }
  336. }
  337. /// <summary>
  338. /// 窗体大小 发生变化
  339. /// </summary>
  340. /// <param name="sender"></param>
  341. /// <param name="e"></param>
  342. void FinanceYearReportSmallForm_Resize(object sender, EventArgs e)
  343. {
  344. int LocationY = 0;
  345. if (this.panelOrderType.Visible)
  346. { LocationY = this.panelOrderType.Location.Y; }
  347. else
  348. { LocationY = this.panelStoreName.Location.Y; }
  349. switch (LocationY)
  350. {
  351. case 0: this.flowLayoutPanel1.Height = 28; break;
  352. case 27: this.flowLayoutPanel1.Height = 55; break;
  353. case 54: this.flowLayoutPanel1.Height = 82; break;
  354. case 81: this.flowLayoutPanel1.Height = 109; break;
  355. }
  356. this.panelEx2.Height = this.flowLayoutPanel1.Height + 25;
  357. }
  358. }
  359. }