FrmWarehousing.cs 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510
  1. using LYFZ.ComponentLibrary;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.MainBusiness.InventoryManagement.Receipt
  11. {
  12. public partial class FrmWarehousing : LYFZ.Software.UI.InventoryManagement.Receipt.FrmWarehousing
  13. {
  14. private delegate void UpdateControl();
  15. Boolean bl = false;
  16. public FrmWarehousing()
  17. {
  18. this.ucPagerEx1.EventPaging += ucPagerEx1_EventPaging;
  19. this.FormClosed += FrmWarehousing_FormClosed;
  20. this.dgv1.CellMouseDown += dgv1_CellMouseDown;
  21. this.dgv1.DataGridViewConMenu_ItemClicked += dgv1_DataGridViewConMenu_ItemClicked;
  22. }
  23. void FrmWarehousing_FormClosed(object sender, FormClosedEventArgs e)
  24. {
  25. if (bl)
  26. {
  27. this.DialogResult = DialogResult.OK;
  28. }
  29. }
  30. #region 加载
  31. protected override void FrmWarehousing_Shown(object sender, EventArgs e)
  32. {
  33. try
  34. {
  35. bind();
  36. SelectGoods();
  37. BindVendor();
  38. }
  39. catch (Exception ex)
  40. {
  41. MessageBoxCustom.Show(ex.Message);
  42. }
  43. }
  44. #region 获取所有商品
  45. /// <summary>
  46. /// 获取所有商品
  47. /// </summary>
  48. public void bind()
  49. {
  50. this.ucPagerEx1.PageCurrent = 1;
  51. this.ucPagerEx1.PageSize = 80;// LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetPageSize();//3;分页条数
  52. this.ucPagerEx1.Bind();
  53. }
  54. #endregion
  55. #endregion
  56. #region 保存
  57. protected override void btnWarehousing_Click(object sender, EventArgs e)
  58. {
  59. if (dgv1.Rows.Count > 0)
  60. {
  61. if (dgv1.SelectedRows.Count == 0)
  62. {
  63. MessageBoxCustom.Show("请选择你要入库的商品!");
  64. return;
  65. }
  66. for (int i = 0; i < dgv1.SelectedRows.Count; i++)
  67. {
  68. string Pis_PurchaseVendor = dgv1.SelectedRows[i].Cells["Pis_PurchaseVendor"].Value.ToString();
  69. string Pis_PurchaseQuantity = dgv1.SelectedRows[i].Cells["Pis_PurchaseQuantity"].Value.ToString();
  70. if (string.IsNullOrEmpty(Pis_PurchaseVendor))
  71. {
  72. MessageBoxCustom.Show("商品厂商不能为空!");
  73. return;
  74. }
  75. if (Pis_PurchaseQuantity == "0")
  76. {
  77. MessageBoxCustom.Show("商品入库数量不能为0!");
  78. return;
  79. }
  80. }
  81. #region 新增入库记录表
  82. for (int i = 0; i < dgv1.SelectedRows.Count; i++)
  83. {
  84. LYFZ.Model.Model_ErpProductIntStorage ProductIntStorageModel = new Model.Model_ErpProductIntStorage();
  85. LYFZ.BLL.BLL_ErpProductIntStorage ProductIntStorageBll = new BLL.BLL_ErpProductIntStorage();
  86. ProductIntStorageModel.Pis_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetCompanyInfoID();
  87. ProductIntStorageModel.Pis_ProductCategory = dgv1.SelectedRows[i].Cells["Pis_ProductCategory"].Value.ToString();
  88. ProductIntStorageModel.Pis_ProductNumber = dgv1.SelectedRows[i].Cells["Pis_ProductNumber"].Value.ToString();
  89. ProductIntStorageModel.Pis_PurchaseQuantity = Convert.ToInt32(dgv1.SelectedRows[i].Cells["Pis_PurchaseQuantity"].Value);
  90. ProductIntStorageModel.Pis_PurchaseVendor = dgv1.SelectedRows[i].Cells["Pis_PurchaseVendor"].Value.ToString();
  91. ProductIntStorageModel.Pis_PurchasePrice = Convert.ToDecimal(dgv1.SelectedRows[i].Cells["Pis_PurchasePrice"].Value);
  92. ProductIntStorageModel.Pis_Remark = dgv1.SelectedRows[i].Cells["Pis_Remark"].Value.ToString();
  93. ProductIntStorageModel.Pis_CreateDatetime = Convert.ToDateTime( LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().ToString("yyyy-MM-dd"));
  94. ProductIntStorageModel.Pis_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  95. ProductIntStorageBll.Add(ProductIntStorageModel);
  96. #region 更新商品库存数量
  97. string Prod_Number = dgv1.SelectedRows[i].Cells["Pis_ProductNumber"].Value.ToString();
  98. int Pis_PurchaseQuantity = Convert.ToInt32(dgv1.SelectedRows[i].Cells["Pis_PurchaseQuantity"].Value);
  99. LYFZ.BLL.BLL_ErpProduct ProductBll = new BLL.BLL_ErpProduct();
  100. DataTable dt = ProductBll.GetList("Prod_Number='" + Prod_Number + "'").Tables[0];
  101. int sumQuantity = Pis_PurchaseQuantity + Convert.ToInt32(dt.Rows[0]["Prod_Quantity"]);
  102. ProductBll.UpdateProduct("Prod_Quantity=" + sumQuantity + "", Prod_Number);
  103. #endregion
  104. }
  105. #endregion
  106. bl = true;
  107. MessageBoxCustom.Show("入库成功!");
  108. this.Close();
  109. }
  110. }
  111. #endregion
  112. #region 关闭
  113. protected override void btnClose_Click(object sender, EventArgs e)
  114. {
  115. this.Close();
  116. }
  117. #endregion
  118. #region 绑定查询商品类别
  119. /// <summary>
  120. /// 绑定查询商品类别
  121. /// </summary>
  122. public void SelectGoods()
  123. {
  124. CtvSelect.TreeView.Nodes.Clear();
  125. #region 绑定二级商品类别
  126. LYFZ.BLL.BLL_ErpSystemCategory BLLSystemCategory = new BLL.BLL_ErpSystemCategory();
  127. DataTable tbl = BLLSystemCategory.GetList("Sc_ClassParentID='1'").Tables[0];
  128. if (tbl.Rows.Count > 0)
  129. {
  130. TreeNode root = null;
  131. for (int i = 0; i < tbl.Rows.Count; i++)
  132. {
  133. if (i == 0)
  134. {
  135. root = new TreeNode("全部");
  136. this.CtvSelect.TreeView.Nodes.Add(root);
  137. }
  138. root = new TreeNode();
  139. root.Text = tbl.Rows[i]["Sc_ClassName"].ToString();
  140. root.Tag = tbl.Rows[i]["Sc_ClassCode"].ToString();
  141. this.CreateTreeViewShop(root.Nodes, tbl.Rows[i]["ID"].ToString());
  142. this.CtvSelect.TreeView.Nodes.Add(root);
  143. }
  144. }
  145. #endregion
  146. }
  147. #endregion
  148. #region 绑定三级商品类别
  149. #region 绑定第三级商品类别
  150. /// <summary>
  151. /// 绑定第三级商品类别
  152. /// </summary>
  153. /// <param name="nodes">TreeView的节点集合</param>
  154. /// <param name="dataSource">数据源</param>
  155. /// <param name="parentid"></param>
  156. private void CreateTreeViewShop(TreeNodeCollection nodes, string ClassCode)
  157. {
  158. if (ClassCode != "")
  159. {
  160. LYFZ.BLL.BLL_ErpSystemCategory BLLSystemCategory = new BLL.BLL_ErpSystemCategory();
  161. DataTable tbl = BLLSystemCategory.GetList("Sc_ClassParentID=" + ClassCode + "").Tables[0];
  162. if (tbl.Rows.Count > 0)
  163. {
  164. TreeNode node;
  165. for (int i = 0; i < tbl.Rows.Count; i++)
  166. {
  167. node = new TreeNode();
  168. node.Text = tbl.Rows[i]["Sc_ClassName"].ToString();
  169. node.Tag = tbl.Rows[i]["Sc_ClassCode"].ToString();
  170. nodes.Add(node);
  171. }
  172. }
  173. }
  174. }
  175. #endregion
  176. #endregion
  177. #region 商品查询
  178. protected override void CtvSelect_ComboBoxTreeViewEx_TextChanged(object sender, TreeViewEventArgs e)
  179. {
  180. try
  181. {
  182. bind();
  183. }
  184. catch (Exception ex)
  185. {
  186. MessageBoxCustom.Show(ex.Message);
  187. }
  188. }
  189. #endregion
  190. #region 绑定商品厂商
  191. //<summary>
  192. //绑定商品厂商
  193. //</summary>
  194. public void BindVendor()
  195. {
  196. //DataTable dt = new DataTable();
  197. //LYFZ.BLL.BLL_ErpVendor Vendorbll = new BLL.BLL_ErpVendor();
  198. //dt = Vendorbll.GetList("Vd_Category='1'").Tables[0];
  199. //this.cmbFactory.DataSource = dt;
  200. //this.cmbFactory.ValueMember = "ID";
  201. //this.cmbFactory.DisplayMember = "Vd_Name";
  202. ////DataRow dr = dt.NewRow();
  203. ////dr["ID"] = "-1";
  204. ////dr["Vd_Name"] = "";
  205. ////dt.Rows.InsertAt(dr, 0);
  206. //cmbFactory.SelectedIndex = -1;
  207. LYFZ.BLL.BLL_ErpOrder Orderbll = new BLL.BLL_ErpOrder();
  208. DataTable dt = Orderbll.GetView_Custom("tb_ErpVendor", StrWhere: "", ShowColumnName: "distinct Vd_Name").Tables[0];
  209. if (dt.Rows.Count > 0)
  210. {
  211. this.cmbFactory.DataSource = dt;
  212. this.cmbFactory.ValueMember = "Vd_Name";
  213. this.cmbFactory.DisplayMember = "Vd_Name";
  214. cmbFactory.SelectedIndex = -1;
  215. }
  216. }
  217. #endregion
  218. /// <summary>
  219. /// 选择商品厂商
  220. /// </summary>
  221. /// <param name="sender"></param>
  222. /// <param name="e"></param>
  223. protected override void cmbFactory_SelectedIndexChanged(object sender, EventArgs e)
  224. {
  225. for (int i = 0; i < dgv1.SelectedRows.Count; i++)
  226. {
  227. dgv1.SelectedRows[i].Cells["Pis_PurchaseVendor"].Value = cmbFactory.Text;
  228. }
  229. }
  230. #region dgv控件里面塞下拉框
  231. /// <summary
  232. ///
  233. /// </summary>
  234. /// <param name="sender"></param>
  235. /// <param name="e"></param>
  236. protected override void dgv1_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
  237. {
  238. if (this.dgv1.Rows.Count > 0)
  239. {
  240. if (this.dgv1.CurrentCell.ColumnIndex == this.dgv1.Columns["Pis_PurchaseVendor"].Index)
  241. {
  242. DataGridViewCell cell = this.dgv1.Rows[e.RowIndex].Cells[e.ColumnIndex];
  243. Rectangle rect = this.dgv1.GetCellDisplayRectangle(cell.ColumnIndex, cell.RowIndex, true);
  244. this.cmbFactory.Location = new Point(rect.Location.X + 11, rect.Location.Y + 58);
  245. this.cmbFactory.Size = rect.Size;
  246. if (cell.Value != null)
  247. { this.cmbFactory.Text = (string)cell.Value; }
  248. this.cmbFactory.Visible = true;
  249. this.cmbFactory.Focus();
  250. }
  251. }
  252. }
  253. /// <summary>
  254. ///
  255. /// </summary>
  256. /// <param name="sender"></param>
  257. /// <param name="e"></param>
  258. protected override void cmbFactory_Leave(object sender, EventArgs e)
  259. {
  260. this.dgv1.CurrentRow.Cells["Pis_PurchaseVendor"].Value = this.cmbFactory.Text.Trim();
  261. this.cmbFactory.Visible = false;
  262. }
  263. #endregion
  264. #region 输入框限制
  265. #region 只能输入数字
  266. protected override void dgv1_CellValueChanged(object sender, DataGridViewCellEventArgs e)
  267. {
  268. try
  269. {
  270. if (dgv1.Rows.Count > 0)
  271. {
  272. if (dgv1.CurrentRow.Cells["Pis_PurchaseQuantity"].Value == null)
  273. {
  274. MessageBoxCustom.Show("入库数量不能为空!");
  275. dgv1.CurrentRow.Cells["Pis_PurchaseQuantity"].Value = "0";
  276. return;
  277. }
  278. if (dgv1.CurrentRow.Cells["Pis_PurchasePrice"].Value == null)
  279. {
  280. MessageBoxCustom.Show("商品单价不能为空!");
  281. string Prod_Number = dgv1.CurrentRow.Cells["Pis_ProductNumber"].Value.ToString();
  282. LYFZ.BLL.BLL_ErpProduct Productbll = new BLL.BLL_ErpProduct();
  283. dgv1.CurrentRow.Cells["Pis_PurchasePrice"].Value = Productbll.GetList("Prod_Number='" + Prod_Number + "'").Tables[0].Rows[0]["Prod_CostPrice"].ToString();
  284. return;
  285. }
  286. if (Command.Command_Validate.IsNumber(dgv1.CurrentRow.Cells["Pis_PurchaseQuantity"].Value.ToString()) == false)
  287. {
  288. MessageBoxCustom.Show("只能输入纯数字!");
  289. // int id = Convert.ToInt32(dgv1.CurrentRow.Cells["ID"].Value);
  290. // LYFZ.BLL.BLL_ErpPurchaseProduct bll = new BLL.BLL_ErpPurchaseProduct();
  291. dgv1.CurrentRow.Cells["Pis_PurchaseQuantity"].Value = "0";// bll.GetList("ID=" + id + "").Tables[0].Rows[0]["Ppt_PurchaseQuantity"].ToString();
  292. return;
  293. }
  294. if (Command.Command_Validate.IsNumeric(dgv1.CurrentRow.Cells["Pis_PurchasePrice"].Value.ToString()) == false)
  295. {
  296. MessageBoxCustom.Show("只能输入数字或者小数!");
  297. string Prod_Number = dgv1.CurrentRow.Cells["Pis_ProductNumber"].Value.ToString();
  298. LYFZ.BLL.BLL_ErpProduct Productbll = new BLL.BLL_ErpProduct();
  299. dgv1.CurrentRow.Cells["Pis_PurchasePrice"].Value = Productbll.GetList("Prod_Number='" + Prod_Number + "'").Tables[0].Rows[0]["Prod_CostPrice"].ToString();
  300. return;
  301. }
  302. }
  303. }
  304. catch (Exception ex)
  305. {
  306. MessageBoxCustom.Show(ex.Message);
  307. }
  308. }
  309. #endregion
  310. #endregion
  311. #region 画分页
  312. /// <summary>
  313. /// 画分页
  314. /// </summary>
  315. /// <param name="e"></param>
  316. /// <returns></returns>
  317. private int ucPagerEx1_EventPaging(UCPager.EventPagingArg e)
  318. {
  319. dgv1.Rows.Clear();
  320. DataTable dt = new DataTable();
  321. StringBuilder str = new StringBuilder();
  322. if (CtvSelect.Text == "" || CtvSelect.Tag == null || CtvSelect.Text == "全部")
  323. {
  324. str.Append(" 1=1 and Prod_IsEnabled='1' and Prod_DividedShop='" + LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetCompanyInfoID() + "' and Prod_Availability=1");
  325. }
  326. if (CtvSelect.Tag != null)
  327. {
  328. str.Append(" 1=1 and Prod_IsEnabled='1' and Prod_Class='" + CtvSelect.Tag.ToString() + "' and Prod_DividedShop='" + LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetCompanyInfoID() + "' and Prod_Availability=1");
  329. }
  330. LYFZ.UCPager.PageData pageData = new LYFZ.UCPager.PageData();
  331. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
  332. {
  333. pageData.TableName = "View_tb_ErpProduct";
  334. pageData.PageIndex = this.ucPagerEx1.PageCurrent;
  335. pageData.PageSize = this.ucPagerEx1.PageSize;
  336. pageData.QueryCondition = str.ToString();
  337. pageData.QueryFieldName = "ID,Prod_Number,Prod_DividedShop,Prod_Name,Prod_Class,Prod_Unit,Prod_CostPrice,Prod_SalesPrice,Prod_SpecialPrice,Prod_AlarmQuantity,Prod_IsEnabled,Prod_Quantity,Prod_Expedited,Prod_CreateDatetime,Prod_PreSaleQuantity,Prod_Batch,Prod_ClassName,Sc_ClassCode,Prod_ClassName2,Prod_IsEnabledName,Prod_Availability";
  338. pageData.OrderStr = " ID desc ";
  339. DataSet da = pageData.QueryDataTable();
  340. dt = da.Tables[0];
  341. if (dt.Rows.Count > 0)
  342. {
  343. this.Invoke(new UpdateControl(delegate()
  344. {
  345. #region
  346. for (int t = 0; t < dt.Rows.Count; t++)
  347. {
  348. DataGridViewRow dgvr = new DataGridViewRow();
  349. DataGridViewCell cell = null;
  350. cell = new DataGridViewTextBoxCell();
  351. cell.Value = dt.Rows[t]["ID"].ToString().Trim();
  352. dgvr.Cells.Add(cell);
  353. cell = new DataGridViewTextBoxCell();
  354. cell.Value = dt.Rows[t]["Prod_Name"].ToString().Trim();
  355. dgvr.Cells.Add(cell);
  356. cell = new DataGridViewTextBoxCell();
  357. cell.Value = dt.Rows[t]["Prod_Quantity"].ToString().Trim();
  358. dgvr.Cells.Add(cell);
  359. cell = new DataGridViewTextBoxCell();
  360. cell.Value = dt.Rows[t]["Prod_ClassName"].ToString().Trim();
  361. dgvr.Cells.Add(cell);
  362. cell = new DataGridViewTextBoxCell();
  363. cell.Value = dt.Rows[t]["Prod_AlarmQuantity"].ToString().Trim();
  364. dgvr.Cells.Add(cell);
  365. cell = new DataGridViewTextBoxCell();
  366. cell.Value = dt.Rows[t]["Prod_PreSaleQuantity"].ToString().Trim();
  367. dgvr.Cells.Add(cell);
  368. cell = new DataGridViewTextBoxCell();
  369. cell.Value = dt.Rows[t]["Prod_CostPrice"].ToString().Trim();
  370. dgvr.Cells.Add(cell);
  371. cell = new DataGridViewTextBoxCell();
  372. cell.Value = "";
  373. dgvr.Cells.Add(cell);
  374. cell = new DataGridViewTextBoxCell();
  375. cell.Value = "0";
  376. dgvr.Cells.Add(cell);
  377. cell = new DataGridViewTextBoxCell();
  378. cell.Value = "";
  379. dgvr.Cells.Add(cell);
  380. cell = new DataGridViewTextBoxCell();
  381. cell.Value = dt.Rows[t]["Prod_Class"].ToString().Trim();
  382. dgvr.Cells.Add(cell);
  383. cell = new DataGridViewTextBoxCell();
  384. cell.Value = dt.Rows[t]["Prod_Number"].ToString().Trim();
  385. dgvr.Cells.Add(cell);
  386. this.dgv1.Rows.Add(dgvr);
  387. dgv1.ClearSelection();
  388. }
  389. #endregion
  390. }));
  391. }
  392. #region 单元格变色
  393. for (int i = 0; i < dgv1.Rows.Count; i++)
  394. {
  395. int Prod_Quantity = Convert.ToInt32(dgv1.Rows[i].Cells["Prod_Quantity"].Value);
  396. int Prod_AlarmQuantity = Convert.ToInt32(dgv1.Rows[i].Cells["Prod_AlarmQuantity"].Value);
  397. if (Prod_Quantity <= Prod_AlarmQuantity)
  398. {
  399. this.dgv1.Rows[i].DefaultCellStyle.ForeColor = Color.Red;
  400. }
  401. }
  402. #endregion
  403. });
  404. try
  405. {
  406. this.ucPagerEx1.TbDataSource = dt;
  407. }
  408. catch { }
  409. return pageData.TotalCount;
  410. }
  411. #endregion
  412. /// <summary>
  413. ///
  414. /// </summary>
  415. /// <param name="sender"></param>
  416. /// <param name="e"></param>
  417. void dgv1_CellMouseDown(object sender, DataGridViewCellMouseEventArgs e)
  418. {
  419. if (e.Button == MouseButtons.Right)
  420. {
  421. ToolStripMenuItem item = null;
  422. item = new ToolStripMenuItem();
  423. item.Text = "查看商品图片";
  424. item.Tag = "View";
  425. this.dgv1.conMenu.Items.Add(item);
  426. item = new ToolStripMenuItem();
  427. item.Text = "选择商品厂商";
  428. item.Tag = "Select";
  429. this.dgv1.conMenu.Items.Add(item);
  430. }
  431. }
  432. void dgv1_DataGridViewConMenu_ItemClicked(object sender, ToolStripItemClickedEventArgs e)
  433. {
  434. ToolStripItem item = e.ClickedItem;
  435. if (item.Tag.ToString().Trim() == "View")
  436. {
  437. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.ProductViewPhoto(this.dgv1.CurrentRow.Cells["Pis_ProductNumber"].Value.ToString().Trim());
  438. }
  439. else if (item.Tag.ToString().Trim() == "View")
  440. {
  441. LYFZ.Software.MainBusiness.InventoryManagement.PurchasingManagement.FrmSelectManufacturer set = new PurchasingManagement.FrmSelectManufacturer();
  442. set.ShowDialog();
  443. if (!string.IsNullOrEmpty(set.NumberSjName))
  444. {
  445. for (int i = 0; i < dgv1.SelectedRows.Count; i++)
  446. {
  447. dgv1.SelectedRows[i].Cells["Pis_PurchaseVendor"].Value = set.NumberSjName;
  448. }
  449. }
  450. }
  451. }
  452. }
  453. }