FrmPreselectedUpdate.cs 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.IO;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.MainBusiness.Dresses.DressManagement
  11. {
  12. public partial class FrmPreselectedUpdate : LYFZ.Software.UI.Dresses.DressManagement.FrmPreselectedUpdate
  13. {
  14. public string type;
  15. public string Dsro_Number;
  16. bool bl = false;
  17. public FrmPreselectedUpdate()
  18. {
  19. this.FormClosed += FrmPreselectedUpdate_FormClosed;
  20. }
  21. void FrmPreselectedUpdate_FormClosed(object sender, FormClosedEventArgs e)
  22. {
  23. if (bl)
  24. {
  25. this.DialogResult = DialogResult.OK;
  26. }
  27. }
  28. #region 加载
  29. protected override void FrmPreselectedUpdate_Shown(object sender, EventArgs e)
  30. {
  31. try
  32. {
  33. #region 部门人员绑定
  34. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.txtDsro_CreateName, IsFirstNodeNull: true);
  35. //LYFZ.BLL.BLL_ErpDepartment BLLerpdepartment = new BLL.BLL_ErpDepartment();
  36. //DataTable tbl = BLLerpdepartment.GetAllList().Tables[0];
  37. //if (tbl.Rows.Count > 0)
  38. //{
  39. // TreeNode root = null;
  40. // for (int i = 0; i < tbl.Rows.Count; i++)
  41. // {
  42. // root = new TreeNode(tbl.Rows[i]["Dt_Name"].ToString());
  43. // this.CreateTreeViewDepartmentUser(root.Nodes, tbl.Rows[i]["ID"].ToString());
  44. // this.txtDsro_CreateName.TreeView.Nodes.Add(root);
  45. // }
  46. //}
  47. #endregion
  48. if (!string.IsNullOrEmpty(Dsro_Number))
  49. {
  50. LYFZ.BLL.BLL_ErpUser UserBll = new BLL.BLL_ErpUser();
  51. LYFZ.BLL.BLL_ErpDressSaleRentalOrder DressSaleRentalOrderBll = new BLL.BLL_ErpDressSaleRentalOrder();
  52. DataTable dt = new DataTable();
  53. if (type == "0")
  54. {
  55. lbl1.Visible = false;
  56. lbl2.Visible = false;
  57. txtDsro_MortgageAmount.Visible = false;
  58. txtDsro_ReservationBackTime.Visible = false;
  59. }
  60. #region 获取预选资料
  61. dt = DressSaleRentalOrderBll.View_DressSaleRentalOrder(" and Dsro_Number='" + Dsro_Number + "'").Tables[0];
  62. if (dt.Rows.Count > 0)
  63. {
  64. txtDsro_Number.Text = dt.Rows[0]["Dsro_Number"].ToString();
  65. txtDsro_Amount.Text = dt.Rows[0]["Dsro_Amount"].ToString();
  66. if (type == "0")
  67. {
  68. txtDsro_MortgageAmount.Text = "";
  69. }
  70. else { txtDsro_MortgageAmount.Text = dt.Rows[0]["Dsro_MortgageAmount"].ToString(); }
  71. txtDsro_CreateName.TagFindText(dt.Rows[0]["Dsro_CreateName"].ToString());
  72. txtDsro_CreateDateTime.Text = Convert.ToDateTime(dt.Rows[0]["Dsro_CreateDateTime"].ToString()).ToString("yyyy-MM-dd");
  73. txtDsro_Remark.Text = dt.Rows[0]["Dsro_Remark"].ToString();
  74. txtDsro_TakeDressTime.Text = Convert.ToDateTime(dt.Rows[0]["Dsro_TakeDressTime"].ToString()).ToString("yyyy-MM-dd");
  75. if (type == "0")
  76. {
  77. txtDsro_ReservationBackTime.Text = "";
  78. }
  79. else
  80. {
  81. txtDsro_ReservationBackTime.Text = Convert.ToDateTime(dt.Rows[0]["Dsro_ReservationBackTime"].ToString()).ToString("yyyy-MM-dd");
  82. }
  83. }
  84. #endregion
  85. bind();
  86. }
  87. }
  88. catch (Exception ex)
  89. {
  90. MessageBoxCustom.Show(ex.Message);
  91. }
  92. }
  93. /// <summary>
  94. /// 获取礼服资料
  95. /// </summary>
  96. public void bind()
  97. {
  98. #region 获取礼服资料
  99. dgv.Rows.Clear();
  100. DataTable dt = new DataTable();
  101. LYFZ.BLL.BLL_ErpDressSaleRentalDetail DressSaleRentalDetailBll = new BLL.BLL_ErpDressSaleRentalDetail();
  102. dt = DressSaleRentalDetailBll.GetList(" Dsrd_Number='" + Dsro_Number + "'").Tables[0];
  103. if (dt.Rows.Count > 0)
  104. {
  105. for (int t = 0; t < dt.Rows.Count; t++)
  106. {
  107. #region
  108. DataGridViewRow dgvr = new DataGridViewRow();
  109. DataGridViewCell cell = null;
  110. cell = new DataGridViewTextBoxCell();
  111. cell.Value = dt.Rows[t]["ID"].ToString().Trim();
  112. dgvr.Cells.Add(cell);
  113. cell = new DataGridViewTextBoxCell();
  114. cell.Value = dt.Rows[t]["Dsrd_DressNumber"].ToString().Trim();
  115. dgvr.Cells.Add(cell);
  116. cell = new DataGridViewTextBoxCell();
  117. cell.Value = dt.Rows[t]["Dsrd_DressName"].ToString().Trim();
  118. dgvr.Cells.Add(cell);
  119. cell = new DataGridViewTextBoxCell();
  120. cell.Value = dt.Rows[t]["Dsrd_SaleRentalQuantity"].ToString().Trim();
  121. dgvr.Cells.Add(cell);
  122. cell = new DataGridViewTextBoxCell();
  123. cell.Value = dt.Rows[t]["Dsrd_CostPrice"].ToString().Trim();
  124. dgvr.Cells.Add(cell);
  125. cell = new DataGridViewTextBoxCell();
  126. cell.Value = dt.Rows[t]["Dsrd_SalePrice"].ToString().Trim();
  127. dgvr.Cells.Add(cell);
  128. this.dgv.Rows.Add(dgvr);
  129. #endregion
  130. dgv.ClearSelection();
  131. }
  132. }
  133. #endregion
  134. }
  135. #endregion
  136. /// <summary>
  137. /// dgv单价事件
  138. /// </summary>
  139. /// <param name="sender"></param>
  140. /// <param name="e"></param>
  141. protected override void dgv_Click(object sender, EventArgs e)
  142. {
  143. if (dgv.Rows.Count > 0)
  144. {
  145. LYFZ.BLL.BLL_ErpDressFrom DressFromBll = new BLL.BLL_ErpDressFrom();
  146. DataTable dt = new DataTable();
  147. string Dsfm_DressNumber = dgv.CurrentRow.Cells["Dsfm_DressNumber"].Value.ToString();
  148. dt = DressFromBll.View_tb_ErpDressFrom(" and Dsfm_DressNumber='" + Dsfm_DressNumber + "'").Tables[0];
  149. if (dt.Rows.Count > 0)
  150. {
  151. string StrPath = BLL.BLL_ErpDressFrom.GetDressFromPath() + "\\" + dt.Rows[0]["Dsfm_PicturePath"];
  152. if (File.Exists(StrPath))
  153. {
  154. picDsfm_PicturePath.Image = Image.FromFile(StrPath);
  155. }
  156. }
  157. }
  158. }
  159. #region 删除
  160. protected override void btndelete_Click(object sender, EventArgs e)
  161. {
  162. if (this.dgv.SelectedRows.Count == 0)
  163. {
  164. MessageBoxCustom.Show("请选中你要删除的数据!");
  165. return;
  166. }
  167. if (MessageBoxCustom.Show("你确定要删除吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
  168. {
  169. if (dgv.Rows.Count == 1)
  170. {
  171. MessageBoxCustom.Show("礼服订单产品只有一件礼服不能删除!");
  172. return;
  173. }
  174. LYFZ.BLL.BLL_ErpDressSaleRentalDetail bll = new BLL.BLL_ErpDressSaleRentalDetail();
  175. int id = Convert.ToInt32(this.dgv.CurrentRow.Cells["ID"].Value);
  176. if (bll.Delete(id) == true)
  177. {
  178. #region 写入操作日志
  179. string logsContent = "删除礼服名称:" + dgv.CurrentRow.Cells["Dsfm_DressName"].Value.ToString();
  180. LYFZ.BLL.BLL_ErpSystemLogs.WriteSystemLog(LYFZ.EnumPublic.SystemLogsType.删除礼服, logsContent, LYFZ.BLL.BLL_ErpUser.UsersModel.User_EmployeeID, LYFZ.BLL.BLL_ErpUser.UsersModel.User_Name);
  181. //LYFZ.BLL.BLL_ErpSystemLogs systemLogsBll = new BLL.BLL_ErpSystemLogs();
  182. //LYFZ.Model.Model_ErpSystemLogs systemLogsModel = new Model.Model_ErpSystemLogs();
  183. //systemLogsModel.Slogs_Type = "user";
  184. //systemLogsModel.Slogs_Topic = "删除礼服";
  185. //systemLogsModel.Slogs_Content = "删除礼服名称:" + dgv.CurrentRow.Cells["Dsfm_DressName"].Value.ToString();
  186. //systemLogsModel.Slogs_UserName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  187. //systemLogsModel.Slogs_IP = "";
  188. //systemLogsModel.Slogs_CreateDatetime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime();
  189. //systemLogsModel.Slogs_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  190. //systemLogsBll.Add(systemLogsModel);
  191. #endregion
  192. MessageBoxCustom.Show("删除成功!");
  193. bind();
  194. }
  195. else { MessageBoxCustom.Show("删除失败!"); }
  196. }
  197. }
  198. #endregion
  199. #region 修改
  200. protected override void btnSave_Click(object sender, EventArgs e)
  201. {
  202. try
  203. {
  204. LYFZ.BLL.BLL_ErpDressSaleRentalOrder DressSaleRentalOrderBll = new BLL.BLL_ErpDressSaleRentalOrder();
  205. DataTable dt = DressSaleRentalOrderBll.GetList(" Dsro_Number='" + Dsro_Number + "'").Tables[0];
  206. LYFZ.Model.Model_ErpDressSaleRentalOrder DressSaleRentalOrderModel = DressSaleRentalOrderBll.GetModel(Convert.ToInt32(dt.Rows[0]["ID"]));
  207. #region 判断输入框不能为空
  208. if (dgv.Rows.Count == 0)
  209. {
  210. MessageBoxCustom.Show("礼服资料不能为空!请选择礼服!");
  211. return;
  212. }
  213. if (string.IsNullOrEmpty(txtDsro_Number.Text))
  214. {
  215. MessageBoxCustom.Show("单号不能为空!");
  216. return;
  217. }
  218. if (string.IsNullOrEmpty(txtDsro_TakeDressTime.Text))
  219. {
  220. MessageBoxCustom.Show("取衣时间不能为空!");
  221. return;
  222. }
  223. if (type != "0")
  224. {
  225. if (string.IsNullOrEmpty(txtDsro_ReservationBackTime.Text))
  226. {
  227. MessageBoxCustom.Show("还回时间不能为空!");
  228. return;
  229. }
  230. if (!string.IsNullOrEmpty(txtDsro_TakeDressTime.Text) && !string.IsNullOrEmpty(txtDsro_ReservationBackTime.Text))
  231. {
  232. if (Convert.ToDateTime(txtDsro_TakeDressTime.Text) > Convert.ToDateTime(txtDsro_ReservationBackTime.Text))
  233. {
  234. MessageBoxCustom.Show("取衣时间必须小于还衣时间!");
  235. return;
  236. }
  237. }
  238. }
  239. #endregion
  240. #region 修改礼服租售订单表
  241. DressSaleRentalOrderModel.Dsro_Amount = Convert.ToDecimal(txtDsro_Amount.Text == "" ? "0.00" : txtDsro_Amount.Text);
  242. if (type == "0")
  243. {
  244. DressSaleRentalOrderModel.Dsro_MortgageAmount = 0;
  245. }
  246. else
  247. {
  248. DressSaleRentalOrderModel.Dsro_MortgageAmount = Convert.ToDecimal(txtDsro_MortgageAmount.Text == "" ? "0.00" : txtDsro_MortgageAmount.Text);
  249. }
  250. DressSaleRentalOrderModel.Dsro_TakeDressTime = Convert.ToDateTime(txtDsro_TakeDressTime.Text.ToString());
  251. if (type == "0")
  252. {
  253. DressSaleRentalOrderModel.Dsro_ReservationBackTime = Convert.ToDateTime(null);
  254. }
  255. else
  256. {
  257. //LYFZ.BLL.BLL_ErpSystemConfigure SystemConfigureBll = new BLL.BLL_ErpSystemConfigure();
  258. //DataTable dts = SystemConfigureBll.GetList("Sconfig_Code='AlsoClothesDay'").Tables[0];
  259. //DateTime Day = new DateTime();
  260. //if (dts.Rows.Count > 0)
  261. //{
  262. // Day = Convert.ToDateTime(txtDsro_TakeDressTime.Text).AddDays(Convert.ToDouble(dts.Rows[0]["Sconfig_Value"].ToString()));
  263. //}
  264. //else { Day = Convert.ToDateTime(txtDsro_TakeDressTime.Text); }
  265. DressSaleRentalOrderModel.Dsro_ReservationBackTime = Convert.ToDateTime(txtDsro_ReservationBackTime.Text.ToString());
  266. }
  267. DressSaleRentalOrderModel.Dsro_Remark = txtDsro_Remark.Text.Trim();
  268. DressSaleRentalOrderModel.Dsro_UpdateDateTime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime();
  269. DressSaleRentalOrderModel.Dsro_UpdateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  270. DressSaleRentalOrderModel.Dsro_CreateName = txtDsro_CreateName.Tag.ToString();
  271. DressSaleRentalOrderBll.Update(DressSaleRentalOrderModel);
  272. #endregion
  273. bl = true;
  274. MessageBoxCustom.Show("保存成功!");
  275. }
  276. catch (Exception ex)
  277. {
  278. MessageBoxCustom.Show(ex.Message);
  279. }
  280. }
  281. #endregion
  282. #region 关闭
  283. protected override void btnClose_Click(object sender, EventArgs e)
  284. {
  285. this.Close();
  286. }
  287. #endregion
  288. #region 时间输入框设置
  289. protected override void txtDsro_ReservationBackTime_Leave(object sender, EventArgs e)
  290. {
  291. if (this.txtDsro_ReservationBackTime.Text.Trim() != "")
  292. {
  293. if (LYFZ.Command.Command_Validate.IsDateTime(this.txtDsro_ReservationBackTime.Text.Trim()) == false)
  294. {
  295. this.txtDsro_ReservationBackTime.Text = "";
  296. MessageBoxCustom.Show("还回时间格式输入错误");
  297. txtDsro_ReservationBackTime.Text = Convert.ToDateTime(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime()).ToString("yyyy-MM-dd");
  298. }
  299. }
  300. }
  301. protected override void txtDsro_ReservationBackTime_Enter(object sender, EventArgs e)
  302. {
  303. if (this.txtDsro_ReservationBackTime.Text == "")
  304. {
  305. txtDsro_ReservationBackTime.Text = Convert.ToDateTime(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime()).ToString("yyyy-MM-dd");
  306. }
  307. }
  308. protected override void txtDsro_TakeDressTime_Leave(object sender, EventArgs e)
  309. {
  310. if (this.txtDsro_TakeDressTime.Text.Trim() != "")
  311. {
  312. if (LYFZ.Command.Command_Validate.IsDateTime(this.txtDsro_TakeDressTime.Text.Trim()) == false)
  313. {
  314. this.txtDsro_TakeDressTime.Text = "";
  315. MessageBoxCustom.Show("取衣时间格式输入错误");
  316. txtDsro_TakeDressTime.Text = Convert.ToDateTime(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime()).ToString("yyyy-MM-dd");
  317. }
  318. }
  319. }
  320. protected override void txtDsro_TakeDressTime_Enter(object sender, EventArgs e)
  321. {
  322. if (this.txtDsro_TakeDressTime.Text == "")
  323. {
  324. txtDsro_TakeDressTime.Text = Convert.ToDateTime(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime()).ToString("yyyy-MM-dd");
  325. }
  326. }
  327. #endregion
  328. #region 输入框设置
  329. protected override void txtDsro_MortgageAmount_KeyPress(object sender, KeyPressEventArgs e)
  330. {
  331. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  332. {
  333. e.Handled = true; //获取或设置一个值,指示是否处理过System.Windows.Forms.Control.KeyPress事件
  334. }
  335. else if (Char.IsPunctuation(e.KeyChar))
  336. {
  337. if (e.KeyChar == '.')
  338. {
  339. if (((System.Windows.Forms.TextBox)sender).Text.LastIndexOf('.') != -1)
  340. {
  341. e.Handled = true;
  342. }
  343. }
  344. else
  345. {
  346. e.Handled = true;
  347. }
  348. }
  349. }
  350. protected override void txtDsro_Amount_KeyPress(object sender, KeyPressEventArgs e)
  351. {
  352. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  353. {
  354. e.Handled = true; //获取或设置一个值,指示是否处理过System.Windows.Forms.Control.KeyPress事件
  355. }
  356. else if (Char.IsPunctuation(e.KeyChar))
  357. {
  358. if (e.KeyChar == '.')
  359. {
  360. if (((System.Windows.Forms.TextBox)sender).Text.LastIndexOf('.') != -1)
  361. {
  362. e.Handled = true;
  363. }
  364. }
  365. else
  366. {
  367. e.Handled = true;
  368. }
  369. }
  370. }
  371. #endregion
  372. #region 绑定第二级人员
  373. /// <summary>
  374. /// 绑定第二级人员
  375. /// </summary>
  376. /// <param name="nodes">TreeView的节点集合</param>
  377. /// <param name="dataSource">数据源</param>
  378. /// <param name="parentid"></param>
  379. private void CreateTreeViewDepartmentUser(TreeNodeCollection nodes, string ClassCode)
  380. {
  381. if (ClassCode != "")
  382. {
  383. LYFZ.BLL.BLL_ErpUser BLLerpuser = new BLL.BLL_ErpUser();
  384. DataTable tbl = BLLerpuser.GetList("User_Department='" + ClassCode + "' and id!='1' and User_Status='在职'").Tables[0];
  385. if (tbl.Rows.Count > 0)
  386. {
  387. TreeNode node;
  388. for (int i = 0; i < tbl.Rows.Count; i++)
  389. {
  390. node = new TreeNode();
  391. node.Text = tbl.Rows[i]["User_Name"].ToString();
  392. node.Tag = tbl.Rows[i]["User_EmployeeID"].ToString();
  393. node.Name = tbl.Rows[i]["User_Account"].ToString();
  394. nodes.Add(node);
  395. }
  396. }
  397. }
  398. }
  399. #endregion
  400. #region 选择
  401. protected override void btnSelect_Click(object sender, EventArgs e)
  402. {
  403. LYFZ.Software.MainBusiness.Dresses.FrmDressManagement set = new MainBusiness.Dresses.FrmDressManagement();
  404. set.Type = "Update";
  405. set.TakeTimeClothes = txtDsro_TakeDressTime.Text;
  406. set.ShowDialog();
  407. if (!string.IsNullOrEmpty(set.Qd))
  408. {
  409. #region 获取礼服资料
  410. LYFZ.BLL.BLL_ErpDressFrom DressFromBll = new BLL.BLL_ErpDressFrom();
  411. string[] Dsfm_DressNumbers = set.Qd.Split(',');
  412. for (int t = 0; t < Dsfm_DressNumbers.Length; t++)
  413. {
  414. DataTable dt = DressFromBll.View_tb_ErpDressFrom(" and Dsfm_DressNumber='" + Dsfm_DressNumbers[t] + "'").Tables[0];
  415. #region
  416. DataGridViewRow dgvr = new DataGridViewRow();
  417. DataGridViewCell cell = null;
  418. cell = new DataGridViewTextBoxCell();
  419. cell.Value = dt.Rows[0]["ID"].ToString().Trim();
  420. dgvr.Cells.Add(cell);
  421. cell = new DataGridViewTextBoxCell();
  422. cell.Value = dt.Rows[0]["Dsfm_DressNumber"].ToString().Trim();
  423. dgvr.Cells.Add(cell);
  424. cell = new DataGridViewTextBoxCell();
  425. cell.Value = dt.Rows[0]["Dsfm_DressName"].ToString().Trim();
  426. dgvr.Cells.Add(cell);
  427. cell = new DataGridViewTextBoxCell();
  428. cell.Value = "1";
  429. dgvr.Cells.Add(cell);
  430. cell = new DataGridViewTextBoxCell();
  431. cell.Value = dt.Rows[0]["Dsfm_CostPrice"].ToString().Trim();
  432. dgvr.Cells.Add(cell);
  433. cell = new DataGridViewTextBoxCell();
  434. cell.Value = dt.Rows[0]["Dsfm_SalePrice"].ToString().Trim();
  435. dgvr.Cells.Add(cell);
  436. this.dgv.Rows.Add(dgvr);
  437. #endregion
  438. }
  439. dgv.ClearSelection();
  440. #endregion
  441. }
  442. }
  443. #endregion
  444. #region 保存
  445. protected override void btnOk_Click(object sender, EventArgs e)
  446. {
  447. try
  448. {
  449. DataTable dt = new DataTable();
  450. string ty = "";
  451. LYFZ.BLL.BLL_ErpOrder Orderbll = new LYFZ.BLL.BLL_ErpOrder();
  452. LYFZ.BLL.BLL_ErpDressSaleRentalDetail DressSaleRentalDetailbll=new BLL.BLL_ErpDressSaleRentalDetail();
  453. LYFZ.Model.Model_ErpDressSaleRentalDetail DressSaleRentalDetailModel = new Model.Model_ErpDressSaleRentalDetail();
  454. //增加
  455. string Dsro_Number = txtDsro_Number.Text.Trim();
  456. if (dgv.Rows.Count > 0)
  457. {
  458. for (int i = 0; i < dgv.Rows.Count; i++)
  459. {
  460. string Dsfm_DressNumber = dgv.Rows[i].Cells["Dsfm_DressNumber"].Value.ToString();
  461. dt = DressSaleRentalDetailbll.GetList("Dsrd_DressNumber='" + Dsfm_DressNumber + "' and Dsrd_Number='" + Dsro_Number + "'").Tables[0];
  462. if (dt.Rows.Count <= 0)
  463. {
  464. #region 判断礼服是否撞期
  465. if (dgv.Rows.Count > 0)
  466. {
  467. DataTable dt_DressSaleRentalDetail = Orderbll.GetView_Custom("View_DressSaleRentalDetail", StrWhere: "Dsro_Type='0' and Dsrd_BackStatus='3'", ShowColumnName: "Id,Dsrd_Number,Dsrd_DressNumber,Dsrd_DressName,Dsrd_SaleRentalQuantity,Dsrd_CostPrice,Dsrd_SalePrice,Dsrd_BackTime,Dsrd_BackStatus,Dsrd_BackRemark,Dsrd_CreateDateTime,Dsrd_CreateName,Dsrd_UpdateDateTime,Dsrd_UpdateName,Dsro_Number,Dsro_Type,Dsro_Amount,Dsro_MortgageAmount,Dsro_CustomerNumber,Dsro_TakeDressTime,Dsro_ReservationBackTime,Dsro_Remark,Dsro_CreateDateTime,Dsro_CreateName,Dsro_UpdateDateTime,Dsro_UpdateName,Cus_Name,还衣天数,还衣天数取衣日期,还衣天数加还衣日期,Dsfm_RentPrice").Tables[0];
  468. for (int y = 0; y < dgv.Rows.Count; y++)
  469. {
  470. //选择取衣时间
  471. DateTime TakeClothesTime = Convert.ToDateTime(txtDsro_TakeDressTime.Text);
  472. DataRow[] row_DSRD = dt_DressSaleRentalDetail.Select(" Dsrd_DressNumber='" + Dsfm_DressNumber + "' ");
  473. if (row_DSRD.Length > 0)
  474. {
  475. for (int t = 0; t < row_DSRD.Length; t++)
  476. {
  477. DateTime StarTime = Convert.ToDateTime(row_DSRD[t]["还衣天数取衣日期"]);
  478. DateTime StarEnd = Convert.ToDateTime(row_DSRD[t]["还衣天数加还衣日期"]);
  479. if (TakeClothesTime >= StarTime && TakeClothesTime <= StarEnd)
  480. {
  481. ty = "1";
  482. }
  483. }
  484. if (ty == "1")
  485. {
  486. MessageBoxCustom.Show("(礼服编号:" + Dsfm_DressNumber + " " + " 礼服名称:" + dgv.Rows[i].Cells["Dsfm_DressName"].Value.ToString() + ") 已经撞期,无法租售");
  487. return;
  488. }
  489. }
  490. }
  491. }
  492. #endregion
  493. DressSaleRentalDetailModel.Dsrd_Number = Dsro_Number;
  494. DressSaleRentalDetailModel.Dsrd_DressNumber = dgv.Rows[i].Cells["Dsfm_DressNumber"].Value.ToString();
  495. DressSaleRentalDetailModel.Dsrd_DressName = dgv.Rows[i].Cells["Dsfm_DressName"].Value.ToString();
  496. DressSaleRentalDetailModel.Dsrd_SaleRentalQuantity = Convert.ToInt32(dgv.Rows[i].Cells["Dsfm_DressQuantity"].Value);
  497. DressSaleRentalDetailModel.Dsrd_CostPrice = Convert.ToDecimal(dgv.Rows[i].Cells["Dsfm_CostPrice"].Value);
  498. DressSaleRentalDetailModel.Dsrd_SalePrice = Convert.ToDecimal(dgv.Rows[i].Cells["Dsfm_SalePrice"].Value);
  499. DressSaleRentalDetailModel.Dsrd_CreateDateTime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime();
  500. DressSaleRentalDetailModel.Dsrd_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  501. DressSaleRentalDetailModel.Dsrd_BackTime = Convert.ToDateTime(null);
  502. DressSaleRentalDetailModel.Dsrd_BackStatus = "3";
  503. DressSaleRentalDetailModel.Dsrd_BackRemark = "";
  504. DressSaleRentalDetailbll.Add(DressSaleRentalDetailModel);
  505. }
  506. }
  507. }
  508. MessageBoxCustom.Show("保存成功!");
  509. bind();
  510. }
  511. catch (Exception ex)
  512. {
  513. MessageBoxCustom.Show(ex.Message);
  514. }
  515. }
  516. #endregion
  517. }
  518. }