FrmPreselection.cs 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729
  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.Dresses.DressManagement
  10. {
  11. public partial class FrmPreselection : LYFZ.Software.UI.Dresses.DressManagement.FrmPreselection
  12. {
  13. public List<string> list = new List<string>();
  14. private delegate void UpdateControl();
  15. bool bl = false;
  16. public string Dsfm_DressNumber;
  17. public string PreselectedNumber;
  18. public FrmPreselection()
  19. {
  20. this.FormClosed += FrmPreselection_FormClosed;
  21. this.ucPagerEx1.EventPaging += ucPagerEx1_EventPaging;
  22. }
  23. void FrmPreselection_FormClosed(object sender, FormClosedEventArgs e)
  24. {
  25. if (bl)
  26. {
  27. this.DialogResult = DialogResult.OK;
  28. }
  29. }
  30. #region 加载
  31. protected override void FrmPreselection_Shown(object sender, EventArgs e)
  32. {
  33. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.HidePhoneControls(this.txtCus_Telephone);
  34. LYFZ.BLL.BLL_ErpDressFrom DressFromBll = new BLL.BLL_ErpDressFrom();
  35. DataTable dt = new DataTable();
  36. txtDsro_HandledName.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  37. txtDsro_CreateDateTime.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().ToString("yyyy-MM-dd");
  38. #region 获取单号
  39. BindDsro_Number();
  40. #endregion
  41. #region 获取礼服资料
  42. if (!string.IsNullOrEmpty(Dsfm_DressNumber))
  43. {
  44. string[] Dsfm_DressNumbers = Dsfm_DressNumber.Split(',');
  45. for (int t = 0; t < Dsfm_DressNumbers.Length; t++)
  46. {
  47. dt = DressFromBll.View_tb_ErpDressFrom(" and Dsfm_DressNumber='" + Dsfm_DressNumbers[t] + "'").Tables[0];
  48. #region
  49. DataGridViewRow dgvr = new DataGridViewRow();
  50. DataGridViewCell cell = null;
  51. cell = new DataGridViewTextBoxCell();
  52. cell.Value = dt.Rows[0]["Dsfm_DressNumber"].ToString().Trim();
  53. dgvr.Cells.Add(cell);
  54. cell = new DataGridViewTextBoxCell();
  55. cell.Value = dt.Rows[0]["Dsfm_DressTypeName"].ToString().Trim();
  56. dgvr.Cells.Add(cell);
  57. cell = new DataGridViewTextBoxCell();
  58. cell.Value = dt.Rows[0]["Dsfm_DressName"].ToString().Trim();
  59. dgvr.Cells.Add(cell);
  60. cell = new DataGridViewTextBoxCell();
  61. cell.Value = "1";
  62. dgvr.Cells.Add(cell);
  63. cell = new DataGridViewTextBoxCell();
  64. cell.Value = dt.Rows[0]["Dsfm_RentPrice"].ToString().Trim();
  65. dgvr.Cells.Add(cell);
  66. cell = new DataGridViewTextBoxCell();
  67. cell.Value = dt.Rows[0]["Dsfm_SalePrice"].ToString().Trim();
  68. dgvr.Cells.Add(cell);
  69. cell = new DataGridViewTextBoxCell();
  70. cell.Value = dt.Rows[0]["Dsfm_CostPrice"].ToString().Trim();
  71. dgvr.Cells.Add(cell);
  72. this.dgv.Rows.Add(dgvr);
  73. #endregion
  74. }
  75. dgv.ClearSelection();
  76. }
  77. #endregion
  78. #region 部门人员绑定
  79. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.txtDsro_CreateName, IsFirstNodeNull: true);
  80. //LYFZ.BLL.BLL_ErpDepartment BLLerpdepartment = new BLL.BLL_ErpDepartment();
  81. //DataTable tbl = BLLerpdepartment.GetAllList().Tables[0];
  82. //if (tbl.Rows.Count > 0)
  83. //{
  84. // TreeNode root = null;
  85. // for (int i = 0; i < tbl.Rows.Count; i++)
  86. // {
  87. // root = new TreeNode(tbl.Rows[i]["Dt_Name"].ToString());
  88. // this.CreateTreeViewDepartmentUser(root.Nodes, tbl.Rows[i]["ID"].ToString());
  89. // this.txtDsro_CreateName.TreeView.Nodes.Add(root);
  90. // }
  91. //}
  92. #endregion
  93. Bind();
  94. }
  95. #region 获取礼服订单单号
  96. /// <summary>
  97. /// 获取礼服订单单号
  98. /// </summary>
  99. public void BindDsro_Number()
  100. {
  101. DataTable dt = new DataTable();
  102. //获取最大编号
  103. LYFZ.BLL.BLL_ErpDressSaleRentalOrder DressSaleRentalOrderbll = new BLL.BLL_ErpDressSaleRentalOrder();
  104. dt = DressSaleRentalOrderbll.GetAllList().Tables[0];
  105. if (dt.Rows.Count > 0)
  106. {
  107. int Count = Convert.ToInt32(DressSaleRentalOrderbll.Get_Max_Dsro_Number());
  108. this.txtDsro_Number.Text = "LFDH00" + Convert.ToInt32(Count + 1);
  109. }
  110. else
  111. {
  112. this.txtDsro_Number.Text = "LFDH001";
  113. }
  114. }
  115. #endregion
  116. #region 获取已预选衣服
  117. /// <summary>
  118. /// 获取已预选衣服
  119. /// </summary>
  120. public void Bind()
  121. {
  122. this.ucPagerEx1.PageCurrent = 1;
  123. this.ucPagerEx1.PageSize = 15;
  124. this.ucPagerEx1.Bind();
  125. }
  126. #endregion
  127. #endregion
  128. #region 输入框设置
  129. protected override void txtCus_Telephone_KeyPress(object sender, KeyPressEventArgs e)
  130. {
  131. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  132. {
  133. e.Handled = true;
  134. }
  135. }
  136. protected override void txtDsro_MortgageAmount_KeyPress(object sender, KeyPressEventArgs e)
  137. {
  138. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  139. {
  140. e.Handled = true; //获取或设置一个值,指示是否处理过System.Windows.Forms.Control.KeyPress事件
  141. }
  142. else if (Char.IsPunctuation(e.KeyChar))
  143. {
  144. if (e.KeyChar == '.')
  145. {
  146. if (((System.Windows.Forms.TextBox)sender).Text.LastIndexOf('.') != -1)
  147. {
  148. e.Handled = true;
  149. }
  150. }
  151. else
  152. {
  153. e.Handled = true;
  154. }
  155. }
  156. }
  157. protected override void txtDsro_Amount_KeyPress(object sender, KeyPressEventArgs e)
  158. {
  159. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  160. {
  161. e.Handled = true; //获取或设置一个值,指示是否处理过System.Windows.Forms.Control.KeyPress事件
  162. }
  163. else if (Char.IsPunctuation(e.KeyChar))
  164. {
  165. if (e.KeyChar == '.')
  166. {
  167. if (((System.Windows.Forms.TextBox)sender).Text.LastIndexOf('.') != -1)
  168. {
  169. e.Handled = true;
  170. }
  171. }
  172. else
  173. {
  174. e.Handled = true;
  175. }
  176. }
  177. }
  178. #endregion
  179. #region 预选保存
  180. protected override void btnPreselection_Click(object sender, EventArgs e)
  181. {
  182. try
  183. {
  184. LYFZ.BLL.BLL_ErpDressSaleRentalOrder DressSaleRentalOrderBll = new BLL.BLL_ErpDressSaleRentalOrder();
  185. LYFZ.Model.Model_ErpDressSaleRentalOrder DressSaleRentalOrderModel = new Model.Model_ErpDressSaleRentalOrder();
  186. LYFZ.BLL.BLL_ErpDressSaleRentalDetail DressSaleRentalDetailBll = new BLL.BLL_ErpDressSaleRentalDetail();
  187. LYFZ.Model.Model_ErpDressSaleRentalDetail DressSaleRentalDetailModel = new Model.Model_ErpDressSaleRentalDetail();
  188. if (dgv2.SelectedRows.Count == 0)
  189. {
  190. #region 判断输入框不能为空
  191. if (string.IsNullOrEmpty(txtDsro_Number.Text))
  192. {
  193. MessageBoxCustom.Show("单号不能为空!");
  194. return;
  195. }
  196. if (DressSaleRentalOrderBll.Exists("Dsro_Number", this.txtDsro_Number.Text) == true)
  197. {
  198. MessageBoxCustom.Show("单号已经存在!");
  199. BindDsro_Number();
  200. return;
  201. }
  202. if (dgv.Rows.Count == 0)
  203. {
  204. MessageBoxCustom.Show("礼服资料不能为空!请选择礼服!");
  205. return;
  206. }
  207. if (string.IsNullOrEmpty(txtCus_Name.Text))
  208. {
  209. MessageBoxCustom.Show("客户名称不能为空!");
  210. return;
  211. }
  212. if (string.IsNullOrEmpty(txtCus_Telephone.Text))
  213. {
  214. MessageBoxCustom.Show("客户电话不能为空!");
  215. return;
  216. }
  217. if (txtCus_Telephone.Text.Length != 11)
  218. {
  219. MessageBoxCustom.Show("客户电话号码必须为11位数!");
  220. return;
  221. }
  222. if (string.IsNullOrEmpty(txtDsro_CreateName.Text.Trim()))
  223. {
  224. MessageBoxCustom.Show("销售人员不能为空!");
  225. return;
  226. }
  227. #endregion
  228. #region 增加礼服租售订单表
  229. DressSaleRentalOrderModel.Dsro_Number = txtDsro_Number.Text.Trim();
  230. DressSaleRentalOrderModel.Dsro_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  231. DressSaleRentalOrderModel.Dsro_Type = "2";
  232. DressSaleRentalOrderModel.Dsro_Amount = 0;
  233. DressSaleRentalOrderModel.Dsro_MortgageAmount = 0;
  234. DressSaleRentalOrderModel.Dsro_CreateDateTime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime();
  235. DressSaleRentalOrderModel.Dsro_CreateName = txtDsro_CreateName.Tag.ToString();
  236. DressSaleRentalOrderModel.Dsro_HandledName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  237. #region 增加客户编号
  238. if (txtCus_Name.ReadOnly == true)
  239. {
  240. DressSaleRentalOrderModel.Dsro_CustomerNumber = txtCus_CustomerNumber.Text.Trim();
  241. }
  242. else
  243. {
  244. LYFZ.Model.Model_ErpCustomer model = new Model.Model_ErpCustomer();
  245. LYFZ.BLL.BLL_ErpCustomer bll = new BLL.BLL_ErpCustomer();
  246. #region 增加
  247. #region 手机存在
  248. if (!string.IsNullOrEmpty(txtCus_Telephone.Text))
  249. {
  250. if (bll.Exists("Cus_Telephone", txtCus_Telephone.Text) == true)
  251. {
  252. MessageBoxCustom.Show("客户手机已经存在");
  253. return;
  254. }
  255. }
  256. #endregion
  257. model.Cus_CustomerNumber = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().ToString("yyyyMMddHHmmssfff") + "1";//获取新编号
  258. model.Cus_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  259. model.Cus_CustomizeNumber = "";
  260. model.Cus_Type = "订单客户";
  261. model.Cus_ServiceType = "Clothing";
  262. model.Cus_Name = this.txtCus_Name.Text.ToString().Trim();
  263. model.Cus_Telephone = this.txtCus_Telephone.Text.ToString().Trim();
  264. model.Cus_CreateDateTime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime();
  265. model.Cus_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  266. bll.Add(model);
  267. #endregion
  268. DressSaleRentalOrderModel.Dsro_CustomerNumber = model.Cus_CustomerNumber;
  269. }
  270. #endregion
  271. DressSaleRentalOrderBll.Add(DressSaleRentalOrderModel);
  272. #endregion
  273. #region 租售礼服详情表
  274. if (dgv.Rows.Count > 0)
  275. {
  276. for (int i = 0; i < dgv.Rows.Count; i++)
  277. {
  278. DressSaleRentalDetailModel.Dsrd_Number = DressSaleRentalOrderModel.Dsro_Number;
  279. DressSaleRentalDetailModel.Dsrd_DressNumber = dgv.Rows[i].Cells["Dsfm_DressNumber"].Value.ToString();
  280. DressSaleRentalDetailModel.Dsrd_DressName = dgv.Rows[i].Cells["Dsfm_DressName"].Value.ToString();
  281. DressSaleRentalDetailModel.Dsrd_SaleRentalQuantity = Convert.ToInt32(dgv.Rows[i].Cells["Dsfm_DressQuantity"].Value);
  282. DressSaleRentalDetailModel.Dsrd_CostPrice = Convert.ToDecimal(dgv.Rows[i].Cells["Dsfm_CostPrice"].Value);
  283. DressSaleRentalDetailModel.Dsrd_SalePrice = Convert.ToDecimal(dgv.Rows[i].Cells["Dsfm_SalePrice"].Value);
  284. DressSaleRentalDetailModel.Dsrd_CreateDateTime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime();
  285. DressSaleRentalDetailModel.Dsrd_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  286. DressSaleRentalDetailModel.Dsrd_BackTime = Convert.ToDateTime(null);
  287. DressSaleRentalDetailModel.Dsrd_BackStatus = "3";
  288. DressSaleRentalDetailModel.Dsrd_BackRemark = "";
  289. DressSaleRentalDetailBll.Add(DressSaleRentalDetailModel);
  290. }
  291. }
  292. #endregion
  293. MessageBoxCustom.Show("保存成功!");
  294. bl = true;
  295. this.Close();
  296. }
  297. else
  298. {
  299. MessageBoxCustom.Show("不能修改!");
  300. }
  301. }
  302. catch (Exception ex)
  303. {
  304. MessageBoxCustom.Show(ex.Message);
  305. }
  306. }
  307. #endregion
  308. #region dgv事件
  309. protected override void dgv_Click(object sender, EventArgs e)
  310. {
  311. if (dgv.Rows.Count > 0)
  312. {
  313. LYFZ.BLL.BLL_ErpDressFrom DressFromBll = new BLL.BLL_ErpDressFrom();
  314. DataTable dt = new DataTable();
  315. string Dsfm_DressNumber = dgv.CurrentRow.Cells["Dsfm_DressNumber"].Value.ToString();
  316. dt = DressFromBll.View_tb_ErpDressFrom(" and Dsfm_DressNumber='" + Dsfm_DressNumber + "'").Tables[0];
  317. if (dt.Rows.Count > 0)
  318. {
  319. string dressFromPath = BLL.BLL_ErpDressFrom.GetDressFromPath() + "\\" + dt.Rows[0]["Dsfm_PicturePath"];
  320. if (System.IO.File.Exists(dressFromPath))
  321. {
  322. picDsfm_PicturePath.Image = Image.FromFile(dressFromPath);
  323. }
  324. }
  325. }
  326. }
  327. #endregion
  328. #region 客户选择
  329. protected override void btnCusSelect_Click(object sender, EventArgs e)
  330. {
  331. LYFZ.Software.MainBusiness.Dresses.DressManagement.FrmCusSelect set = new FrmCusSelect();
  332. set.ShowDialog();
  333. if (!string.IsNullOrEmpty(set.StrClientNumber))
  334. {
  335. LYFZ.BLL.BLL_ErpCustomer CustomerBll = new BLL.BLL_ErpCustomer();
  336. DataTable dt = CustomerBll.View_tb_ErpCustomer(" and Cus_CustomerNumber='" + set.StrClientNumber + "'").Tables[0];
  337. if (dt.Rows.Count > 0)
  338. {
  339. txtCus_Name.Text = "";
  340. txtCus_Name.ReadOnly = true;
  341. txtCus_Telephone.Text = "";
  342. txtCus_Telephone.ReadOnly = true;
  343. txtCus_CustomerNumber.Text = "";
  344. txtCus_Name.Text = dt.Rows[0]["Cus_Name"].ToString();
  345. txtCus_Telephone.Text = dt.Rows[0]["Cus_Telephone"].ToString();
  346. txtCus_CustomerNumber.Text = dt.Rows[0]["Cus_CustomerNumber"].ToString();
  347. }
  348. }
  349. }
  350. #endregion
  351. #region 清空
  352. protected override void btnclear_Click(object sender, EventArgs e)
  353. {
  354. #region 获取单号
  355. BindDsro_Number();
  356. #endregion
  357. txtDsro_Number.Text = "";
  358. txtCus_Name.Text = "";
  359. txtCus_Telephone.Text = "";
  360. txtDsro_HandledName.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  361. txtDsro_CreateDateTime.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().ToString();
  362. txtCus_CustomerNumber.Text = "";
  363. dgv.Rows.Clear();
  364. dgv2.ClearSelection();
  365. }
  366. #endregion
  367. #region 关闭
  368. protected override void btnClose_Click(object sender, EventArgs e)
  369. {
  370. this.Close();
  371. }
  372. #endregion
  373. #region 画分页
  374. /// <summary>
  375. /// 画分页
  376. /// </summary>
  377. /// <param name="e"></param>
  378. /// <returns></returns>
  379. private int ucPagerEx1_EventPaging(UCPager.EventPagingArg e)
  380. {
  381. dgv2.Rows.Clear();
  382. LYFZ.BLL.BLL_ErpDressFrom DressFrombll = new BLL.BLL_ErpDressFrom();
  383. DataTable dt = new DataTable();
  384. StringBuilder sql = new StringBuilder();
  385. LYFZ.UCPager.PageData pageData = new LYFZ.UCPager.PageData();
  386. if (!string.IsNullOrEmpty(txtkeyword.Text))
  387. {
  388. sql.Append(" 1=1 and (Dsro_Number like '%" + txtkeyword.Text.Trim() + "%' or Cus_Name like '%" + txtkeyword.Text.Trim() + "%' or Cus_Telephone like '%" + txtkeyword.Text.Trim() + "%') and Dsro_Type='2'");
  389. }
  390. else
  391. {
  392. sql.Append(" 1=1 and Dsro_Type='2'");
  393. }
  394. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
  395. {
  396. pageData.TableName = "View_DressSaleRentalOrder";
  397. pageData.PageIndex = this.ucPagerEx1.PageCurrent;
  398. pageData.PageSize = this.ucPagerEx1.PageSize;
  399. pageData.QueryCondition = sql.ToString();
  400. pageData.QueryFieldName = "ID,Dsro_Number,Dsro_Amount,Dsro_MortgageAmount,Dsro_CustomerNumber,Dsro_CreateDateTime,Dsro_CreateName,Cus_Name,Cus_Telephone,开单人姓名,经手人";
  401. pageData.OrderStr = "ID desc";
  402. pageData.OrderType = 1;
  403. DataSet da = pageData.QueryDataTable();
  404. dt = da.Tables[0];
  405. if (dt.Rows.Count > 0)
  406. {
  407. this.Invoke(new UpdateControl(delegate()
  408. {
  409. #region 获取预选衣服
  410. for (int t = 0; t < dt.Rows.Count; t++)
  411. {
  412. #region
  413. DataGridViewRow dgvr = new DataGridViewRow();
  414. DataGridViewCell cell = null;
  415. cell = new DataGridViewTextBoxCell();
  416. cell.Value = dt.Rows[t]["ID"].ToString().Trim();
  417. dgvr.Cells.Add(cell);
  418. cell = new DataGridViewTextBoxCell();
  419. cell.Value = dt.Rows[t]["Dsro_Number"].ToString().Trim();
  420. dgvr.Cells.Add(cell);
  421. cell = new DataGridViewTextBoxCell();
  422. cell.Value = dt.Rows[t]["Cus_Name"].ToString().Trim();
  423. dgvr.Cells.Add(cell);
  424. cell = new DataGridViewTextBoxCell();
  425. cell.Value = dt.Rows[t]["Cus_Telephone"].ToString().Trim();
  426. dgvr.Cells.Add(cell);
  427. cell = new DataGridViewTextBoxCell();
  428. cell.Value = dt.Rows[t]["开单人姓名"].ToString().Trim();
  429. dgvr.Cells.Add(cell);
  430. cell = new DataGridViewTextBoxCell();
  431. cell.Value = dt.Rows[t]["经手人"].ToString().Trim();
  432. dgvr.Cells.Add(cell);
  433. cell = new DataGridViewTextBoxCell();
  434. cell.Value = Convert.ToDateTime(dt.Rows[t]["Dsro_CreateDateTime"]).ToString("yyyy-MM-dd").Trim();
  435. dgvr.Cells.Add(cell);
  436. this.dgv2.Rows.Add(dgvr);
  437. dgv2.ClearSelection();
  438. #endregion
  439. }
  440. #endregion
  441. }));
  442. }
  443. });
  444. try
  445. {
  446. this.ucPagerEx1.TbDataSource = dt;
  447. }
  448. catch { }
  449. return pageData.TotalCount;
  450. }
  451. #endregion
  452. #region 预选管理
  453. #region dgv选择事件
  454. protected override void dgv2_Click(object sender, EventArgs e)
  455. {
  456. try
  457. {
  458. if (dgv2.Rows.Count > 0)
  459. {
  460. if (dgv2.SelectedRows.Count > 0)
  461. {
  462. LYFZ.BLL.BLL_ErpDressSaleRentalOrder DressSaleRentalOrderBll = new BLL.BLL_ErpDressSaleRentalOrder();
  463. LYFZ.BLL.BLL_ErpDressSaleRentalDetail DressSaleRentalDetailBll = new BLL.BLL_ErpDressSaleRentalDetail();
  464. LYFZ.BLL.BLL_ErpUser UserBll = new BLL.BLL_ErpUser();
  465. LYFZ.BLL.BLL_ErpDressFrom DressFromBll = new BLL.BLL_ErpDressFrom();
  466. DataTable dt = DressSaleRentalOrderBll.View_DressSaleRentalOrder(" and Dsro_Number='" + dgv2.CurrentRow.Cells["Dsro_Number"].Value.ToString() + "'").Tables[0];
  467. if (dt.Rows.Count > 0)
  468. {
  469. #region 获取预选资料
  470. txtDsro_Number.Text = dt.Rows[0]["Dsro_Number"].ToString();
  471. txtCus_Name.Text = dt.Rows[0]["Cus_Name"].ToString();
  472. txtCus_Telephone.Text = dt.Rows[0]["Cus_Telephone"].ToString();
  473. txtDsro_CreateName.TagFindText(dt.Rows[0]["Dsro_CreateName"].ToString());
  474. txtDsro_HandledName.Text = dt.Rows[0]["经手人"].ToString().Trim();
  475. txtDsro_CreateDateTime.Text = Convert.ToDateTime(dt.Rows[0]["Dsro_CreateDateTime"]).ToString("yyyy-MM-dd");
  476. txtCus_CustomerNumber.Text = dt.Rows[0]["Cus_CustomerNumber"].ToString();
  477. #endregion
  478. #region 礼服资料
  479. dgv.Rows.Clear();
  480. dt = DressSaleRentalDetailBll.View_DressSaleRentalDetail(" and Dsrd_Number='" + dgv2.CurrentRow.Cells["Dsro_Number"].Value.ToString() + "'").Tables[0];
  481. if (dt.Rows.Count > 0)
  482. {
  483. for (int t = 0; t < dt.Rows.Count; t++)
  484. {
  485. #region
  486. DataGridViewRow dgvr = new DataGridViewRow();
  487. DataGridViewCell cell = null;
  488. cell = new DataGridViewTextBoxCell();
  489. cell.Value = dt.Rows[t]["Dsrd_DressNumber"].ToString().Trim();
  490. dgvr.Cells.Add(cell);
  491. cell = new DataGridViewTextBoxCell();
  492. cell.Value = DressFromBll.GetDressTypeName(dt.Rows[t]["Dsrd_DressNumber"].ToString().Trim());
  493. dgvr.Cells.Add(cell);
  494. cell = new DataGridViewTextBoxCell();
  495. cell.Value = dt.Rows[t]["Dsrd_DressName"].ToString().Trim();
  496. dgvr.Cells.Add(cell);
  497. cell = new DataGridViewTextBoxCell();
  498. cell.Value = dt.Rows[t]["Dsrd_SaleRentalQuantity"].ToString();
  499. dgvr.Cells.Add(cell);
  500. cell = new DataGridViewTextBoxCell();
  501. cell.Value = dt.Rows[t]["Dsfm_RentPrice"].ToString().Trim();
  502. dgvr.Cells.Add(cell);
  503. cell = new DataGridViewTextBoxCell();
  504. cell.Value = dt.Rows[t]["Dsrd_SalePrice"].ToString().Trim();
  505. dgvr.Cells.Add(cell);
  506. cell = new DataGridViewTextBoxCell();
  507. cell.Value = dt.Rows[t]["Dsrd_CostPrice"].ToString().Trim();
  508. dgvr.Cells.Add(cell);
  509. this.dgv.Rows.Add(dgvr);
  510. #endregion
  511. dgv.ClearSelection();
  512. }
  513. }
  514. #endregion
  515. }
  516. }
  517. }
  518. }
  519. catch (Exception ex)
  520. {
  521. MessageBoxCustom.Show(ex.Message);
  522. }
  523. }
  524. #endregion
  525. #region 查询
  526. protected override void btnSlect_Click(object sender, EventArgs e)
  527. {
  528. try
  529. {
  530. txtCus_CustomerNumber.Text = "";
  531. txtCus_Name.Text = "";
  532. txtCus_Telephone.Text = "";
  533. txtDsro_CreateDateTime.Text = "";
  534. txtDsro_HandledName.Text = "";
  535. txtDsro_Number.Text = "";
  536. dgv.Rows.Clear();
  537. picDsfm_PicturePath.Image = null;
  538. Bind();
  539. }
  540. catch (Exception ex)
  541. {
  542. MessageBoxCustom.Show(ex.Message);
  543. }
  544. }
  545. #endregion
  546. #region 删除
  547. protected override void btnDelete_Click(object sender, EventArgs e)
  548. {
  549. try
  550. {
  551. if (this.dgv2.SelectedRows.Count == 0)
  552. {
  553. MessageBoxCustom.Show("请选中你要删除的数据!");
  554. return;
  555. }
  556. if (MessageBoxCustom.Show("你确定要删除吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
  557. {
  558. LYFZ.BLL.BLL_ErpDressSaleRentalOrder bll = new BLL.BLL_ErpDressSaleRentalOrder();
  559. string Dsro_Number = this.dgv2.CurrentRow.Cells["Dsro_Number"].Value.ToString();
  560. if (bll.DeleteLf(Dsro_Number) == 1)
  561. {
  562. #region 写入操作日志
  563. string logsContent = "删除预选礼服编号:" + Dsro_Number;
  564. LYFZ.BLL.BLL_ErpSystemLogs.WriteSystemLog(LYFZ.EnumPublic.SystemLogsType.删除礼服, logsContent, LYFZ.BLL.BLL_ErpUser.UsersModel.User_EmployeeID, LYFZ.BLL.BLL_ErpUser.UsersModel.User_Name);
  565. //LYFZ.BLL.BLL_ErpSystemLogs systemLogsBll = new BLL.BLL_ErpSystemLogs();
  566. //LYFZ.Model.Model_ErpSystemLogs systemLogsModel = new Model.Model_ErpSystemLogs();
  567. //systemLogsModel.Slogs_Type = "user";
  568. //systemLogsModel.Slogs_Topic = "删除预选礼服";
  569. //systemLogsModel.Slogs_Content = "删除预选礼服编号:" + Dsro_Number;
  570. //systemLogsModel.Slogs_UserName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  571. //systemLogsModel.Slogs_IP = "";
  572. //systemLogsModel.Slogs_CreateDatetime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime();
  573. //systemLogsModel.Slogs_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  574. //systemLogsBll.Add(systemLogsModel);
  575. #endregion
  576. MessageBoxCustom.Show("删除成功!");
  577. txtCus_CustomerNumber.Text = "";
  578. txtCus_Name.Text = "";
  579. txtCus_Telephone.Text = "";
  580. txtDsro_CreateDateTime.Text = "";
  581. txtDsro_HandledName.Text = "";
  582. txtDsro_Number.Text = "";
  583. dgv.Rows.Clear();
  584. picDsfm_PicturePath.Image = null;
  585. Bind();
  586. }
  587. else { MessageBoxCustom.Show("删除失败!"); }
  588. }
  589. }
  590. catch (Exception ex)
  591. {
  592. MessageBoxCustom.Show(ex.Message);
  593. }
  594. }
  595. #endregion
  596. #region 选择
  597. protected override void btnChoose_Click(object sender, EventArgs e)
  598. {
  599. if (dgv2.SelectedRows.Count == 0)
  600. {
  601. MessageBoxCustom.Show("请选择预选订单!");
  602. return;
  603. }
  604. string Dsro_Number = dgv2.CurrentRow.Cells["Dsro_Number"].Value.ToString();
  605. LYFZ.BLL.BLL_ErpDressSaleRentalDetail bll = new BLL.BLL_ErpDressSaleRentalDetail();
  606. DataTable dt = bll.GetList(" Dsrd_Number='" + Dsro_Number + "'").Tables[0];
  607. if (dt.Rows.Count > 0)
  608. {
  609. for (int i = 0; i < dt.Rows.Count; i++)
  610. {
  611. list.Add(dt.Rows[i]["Dsrd_DressNumber"].ToString());
  612. }
  613. }
  614. PreselectedNumber = Dsro_Number;
  615. this.Close();
  616. }
  617. #endregion
  618. #endregion
  619. #region 绑定第二级人员
  620. /// <summary>
  621. /// 绑定第二级人员
  622. /// </summary>
  623. /// <param name="nodes">TreeView的节点集合</param>
  624. /// <param name="dataSource">数据源</param>
  625. /// <param name="parentid"></param>
  626. private void CreateTreeViewDepartmentUser(TreeNodeCollection nodes, string ClassCode)
  627. {
  628. if (ClassCode != "")
  629. {
  630. LYFZ.BLL.BLL_ErpUser BLLerpuser = new BLL.BLL_ErpUser();
  631. DataTable tbl = BLLerpuser.GetList("User_Department='" + ClassCode + "' and id!='1' and User_Status='在职'").Tables[0];
  632. if (tbl.Rows.Count > 0)
  633. {
  634. TreeNode node;
  635. for (int i = 0; i < tbl.Rows.Count; i++)
  636. {
  637. node = new TreeNode();
  638. node.Text = tbl.Rows[i]["User_Name"].ToString();
  639. node.Tag = tbl.Rows[i]["User_EmployeeID"].ToString();
  640. node.Name = tbl.Rows[i]["User_Account"].ToString();
  641. nodes.Add(node);
  642. }
  643. }
  644. }
  645. }
  646. #endregion
  647. }
  648. }