FrmInventoryReport.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  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.StatisticalInquiry
  10. {
  11. public partial class FrmInventoryReport : LYFZ.Software.UI.StatisticalInquiry.FrmInventoryReport
  12. {
  13. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  14. public FrmInventoryReport()
  15. {
  16. this.Shown += FrmInventoryReport_Shown;
  17. this.btnSelect.Click += btnSelect_Click;
  18. this.tabControlEx1.SelectedIndexChanged += tabControlEx1_SelectedIndexChanged;
  19. #region 导出按钮;
  20. this.btnExport.Click += BtnExport_Click;
  21. #endregion
  22. }
  23. private void BtnExport_Click(object sender, EventArgs e)
  24. {
  25. if (dgvData.Rows.Count <= 0 )
  26. {
  27. MessageBoxCustom.Show("没有数据可以导出!");
  28. return;
  29. }
  30. string strExportName = "";
  31. if (this.tabControlEx1.SelectedIndex == 0)
  32. strExportName = "入库记录";
  33. else if (this.tabControlEx1.SelectedIndex == 1)
  34. strExportName = "出库记录";
  35. else if (this.tabControlEx1.SelectedIndex == 2)
  36. strExportName = "当前库存";
  37. dgvData.ExportDataTable(strExportName);
  38. }
  39. /// <summary>
  40. /// 窗体加载事件
  41. /// </summary>
  42. /// <param name="sender"></param>
  43. /// <param name="e"></param>
  44. void FrmInventoryReport_Shown(object sender, EventArgs e)
  45. {
  46. this.dgvData.DataColumns("商品名称,数量,商品类别,厂商,进价,卖价,库存金额,入库人员,入库时间");
  47. this.dtpTimeStart.Text = SDateTime.Now.ToString("yyyy-MM") + "-01";
  48. this.dtpTimeEnd.Text = Convert.ToDateTime(this.dtpTimeStart.Text).AddMonths(1).AddDays(-1).ToString("yyyy-MM-dd");
  49. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_Vendor(this.cmbtreevVendor);
  50. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.cmbtreevCreateName, IsFirstNodeNull: true);
  51. this.PublicFunctionRows();
  52. bool b = LYFZ.Software.MainBusiness.VersionControl.StaticVersion.UIFunctionVersion(VersionControl.VersionFunctionEnum.统计查询库存报表);
  53. if (!b)
  54. {
  55. this.Close();
  56. }
  57. }
  58. /// <summary>
  59. /// 查询
  60. /// </summary>
  61. /// <param name="sender"></param>
  62. /// <param name="e"></param>
  63. void btnSelect_Click(object sender, EventArgs e)
  64. {
  65. this.PublicFunctionRows();
  66. }
  67. /// <summary>
  68. /// 选择查看
  69. /// </summary>
  70. /// <param name="sender"></param>
  71. /// <param name="e"></param>
  72. void tabControlEx1_SelectedIndexChanged(object sender, EventArgs e)
  73. {
  74. switch (this.tabControlEx1.SelectedTab.Name.Trim())
  75. {
  76. case "tabPage_IntStorage":
  77. this.panelDateTime.Visible = true;
  78. this.panelCreateName.Visible = true;
  79. this.panelVendor.Visible = true;
  80. this.labelEx4.Text = "入库人:";
  81. this.panelSelect.Visible = true;
  82. break;
  83. case "tabPage_OutStorage":
  84. this.panelDateTime.Visible = true;
  85. this.panelCreateName.Visible = true;
  86. this.panelVendor.Visible = false;
  87. this.labelEx4.Text = "出库人:";
  88. this.panelSelect.Visible = true;
  89. break;
  90. case "tabPage_CurrentStorage":
  91. this.panelDateTime.Visible = false;
  92. this.panelCreateName.Visible = false;
  93. this.panelVendor.Visible = false;
  94. this.panelSelect.Visible = false;
  95. break;
  96. }
  97. this.PublicFunctionRows();
  98. }
  99. /// <summary>
  100. /// 绑定数据
  101. /// </summary>
  102. void PublicFunctionRows()
  103. {
  104. string StrWhere = "1 = 1";
  105. string StrTableName = "";
  106. string StrColumnName = "";
  107. switch (this.tabControlEx1.SelectedTab.Name.Trim())
  108. {
  109. case "tabPage_IntStorage":
  110. if (string.IsNullOrEmpty(this.dtpTimeStart.DateValue.Trim()) || string.IsNullOrEmpty(this.dtpTimeEnd.DateValue.Trim()))
  111. { StrWhere += " And ID = -1"; }
  112. else
  113. {
  114. StrWhere += LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDateTime("Pis_CreateDatetime", this.dtpTimeStart.DateValue.Trim(), this.dtpTimeEnd.DateValue.Trim());
  115. if (!string.IsNullOrEmpty(cmbtreevCreateName.Text.Trim()))
  116. { StrWhere += " And Pis_CreateName = '" + cmbtreevCreateName.Tag.ToString().Trim() + "'"; }
  117. if (!string.IsNullOrEmpty(this.cmbtreevVendor.Text.Trim()))
  118. { StrWhere += " And Pis_PurchaseVendor='" + this.cmbtreevVendor.Text.Trim() + "'"; }
  119. }
  120. StrTableName = "tb_ErpProductIntStorage Left Join tb_ErpProduct on Prod_Number = Pis_ProductNumber Left Join tb_ErpSystemCategory on Sc_ClassCode = Pis_ProductCategory Left Join tb_ErpUser on User_EmployeeID = Pis_CreateName";
  121. StrColumnName = "Sc_ClassName AS 商品类别,Prod_Name AS 商品名称,Pis_PurchaseQuantity AS 入库数量,Pis_PurchasePrice AS 商品进价,Prod_SalesPrice AS 商品卖价,Pis_PurchasePrice * Pis_PurchaseQuantity AS 进价总额,User_Name AS 入库人员,dbo.fn_CheckDateTime(Pis_CreateDatetime) AS 入库时间,Pis_PurchaseVendor AS 供应商";
  122. break;
  123. case "tabPage_OutStorage":
  124. if (string.IsNullOrEmpty(this.dtpTimeStart.DateValue.Trim()) || string.IsNullOrEmpty(this.dtpTimeEnd.DateValue.Trim()))
  125. { StrWhere += " And ID = -1"; }
  126. else
  127. {
  128. StrWhere += LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDateTime("Pos_OutTime", this.dtpTimeStart.DateValue.Trim(), this.dtpTimeEnd.DateValue.Trim());
  129. if (!string.IsNullOrEmpty(cmbtreevCreateName.Text.Trim()))
  130. { StrWhere += " And Pos_OutName = '" + cmbtreevCreateName.Tag.ToString().Trim() + "'"; }
  131. }
  132. StrTableName = "tb_ErpProductOutStorage Left Join tb_ErpProduct on Prod_Number = Pos_ProductNumber Left Join tb_ErpSystemCategory on Sc_ClassCode = Pos_ProductCategory Left Join tb_ErpUser on User_EmployeeID = Pos_OutName";
  133. StrColumnName = "Sc_ClassName AS 商品类别,Prod_Name AS 商品名称,Pos_OutQuantity AS 出库数量,Prod_CostPrice AS 商品进价,Prod_SalesPrice AS 商品卖价,Prod_CostPrice * Pos_OutQuantity AS 进价总额,User_Name AS 出库人员,dbo.fn_CheckDateTime(Pos_OutTime) AS 出库时间";
  134. break;
  135. case "tabPage_CurrentStorage":
  136. StrWhere += " And ((Prod_Availability = 1 And Prod_IsEnabled = 1) or (Prod_Availability = 0 And Prod_IsEnabled = 0 And Prod_Quantity > 0))";
  137. StrTableName = "tb_ErpProduct Left Join tb_ErpSystemCategory on Sc_ClassCode = Prod_Class";
  138. StrColumnName = "Sc_ClassName AS 商品类别,Prod_Name AS 商品名称,Prod_Quantity AS 库存数量,Prod_CostPrice AS 商品进价,Prod_SalesPrice AS 商品卖价,Prod_CostPrice * Prod_Quantity AS 进价总额,Prod_Vendor AS 供应商";
  139. break;
  140. }
  141. DataTable dt = orbll.GetView_Custom(StrTableName, StrWhere: StrWhere, ShowColumnName: StrColumnName).Tables[0];
  142. this.dgvData.DataSource(dt, strHideField: "");
  143. this.dgvData.Columns["商品类别"].Width = 200;
  144. this.dgvData.Columns["商品名称"].Width = 250;
  145. if (this.dgvData.Columns["入库时间"] != null)
  146. { this.dgvData.Columns["入库时间"].Width = 110; }
  147. if (this.dgvData.Columns["出库时间"] != null)
  148. { this.dgvData.Columns["出库时间"].Width = 110; }
  149. if (this.dgvData.Columns["供应商"] != null)
  150. { this.dgvData.Columns["供应商"].Width = 200; }
  151. this.dgvData.FillLastColumn(isAddNullColumns: true);
  152. this.dgvData.ClearSelection();
  153. decimal decSumAmount = 0;
  154. DataTable tbl = new DataTable();
  155. switch (this.tabControlEx1.SelectedTab.Name.Trim())
  156. {
  157. case "tabPage_IntStorage":
  158. tbl = orbll.GetView_Custom("tb_ErpProductIntStorage", StrWhere: StrWhere, ShowColumnName: "sum(Pis_PurchasePrice * Pis_PurchaseQuantity) AS SumCostPrice").Tables[0];
  159. if (tbl.Rows.Count > 0 && !string.IsNullOrEmpty(tbl.Rows[0]["SumCostPrice"].ToString().Trim()))
  160. { decSumAmount = Convert.ToDecimal(tbl.Rows[0]["SumCostPrice"]); }
  161. this.txtStatistics.Text = " 入库进价总额:" + decSumAmount;
  162. break;
  163. case "tabPage_OutStorage":
  164. tbl = orbll.GetView_Custom("tb_ErpProductOutStorage Left Join tb_ErpProduct on Prod_Number = Pos_ProductNumber", StrWhere: StrWhere, ShowColumnName: "sum(Pos_OutQuantity * Prod_CostPrice) AS SumCostPrice,sum(Pos_OutQuantity*Prod_SalesPrice) AS SumSalesPrice").Tables[0];
  165. if (tbl.Rows.Count > 0 && !string.IsNullOrEmpty(tbl.Rows[0]["SumCostPrice"].ToString().Trim()))
  166. { decSumAmount = Convert.ToDecimal(tbl.Rows[0]["SumCostPrice"]); }
  167. decimal decSalesPrice = 0;
  168. if (tbl.Rows.Count > 0 && !string.IsNullOrEmpty(tbl.Rows[0]["SumSalesPrice"].ToString().Trim()))
  169. { decSalesPrice = Convert.ToDecimal(tbl.Rows[0]["SumSalesPrice"]); }
  170. this.txtStatistics.Text = " 出库进价总额:" + decSumAmount + " 出库卖价总额:" + decSalesPrice + " 出库利润总额:" + (decSalesPrice - decSumAmount);
  171. break;
  172. case "tabPage_CurrentStorage":
  173. tbl = orbll.GetView_Custom("tb_ErpProduct", StrWhere: StrWhere, ShowColumnName: "sum(Prod_CostPrice * Prod_Quantity) AS SumCostPrice").Tables[0];
  174. if (tbl.Rows.Count > 0 && !string.IsNullOrEmpty(tbl.Rows[0]["SumCostPrice"].ToString().Trim()))
  175. { decSumAmount = Convert.ToDecimal(tbl.Rows[0]["SumCostPrice"]); }
  176. this.txtStatistics.Text = " 库存进价总额:" + decSumAmount;
  177. break;
  178. }
  179. }
  180. }
  181. }