OutlayReportSetSmallForm.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.MainBusiness.FinancialManagement.SetSmallForm
  10. {
  11. public partial class OutlayReportSetSmallForm : LYFZ.Software.UI.FinancialManagement.SetSmallForm.OutlayReportSetSmallForm
  12. {
  13. LYFZ.BLL.BLL_ErpOtherIncomeAndExpenses oiebll = new BLL.BLL_ErpOtherIncomeAndExpenses();
  14. private delegate void UpdateControl();
  15. public OutlayReportSetSmallForm()
  16. {
  17. this.Shown += OutlayReportSetSmallForm_Shown;
  18. this.btnAuditFinance.Click += btnAuditFinance_Click;
  19. this.btnAuditManager.Click += btnAuditManager_Click;
  20. this.btnAuditCEO.Click += btnAuditCEO_Click;
  21. this.dtYearMonth.ClickChengedValue += dtYearMonth_ClickChengedValue;
  22. this.radAll.Click += radAll_Click;
  23. this.radLessThan.Click += radLessThan_Click;
  24. this.radGreaterThan.Click += radGreaterThan_Click;
  25. }
  26. public enum OutlayReportLoadType
  27. {
  28. 店面支出,
  29. 财务支出
  30. }
  31. /// <summary>
  32. /// 加载类型
  33. /// </summary>
  34. public OutlayReportLoadType EnumOutlayReportLoadType;
  35. /// <summary>
  36. /// 窗体加载事件
  37. /// </summary>
  38. /// <param name="sender"></param>
  39. /// <param name="e"></param>
  40. void OutlayReportSetSmallForm_Shown(object sender, EventArgs e)
  41. {
  42. try
  43. {
  44. string StrColumnsName = "ID,项目名称,金额,日期,收银,取款人,备注,财务审核,经理审核,老总审核";
  45. this.dgvData.DataColumns(StrColumnsName, "ID");
  46. this.dtYearMonth.StrDateValue = LYFZ.Command.Command_Validate.DateTimeToString(SDateTime.Now, "yyyy-MM");
  47. this.PublicFunctionRows();
  48. }
  49. catch (Exception ex)
  50. { MessageBoxCustom.Show(ex.Message); }
  51. }
  52. /// <summary>
  53. /// 财务审核
  54. /// </summary>
  55. /// <param name="sender"></param>
  56. /// <param name="e"></param>
  57. void btnAuditFinance_Click(object sender, EventArgs e)
  58. {
  59. if (this.dgvData.SelectedRows.Count == 0)
  60. { MessageBoxCustom.Show("请选中你要审核的数据!"); return; }
  61. if (MessageBoxCustom.Show("此单审核是否通过?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
  62. {
  63. LYFZ.Model.Model_ErpOtherIncomeAndExpenses model = oiebll.GetModel(Convert.ToInt32(this.dgvData.CurrentRow.Cells["ID"].Value));
  64. model.Oiae_FinancialAuditState = "已审核";
  65. model.Oiae_FinancialAuditPeople = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  66. if (oiebll.Update(model))
  67. {
  68. MessageBoxCustom.Show("审核成功!");
  69. this.PublicFunctionRows();
  70. }
  71. }
  72. }
  73. /// <summary>
  74. /// 经理审核
  75. /// </summary>
  76. /// <param name="sender"></param>
  77. /// <param name="e"></param>
  78. void btnAuditManager_Click(object sender, EventArgs e)
  79. {
  80. if (this.dgvData.SelectedRows.Count == 0)
  81. { MessageBoxCustom.Show("请选中你要审核的数据!"); return; }
  82. if (MessageBoxCustom.Show("此单审核是否通过?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
  83. {
  84. LYFZ.Model.Model_ErpOtherIncomeAndExpenses model = oiebll.GetModel(Convert.ToInt32(this.dgvData.CurrentRow.Cells["ID"].Value));
  85. model.Oiae_ManagerAuditState = "已审核";
  86. model.Oiae_ManagerAuditPeople = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  87. if (oiebll.Update(model))
  88. {
  89. MessageBoxCustom.Show("审核成功!");
  90. this.PublicFunctionRows();
  91. }
  92. }
  93. }
  94. /// <summary>
  95. /// 老总审核
  96. /// </summary>
  97. /// <param name="sender"></param>
  98. /// <param name="e"></param>
  99. void btnAuditCEO_Click(object sender, EventArgs e)
  100. {
  101. if (this.dgvData.SelectedRows.Count == 0)
  102. { MessageBoxCustom.Show("请选中你要审核的数据!"); return; }
  103. if (MessageBoxCustom.Show("此单审核是否通过?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
  104. {
  105. LYFZ.Model.Model_ErpOtherIncomeAndExpenses model = oiebll.GetModel(Convert.ToInt32(this.dgvData.CurrentRow.Cells["ID"].Value));
  106. model.Oiae_CEOAuditState = "已审核";
  107. model.Oiae_CEOAuditPeople = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  108. if (oiebll.Update(model))
  109. {
  110. MessageBoxCustom.Show("审核成功!");
  111. this.PublicFunctionRows();
  112. }
  113. }
  114. }
  115. /// <summary>
  116. /// 日月选择事件
  117. /// </summary>
  118. /// <param name="SelectValue"></param>
  119. void dtYearMonth_ClickChengedValue(string SelectValue)
  120. {
  121. this.PublicFunctionRows();
  122. }
  123. /// <summary>
  124. /// 全部
  125. /// </summary>
  126. /// <param name="sender"></param>
  127. /// <param name="e"></param>
  128. void radAll_Click(object sender, EventArgs e)
  129. {
  130. this.PublicFunctionRows();
  131. }
  132. /// <summary>
  133. /// <1000
  134. /// </summary>
  135. /// <param name="sender"></param>
  136. /// <param name="e"></param>
  137. void radLessThan_Click(object sender, EventArgs e)
  138. {
  139. this.PublicFunctionRows();
  140. }
  141. /// <summary>
  142. /// >=1000
  143. /// </summary>
  144. /// <param name="sender"></param>
  145. /// <param name="e"></param>
  146. void radGreaterThan_Click(object sender, EventArgs e)
  147. {
  148. this.PublicFunctionRows();
  149. }
  150. /// <summary>
  151. /// 绑定数据
  152. /// </summary>
  153. public void PublicFunctionRows()
  154. {
  155. string StrWhere = " Where 1 = 1";
  156. string StrDateTimeStart = this.dtYearMonth.StrDateValue + "-01";
  157. string StrDateTimeEnd = Convert.ToDateTime(StrDateTimeStart).AddMonths(1).AddSeconds(-1).ToString("yyyy-MM-dd");
  158. StrWhere += LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDateTime("Oiae_IEDatetime", StrDateTimeStart, StrDateTimeEnd);
  159. switch (this.EnumOutlayReportLoadType)
  160. {
  161. case OutlayReportLoadType.店面支出:
  162. StrWhere += " and Oiae_Type = '支出'";
  163. if (this.radLessThan.Checked)
  164. { StrWhere += " and Oiae_Money < 10000 "; }
  165. else if (this.radGreaterThan.Checked)
  166. { StrWhere += " and Oiae_Money >= 10000 "; }
  167. break;
  168. case OutlayReportLoadType.财务支出:
  169. StrWhere += " and Oiae_Type = '财务支出'";
  170. if (this.radLessThan.Checked)
  171. { StrWhere += " and Oiae_Money < 10000 "; }
  172. else if (this.radGreaterThan.Checked)
  173. { StrWhere += " and Oiae_Money >= 10000 "; }
  174. break;
  175. }
  176. DataTable newTable = new DataTable();
  177. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
  178. {
  179. newTable = LYFZ.BLL.BLL_ErpOrderView.GetData_FinancialManagementIncomeExpenditureStatistics(StrWhere, "");
  180. });
  181. #region
  182. decimal DecAoumnt = 0;
  183. this.dgvData.DataColumns("ID,费用项目,费用金额,支出日期,取款人,录单人,支出说明,财务审核,经理审核,老总审核", strHideField: "ID");
  184. for (int t = 0; t < newTable.Rows.Count; t++)
  185. {
  186. DataGridViewRow dgvr = new DataGridViewRow();
  187. dgvr.DefaultCellStyle.ForeColor = Color.Red;
  188. DataGridViewCell cell = null;
  189. cell = new DataGridViewTextBoxCell();
  190. cell.Value = newTable.Rows[t]["ID"].ToString().Trim(); ;
  191. dgvr.Cells.Add(cell);
  192. cell = new DataGridViewTextBoxCell();
  193. cell.Value = newTable.Rows[t]["费用项目"].ToString().Trim(); ;
  194. dgvr.Cells.Add(cell);
  195. cell = new DataGridViewTextBoxCell();
  196. cell.Value = newTable.Rows[t]["费用金额"].ToString().Trim();
  197. DecAoumnt += Convert.ToDecimal(newTable.Rows[t]["费用金额"]);
  198. dgvr.Cells.Add(cell);
  199. cell = new DataGridViewTextBoxCell();
  200. cell.Value = LYFZ.BLL.OtherCommonModel.DateTimeToString(newTable.Rows[t]["支出日期"]);
  201. dgvr.Cells.Add(cell);
  202. cell = new DataGridViewTextBoxCell();
  203. cell.Value = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetUserName(newTable.Rows[t]["取款人"]);
  204. dgvr.Cells.Add(cell);
  205. cell = new DataGridViewTextBoxCell();
  206. cell.Value = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetUserName(newTable.Rows[t]["录单人"]);
  207. dgvr.Cells.Add(cell);
  208. cell = new DataGridViewTextBoxCell();
  209. cell.Value = newTable.Rows[t]["支出说明"].ToString().Trim();
  210. dgvr.Cells.Add(cell);
  211. cell = new DataGridViewTextBoxCell();
  212. cell.Value = newTable.Rows[t]["Oiae_FinancialAuditState"].ToString().Trim() + "/" + LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetUserName(newTable.Rows[t]["Oiae_FinancialAuditPeople"]);
  213. dgvr.Cells.Add(cell);
  214. cell = new DataGridViewTextBoxCell();
  215. cell.Value = newTable.Rows[t]["Oiae_ManagerAuditState"].ToString().Trim() + "/" + LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetUserName(newTable.Rows[t]["Oiae_ManagerAuditPeople"]);
  216. dgvr.Cells.Add(cell);
  217. cell = new DataGridViewTextBoxCell();
  218. cell.Value = newTable.Rows[t]["Oiae_CEOAuditState"].ToString().Trim() + "/" + LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetUserName(newTable.Rows[t]["Oiae_CEOAuditPeople"]);
  219. dgvr.Cells.Add(cell);
  220. if (newTable.Rows[t]["Oiae_FinancialAuditState"].ToString().Trim() == "未审核" && newTable.Rows[t]["Oiae_ManagerAuditState"].ToString().Trim() == "未审核" && newTable.Rows[t]["Oiae_CEOAuditState"].ToString().Trim() == "未审核")
  221. { dgvr.DefaultCellStyle.ForeColor = Color.Red; }
  222. else if (newTable.Rows[t]["Oiae_FinancialAuditState"].ToString().Trim() == "已审核" && newTable.Rows[t]["Oiae_ManagerAuditState"].ToString().Trim() == "已审核" && newTable.Rows[t]["Oiae_CEOAuditState"].ToString().Trim() == "已审核")
  223. { dgvr.DefaultCellStyle.ForeColor = Color.Blue; }
  224. else
  225. { dgvr.DefaultCellStyle.ForeColor = Color.Orange; }
  226. this.dgvData.Rows.Add(dgvr);
  227. }
  228. this.dgvData.ClearSelection();
  229. this.lblTotalOutlay.Text = "总支出:" + DecAoumnt.ToString("n2");
  230. #endregion
  231. }
  232. }
  233. }