FinanceMonthReportSmallForm.cs 23 KB

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