123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362 |
- using LYFZ.Software.MainBusiness.DoorCityProcess;
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace LYFZ.Software.MainBusiness.StatisticalInquiry
- {
- public partial class FinanceYearReportSmallForm : LYFZ.Software.UI.StatisticalInquiry.FinanceYearReportSmallForm
- {
- LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
- public FinanceYearReportSmallForm()
- {
- this.Load += FinanceYearReportSmallForm_Load;
- this.Shown += FinanceYearReportSmallForm_Shown;
- this.numYear.ValueChanged += numYear_ValueChanged;
- this.cmbtreevPaymentMethod.ComboBoxTree_NodeMouseClick += cmbtreevPaymentMethod_ComboBoxTree_NodeMouseClick;
- this.cmbtreevQueryItem.ComboBoxTree_NodeMouseClick += cmbtreevQueryItem_ComboBoxTree_NodeMouseClick;
- this.cmbtreevSecondOption.ComboBoxTree_NodeMouseClick += cmbtreevSecondOption_ComboBoxTree_NodeMouseClick;
- this.cmbtreevStoreName.ComboBoxTree_NodeMouseClick += cmbtreevStoreName_ComboBoxTree_NodeMouseClick;
- this.cmbtreevOrderType.ComboBoxTree_NodeMouseClick += cmbtreevOrderType_ComboBoxTree_NodeMouseClick;
- this.btnExport.Click += btnExport_Click;
- this.btnPrint.Click += btnPrint_Click;
- this.btnClose.Click += btnClose_Click;
- this.dgvData.MouseDoubleClick += dgvData_MouseDoubleClick;
- this.Resize += FinanceYearReportSmallForm_Resize;
- }
- /// <summary>
- /// 是否有财务支出权限
- /// </summary>
- private bool IsFinancialOutlay = false;
- /// <summary>
- /// 分店编号
- /// </summary>
- private string _StrStoreWhere;
- /// <summary>
- /// 分店编号
- /// </summary>
- public string StrStoreWhere
- {
- get
- {
- this.Invoke(new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl(delegate()
- {
- _StrStoreWhere = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetGroupQueryWhere(this.cmbtreevStoreName, "分店编号", ConnectWord: "");
- }));
- return _StrStoreWhere;
- }
- set { _StrStoreWhere = value; }
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void FinanceYearReportSmallForm_Load(object sender, EventArgs e)
- {
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindGroupStoreName(this.cmbtreevStoreName, StrGroupKeyCode: "st0240", StrKeyCode: "st027");
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindFinanceOrderType(this.cmbtreevOrderType);
- string StrColumns = "月份, 总收入, 总支出, 总净收, 优惠金额, 订单定金, 订单补款, 后期收入, 其它收入, 会员充值, 服务卡充值, 摄友会收款, 总业绩, 前期业绩, 后期业绩";
- this.dgvData.DataColumns(StrColumns);
- this.dgvData.FillLastColumn(true);
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void FinanceYearReportSmallForm_Shown(object sender, EventArgs e)
- {
- //this.cmbtreevSecondOption.Visible = false;
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboxTreeView(this.cmbtreevSecondOption, "全部,收入,支出,押金,退押金,报损");
- this.cmbtreevSecondOption.TextFindTag("全部");
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_PaymentMethod(this.cmbtreevPaymentMethod, IsShowAll: true, IsFirstNodeNull: true, IsFirstNodeName: "全部");
- this.cmbtreevPaymentMethod.TextFindTag("全部");
- this.PublicFunctionRights();
- this.numYear.Value = SDateTime.Now.Year;
- }
- /// <summary>
- /// 年变更事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void numYear_ValueChanged(object sender, EventArgs e)
- {
- this.dgvData.Rows.Clear();
- string StrDateTimeStart = this.numYear.Value + "-01-01";
- string StrDateTimeEnd = Convert.ToDateTime(StrDateTimeStart).AddYears(1).AddDays(-1).ToString("yyyy-MM-dd HH:mm:ss.fff");
- string StrDateYear = this.numYear.Value.ToString().Trim();
- string StrItemQueryText = this.cmbtreevQueryItem.Text.Trim();
- string StrSecondOption = this.cmbtreevSecondOption.Text.Trim();
- string StrPaymentMethod = this.cmbtreevPaymentMethod.Text.Trim();
- string StrOrderType = this.cmbtreevOrderType.Text.Trim();
- LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
- {
- LYFZ.BLL.GetFinancialReportModel frmodel = orbll.Funt_GetFinanceYearReport(StrItemQueryText: StrItemQueryText, StrSecondOption: StrSecondOption, StrPaymentMethod: StrPaymentMethod, StrDateYear: StrDateYear, IsFinancialOutlay: this.IsFinancialOutlay, IsOrderStatistic: true, StrStoreWhere: this.StrStoreWhere);
- 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);
- DataTable dt = frmodel2.dtFinance_Statistic;
- DataTable dt2 = frmodel.dtFinance_DataList;
- string StrOrderCountStatistic = frmodel.StrFinance_OrderCountStatistic;
- this.Invoke(new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl(delegate()
- {
- this.lblCount.Text = StrOrderCountStatistic;
- if (dt != null)
- {
- for (int i = 0; i < dt.Rows.Count; i++)
- {
- this.txtTotalIncome.Text = dt.Rows[i]["总收入"].ToString().Trim();
- this.txtOperatingIncome.Text = dt.Rows[i]["营业收入"].ToString().Trim();
- this.txtNetIncome.Text = dt.Rows[i]["净收入"].ToString().Trim();
- this.txtOrderEarly.Text = dt.Rows[i]["订单前期"].ToString().Trim();
- this.txtOrderLate.Text = dt.Rows[i]["订单后期"].ToString().Trim();
- this.txtTotalOutlay.Text = dt.Rows[i]["支出"].ToString().Trim();
- this.txtVoucher.Text = dt.Rows[i]["代金券"].ToString().Trim();
- }
- }
- if (dt2 != null)
- {
- for (int i = 0; i < dt2.Rows.Count; i++)
- {
- DataGridViewRow dgvr = new DataGridViewRow();
- DataGridViewCell cell = null;
- for (int j = 0; j < dt2.Columns.Count; j++)
- {
- cell = new DataGridViewTextBoxCell();
- cell.Value = dt2.Rows[i][j].ToString().Trim();
- dgvr.Cells.Add(cell);
- }
- this.dgvData.Rows.Add(dgvr);
- }
- }
- }));
- });
- }
- /// <summary>
- /// 付款方式
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void cmbtreevPaymentMethod_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
- {
- this.cmbtreevSecondOption_ComboBoxTree_NodeMouseClick(this, null);
- }
- /// <summary>
- /// 项目查询
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void cmbtreevQueryItem_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
- {
- this.cmbtreevSecondOption.Nodes.Clear();
- this.cmbtreevSecondOption.Visible = false;
- if (this.cmbtreevQueryItem.Text == "全部")
- {
- this.cmbtreevSecondOption.Visible = true;
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboxTreeView(this.cmbtreevSecondOption, "全部,收入,支出,押金,退押金,报损");
- }
- else if (this.cmbtreevQueryItem.Text == "订单前期收入")
- {
- this.cmbtreevSecondOption.Visible = true;
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboxTreeView(this.cmbtreevSecondOption, "全部,预约收款,预约补款,全款");
- }
- else if (this.cmbtreevQueryItem.Text == "订单后期收入" || this.cmbtreevQueryItem.Text == "散客消费收入")
- {
- this.cmbtreevSecondOption.Visible = true;
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBACDAJDFDDEACGJ", this.cmbtreevSecondOption, IsFirstNodeNull: true, IsFirstNodeName: "全部");
- }
- else if (this.cmbtreevQueryItem.Text == "其它收入")
- { }
- else if (this.cmbtreevQueryItem.Text == "会员充值")
- { }
- else if (this.cmbtreevQueryItem.Text == "服务卡消费")
- { }
- else if (this.cmbtreevQueryItem.Text == "摄友会收款")
- {
- this.cmbtreevSecondOption.Visible = true;
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboxTreeView(this.cmbtreevSecondOption, "全部,摄友会升级,摄友会返还款");
- }
- else if (this.cmbtreevQueryItem.Text == "礼服租售收入")
- {
- this.cmbtreevSecondOption.Visible = true;
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboxTreeView(this.cmbtreevSecondOption, "全部,礼服出租,礼服出售,礼服押金,退押金,报损");
- }
- else if (this.cmbtreevQueryItem.Text == "会员返现")
- { }
- else if (this.cmbtreevQueryItem.Text == "店面支出")
- {
- this.cmbtreevSecondOption.Visible = true;
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBACIAFBEDIGJJFE", this.cmbtreevSecondOption, IsFirstNodeNull: true, IsFirstNodeName: "全部");
- }
- else if (this.cmbtreevQueryItem.Text == "财务支出")
- {
- this.cmbtreevSecondOption.Visible = true;
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BFAGBGBAEJBACEEHJ", this.cmbtreevSecondOption, IsFirstNodeNull: true, IsFirstNodeName: "全部");
- }
- //else if (this.cmbtreevQueryItem.Text == "押金")
- //{ }
- if (this.cmbtreevSecondOption.Visible)
- { this.cmbtreevSecondOption.TextFindTag("全部"); }
- this.cmbtreevSecondOption_ComboBoxTree_NodeMouseClick(this, null);
- }
- /// <summary>
- /// 第二选项选择事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void cmbtreevSecondOption_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
- {
- string StrDateTimeStart = this.numYear.Value + "-01-01";
- string StrDateTimeEnd = Convert.ToDateTime(StrDateTimeStart).AddYears(1).AddSeconds(-1).ToString("yyyy-MM-dd HH:mm:ss.fff");
- string StrItemQueryText = this.cmbtreevQueryItem.Text.Trim();
- string StrSecondOption = this.cmbtreevSecondOption.Text.Trim();
- string StrPaymentMethod = this.cmbtreevPaymentMethod.Text.Trim();
- string StrOrderType = this.cmbtreevOrderType.Text.Trim();
- LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
- {
- 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);
- DataTable dt = frmodel2.dtFinance_Statistic;
- this.Invoke(new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl(delegate()
- {
- if (dt != null)
- {
- for (int i = 0; i < dt.Rows.Count; i++)
- {
- this.txtTotalIncome.Text = dt.Rows[i]["总收入"].ToString().Trim();
- this.txtOperatingIncome.Text = dt.Rows[i]["营业收入"].ToString().Trim();
- this.txtNetIncome.Text = dt.Rows[i]["净收入"].ToString().Trim();
- this.txtOrderEarly.Text = dt.Rows[i]["订单前期"].ToString().Trim();
- this.txtOrderLate.Text = dt.Rows[i]["订单后期"].ToString().Trim();
- this.txtTotalOutlay.Text = dt.Rows[i]["支出"].ToString().Trim();
- this.txtVoucher.Text = dt.Rows[i]["代金券"].ToString().Trim();
- }
- }
- }));
- });
- }
- /// <summary>
- /// 选择分店
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void cmbtreevStoreName_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
- {
- this.PublicFunctionRights();
- this.numYear_ValueChanged(this, null);
- }
- /// <summary>
- /// 选择订单类型
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void cmbtreevOrderType_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
- {
- this.cmbtreevSecondOption_ComboBoxTree_NodeMouseClick(this, null);
- }
- /// <summary>
- /// 选择分店获取权限
- /// </summary>
- void PublicFunctionRights()
- {
- LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboxTreeView(this.cmbtreevQueryItem, "全部,订单前期收入,订单后期收入,散客消费收入,其它收入,礼服租售收入,会员充值,服务卡消费,摄友会收款,会员返现,店面支出,财务支出");//,押金
- this.cmbtreevQueryItem.TextFindTag("全部");
- this.btnExport.Enabled = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetGroupStoreRights(this.cmbtreevStoreName, "YearFinanceCompetence", CustomAttributes.OperatingAuthority.DataExport);
- this.btnPrint.Enabled = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetGroupStoreRights(this.cmbtreevStoreName, "YearFinanceCompetence", CustomAttributes.OperatingAuthority.Print);
- this.IsFinancialOutlay = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetGroupStoreRights(this.cmbtreevStoreName, "DayFinanceCompetence", CustomAttributes.OperatingAuthority.FinancialExpenses);
- if (!this.IsFinancialOutlay)
- { this.cmbtreevQueryItem.Nodes.Remove(this.cmbtreevQueryItem.GetNodeItem_TextToTag("财务支出")); }
- }
- /// <summary>
- /// 导出
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnExport_Click(object sender, EventArgs e)
- {
- this.dgvData.ExportDataTable(StrFileName: "年财务详情");
- }
- /// <summary>
- /// 打印
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnPrint_Click(object sender, EventArgs e)
- {
- try
- {
- string StrDateWeek = this.numYear.Value.ToString().Trim() + "年";
- object StrText = "总收入:" + this.txtTotalIncome.Text.Trim() + " 营业收入:" + this.txtOperatingIncome.Text.Trim() + " 总支出:" + this.txtTotalOutlay.Text.Trim();
- StrText += "\r\n净收入:" + this.txtNetIncome.Text.Trim() + " 前期业绩:" + this.txtOrderEarly.Text.Trim() + " 后期业绩:" + this.txtOrderLate.Text.Trim();
- StrText += "\r\n" + this.lblCount.Text.Trim();
- Hashtable htData = new Hashtable();
- htData["dgvData"] = this.dgvData;
- htData["StrText"] = StrText;
- htData["StrDateWeek"] = StrDateWeek;
- LYFZ.Software.MainBusiness.ReportPrint.ReportFixedFormat.PrintFixedFormat(EnumPublic.PrintTypeEnum.财务报表年, htData);
- }
- catch (Exception ex)
- { MessageBoxCustom.Show(ex.Message); }
- }
- /// <summary>
- /// 关闭
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void btnClose_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- /// <summary>
- /// 列表双击事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void dgvData_MouseDoubleClick(object sender, MouseEventArgs e)
- {
- try
- {
- if (e.Location.Y > this.dgvData.ColumnHeadersHeight)
- {
- if (this.dgvData.SelectedRows.Count == 0)
- { MessageBoxCustom.Show("请选择你要查看的月份!"); return; }
- LYFZ.Software.MainBusiness.StatisticalInquiry.FinanceMonthReportSmallForm frm = new FinanceMonthReportSmallForm();
- frm.StrDateTime = this.dgvData.CurrentRow.Cells["月份"].Value.ToString();
- frm.DataTimeStoreName = this.cmbtreevStoreName.Text.Trim();
- frm.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
- frm.Location = new Point(LYFZ.EnumPublic.FormLocation_X, LYFZ.EnumPublic.FormLocation_Y);
- frm.Size = new Size(LYFZ.EnumPublic.FormSize_Width, LYFZ.EnumPublic.FormSize_Height);
- frm.ShowDialog();
- }
- }
- catch (Exception ex) { MessageBoxCustom.Show(ex.Message); }
- }
- /// <summary>
- /// 窗体大小 发生变化
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- void FinanceYearReportSmallForm_Resize(object sender, EventArgs e)
- {
- int LocationY = 0;
- if (this.panelOrderType.Visible)
- { LocationY = this.panelOrderType.Location.Y; }
- else
- { LocationY = this.panelStoreName.Location.Y; }
- switch (LocationY)
- {
- case 0: this.flowLayoutPanel1.Height = 28; break;
- case 27: this.flowLayoutPanel1.Height = 55; break;
- case 54: this.flowLayoutPanel1.Height = 82; break;
- case 81: this.flowLayoutPanel1.Height = 109; break;
- }
- this.panelEx2.Height = this.flowLayoutPanel1.Height + 25;
- }
- }
- }
|