DressOpenOrderRentSaleSmallForm.cs 61 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294
  1. using LYFZ.Software.MainBusiness.Dresses.DressView;
  2. using System;
  3. using System.Collections;
  4. using System.Collections.Generic;
  5. using System.ComponentModel;
  6. using System.Data;
  7. using System.Drawing;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Windows.Forms;
  11. namespace LYFZ.Software.MainBusiness.Dresses.SetSmallForm
  12. {
  13. public partial class DressOpenOrderRentSaleSmallForm : LYFZ.Software.UI.Dresses.SetSmallForm.DressOpenOrderRentSaleSmallForm
  14. {
  15. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  16. LYFZ.BLL.BLL_ErpDressFrom sfbll = new BLL.BLL_ErpDressFrom();
  17. LYFZ.BLL.BLL_ErpCustomer ctbll = new BLL.BLL_ErpCustomer();
  18. LYFZ.BLL.BLL_ErpSystemConfigure sgbll = new BLL.BLL_ErpSystemConfigure();
  19. LYFZ.BLL.BLL_ErpDressSaleRentalOrder dsrobll = new BLL.BLL_ErpDressSaleRentalOrder();
  20. LYFZ.BLL.BLL_ErpDressSaleRentalDetail dsrdbll = new BLL.BLL_ErpDressSaleRentalDetail();
  21. List<UCDressCustomer> dressCustomerList = new List<UCDressCustomer>();
  22. public DressOpenOrderRentSaleSmallForm()
  23. {
  24. this.Load += DressOpenOrderRentSaleFormMain_Load;
  25. this.Shown += DressOpenOrderRentSaleFormMain_Shown;
  26. /*this.txtClientName.KeyDown += txtClientName_KeyDown;
  27. this.txtClientName.KeyPress += txtClientName_KeyPress;
  28. this.txtClientFixedPhone.KeyPress += txtClientFixedPhone_KeyPress;
  29. this.txtClientQQ.KeyPress += txtClientQQ_KeyPress;
  30. this.txtClientWorkUnit.KeyPress += txtClientWorkUnit_KeyPress;
  31. */
  32. this.btn_AddCustomer.Click += btn_AddCustomer_Click;
  33. this.txtRentAmount.KeyPress += txtRentAmount_KeyPress;
  34. this.txtDeposit.KeyPress += txtDeposit_KeyPress;
  35. this.btnNewOrder.Click += btnNewOrder_Click;
  36. this.btnSaveed.Click += btnSaveed_Click;
  37. this.btnCloseed.Click += btnCloseed_Click;
  38. //this.btnDial.Click += btnDial_Click;
  39. //this.btnQQCall.Click += btnQQCall_Click;
  40. //this.btnClientSelect.Click += btnClientSelect_Click;
  41. this.btnDressDelete.Click += btnDressDelete_Click;
  42. this.btnDressToolbox.Click += btnDressToolbox_Click;
  43. this.FormClosing += DressOpenOrderFormMain_FormClosing;
  44. this.FormClosed += DressOpenOrderFormMain_FormClosed;
  45. //this.btn_CustomerEdit.Click += btn_CustomerEdit_Click;
  46. //btn_CustomerEdit.Visible = false;
  47. }
  48. private void btn_AddCustomer_Click( object sender, EventArgs e )
  49. {
  50. UCDressCustomer ucdressCustomer = new UCDressCustomer();
  51. panel_CustomerItem.Controls.Add( ucdressCustomer );
  52. ucdressCustomer.Location = new Point( 0, dressCustomerList.Count * 120 );
  53. ucdressCustomer.buttonForm1.Click += buttonForm1_Click;
  54. dressCustomerList.Add( ucdressCustomer );
  55. ucdressCustomer.StrOrderNumber = this.StrOrderNumber;
  56. ucdressCustomer.IsUpdateClientData = this.IsUpdateClientData;
  57. SetPanelItemHeight();
  58. }
  59. void buttonForm1_Click( object sender, EventArgs e )
  60. {
  61. if ( MessageBoxCustom.Show( "确定删除当前联系人信息?", "提示", MessageBoxButtons.YesNo )
  62. == System.Windows.Forms.DialogResult.Yes )
  63. {
  64. dressCustomerList.Remove( (UCDressCustomer)(((Control)sender).Parent) );
  65. panel_CustomerItem.Controls.Remove( ((Control)sender).Parent );
  66. SetPanelItemHeight();
  67. }
  68. }
  69. public void SetPanelItemHeight()
  70. {
  71. int height = 0;
  72. foreach ( var item in dressCustomerList )
  73. {
  74. height += 120;
  75. }
  76. panel_CustomerItem.Size = new System.Drawing.Size( panel_CustomerItem.Size.Width, height );
  77. }
  78. /*void btn_CustomerEdit_Click(object sender, EventArgs e)
  79. {
  80. LYFZ.ComponentLibrary.ButtonEx btnEx = (LYFZ.ComponentLibrary.ButtonEx)sender;
  81. if (btnEx.Text.Trim() == "编辑")
  82. {
  83. this.SetCustomerEditEnable(false);
  84. btnEx.Text = " 保存";
  85. }
  86. else if (btnEx.Text.Trim() == "保存")
  87. {
  88. if (MessageBoxCustom.Show("如果修改客户信息,当前客户所关联的订单客户信息也会有变化\n是否继续?", "提示", MessageBoxButtons.YesNo) == System.Windows.Forms.DialogResult.Yes)
  89. {
  90. LYFZ.Model.Model_ErpCustomer model = new Model.Model_ErpCustomer();
  91. BLL.BLL_ErpCustomer customerBll = new BLL.BLL_ErpCustomer();
  92. model = customerBll.GetModel("Cus_CustomerNumber", this.txtClientName.Tag.ToString().Trim());
  93. model.Cus_Name = this.txtClientName.Text.ToString().Trim();
  94. model.Cus_Telephone = this.txtClientTelephone.Text.ToString().Trim();
  95. model.Cus_QQ = this.txtClientQQ.Text.ToString().Trim();
  96. model.Cus_Address = this.txtClientAddress.Text.ToString().Trim();
  97. model.Cus_WorkUnit = this.txtClientWorkUnit.Text.ToString().Trim();
  98. model.Cus_Birthday = this.txtClientBirthday.StrValue.Trim();
  99. if (this.rdoNan.Checked)
  100. {
  101. model.Cus_Sex = false;
  102. }
  103. else
  104. {
  105. model.Cus_Sex = true;
  106. }
  107. if (this.chkClientBirthdayLunar.Checked == true)
  108. { model.Cus_BirthdayLunar = "1"; }
  109. else
  110. { model.Cus_BirthdayLunar = "0"; }
  111. model.Cus_DayForMarriage = this.txtClientDayForMarriage.StrValue.ToString();
  112. if (this.chkClientDayForMarriageLunar.Checked == true)
  113. { model.Cus_DayForMarriageLunar = "1"; }
  114. else
  115. { model.Cus_DayForMarriageLunar = "0"; }
  116. if (customerBll.Update(model))
  117. {
  118. MessageBoxCustom.Show("修改成功!");
  119. }
  120. this.SetCustomerEditEnable(true);
  121. btnEx.Text = " 编辑";
  122. }
  123. }
  124. }
  125. public void SetCustomerEditEnable(bool bRead)
  126. {
  127. this.txtClientName.ReadOnly = bRead;
  128. this.txtClientTelephone.ReadOnly = bRead;
  129. this.txtClientQQ.ReadOnly = bRead;
  130. this.txtClientAddress.ReadOnly = bRead;
  131. this.txtClientWorkUnit.ReadOnly = bRead;
  132. this.txtClientBirthday.ReadOnly = bRead;
  133. this.chkClientBirthdayLunar.Enabled = true;
  134. this.txtClientDayForMarriage.ReadOnly = bRead;
  135. this.chkClientDayForMarriageLunar.Enabled = true;
  136. this.txtClientFixedPhone.ReadOnly = bRead;
  137. }*/
  138. public string SysNumber = "";
  139. /// <summary>
  140. /// 加载类型:出租、出售
  141. /// </summary>
  142. public string LoadType = "出租";
  143. /// <summary>
  144. /// 订单号
  145. /// </summary>
  146. public string StrOrderNumber = "";
  147. /// <summary>
  148. /// 是否保存
  149. /// </summary>
  150. public bool IsSaveed = false;
  151. /// <summary>
  152. /// 相片集合
  153. /// </summary>
  154. ImageList mlistImage = new ImageList();
  155. /// <summary>
  156. /// 是否能修改客户资料
  157. /// </summary>
  158. bool IsUpdateClientData = true;
  159. /// <summary>
  160. /// 登录都编号
  161. /// </summary>
  162. string StrUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  163. /// <summary>
  164. /// 登录都姓名
  165. /// </summary>
  166. string StrUserName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  167. /// <summary>
  168. /// 用于排序的类
  169. /// </summary>
  170. LYFZ.ComponentLibrary.ListViewColumnSorter lvwColumnSorter;
  171. /// <summary>
  172. /// 窗体加载事件
  173. /// </summary>
  174. /// <param name="sender"></param>
  175. /// <param name="e"></param>
  176. void DressOpenOrderRentSaleFormMain_Load( object sender, EventArgs e )
  177. {
  178. if ( LoadType == "出售" )
  179. {
  180. this.panelDeposit.Visible = false;
  181. this.panelReservationBackTime.Visible = false;
  182. // 出售的礼服,取衣时间不是必填项;
  183. this.labelEx16.Text = "取衣时间:";
  184. }
  185. this.labelEx1.Text = LoadType + "资料";
  186. this.labelEx2.Text = "* " + LoadType + "金额";
  187. this.listViewData.View = View.Details;
  188. this.listViewData.GridLines = true;
  189. string StrDressPrice = LoadType + "价格";
  190. string[] StrColumns = ("礼服编号,礼服名称,礼服尺寸,礼服数量," + StrDressPrice + "").Split( ',' );
  191. for ( int i = 0; i < StrColumns.Length; i++ )
  192. {
  193. ColumnHeader ch = new ColumnHeader();
  194. ch.Text = StrColumns[i].Trim();
  195. ch.Width = (this.listViewData.Width - 23) / 5;
  196. if ( StrColumns[i].Trim() == StrDressPrice )
  197. {
  198. ch.TextAlign = HorizontalAlignment.Right;
  199. }
  200. else if ( StrColumns[i].Trim() == "礼服数量" )
  201. {
  202. ch.TextAlign = HorizontalAlignment.Center;
  203. }
  204. else
  205. {
  206. ch.TextAlign = HorizontalAlignment.Left;
  207. }
  208. this.listViewData.Columns.Add( ch );
  209. }
  210. this.mlistImage.ImageSize = new Size( 25, 25 );
  211. this.mlistImage.ColorDepth = ColorDepth.Depth32Bit;
  212. this.listViewData.SmallImageList = mlistImage;
  213. this.lvwColumnSorter = new ComponentLibrary.ListViewColumnSorter();
  214. this.listViewData.ListViewItemSorter = this.lvwColumnSorter;
  215. UCDressCustomer ucdressCustomer = new UCDressCustomer();
  216. ucdressCustomer.BindShowAndHideDelete( false );
  217. panel_CustomerItem.Controls.Add( ucdressCustomer );
  218. dressCustomerList.Add( ucdressCustomer );
  219. ucdressCustomer.StrOrderNumber = this.StrOrderNumber;
  220. ucdressCustomer.IsUpdateClientData = this.IsUpdateClientData;
  221. SetPanelItemHeight();
  222. }
  223. /// <summary>
  224. /// 窗体加载事件
  225. /// </summary>
  226. /// <param name="sender"></param>
  227. /// <param name="e"></param>
  228. void DressOpenOrderRentSaleFormMain_Shown( object sender, EventArgs e )
  229. {
  230. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee( this.cmbtreevOrderPerson, IsFirstNodeNull: true, IsShowResign: false, IsShowAdmin: false );
  231. if ( !string.IsNullOrEmpty( this.StrOrderNumber ) )
  232. {
  233. this.txtOrderNumber.Text = this.StrOrderNumber;
  234. this.OpenOrderData();
  235. }
  236. else
  237. {
  238. this.txtOrderNumber.Text = LYFZ.BLL.BLL_ErpOrder.GenerateNewDressNumber( LYFZ.EnumPublic.EnumDressOrderType.出租 );
  239. this.txtEnterName.Text = this.StrUserName;
  240. this.txtCreateDateTime.Text = SDateTime.Now.ToString( "yyyy-MM-dd" );
  241. //this.SysNumber = this.txtOrderNumber.Text;
  242. }
  243. this.btnSaveed.Enabled = LYFZ.BLL.BLL_ErpUser.GetRights( LYFZ.BLL.BLL_ErpUser.CurrentUserRights.DressManagement, CustomAttributes.OperatingAuthority.Dress_Rental );
  244. this.TopMost = false;
  245. this.SysNumber = this.StrOrderNumber;
  246. if ( LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.AutoDressOrderNumber )
  247. {
  248. txtOrderNumber.ReadOnly = false;
  249. }
  250. /*if (!string.IsNullOrEmpty(this.StrOrderNumber))
  251. {
  252. btn_CustomerEdit.Visible = false;
  253. }*/
  254. }
  255. /// <summary>
  256. /// 打开订单数据
  257. /// </summary>
  258. void OpenOrderData()
  259. {
  260. DataTable dtOrder = orbll.GetView_Custom( "tb_ErpDressSaleRentalOrder Left Join tb_ErpUser on User_EmployeeID = Dsro_HandledName", StrWhere: "Dsro_Number = '" + this.StrOrderNumber + "'", ShowColumnName: "Dsro_Number,Dsro_Type,Dsro_CreateName,Dsro_Amount,Dsro_MortgageAmount,Dsro_TakeDressTime,Dsro_ReservationBackTime,User_Name,Dsro_CreateDateTime,Dsro_Remark,Dsro_CustomerNumber,Dsro_AutoNumber").Tables[0];
  261. if ( dtOrder.Rows.Count > 0 )
  262. {
  263. //this.btnClientSelect.Visible = false;
  264. //this.txtClientName.Width = this.txtClientQQ.Width;
  265. this.cmbtreevOrderPerson.TagFindText( dtOrder.Rows[0]["Dsro_CreateName"] );
  266. this.txtRentAmount.Text = dtOrder.Rows[0]["Dsro_Amount"].ToString().Trim();
  267. this.txtDeposit.Text = dtOrder.Rows[0]["Dsro_MortgageAmount"].ToString().Trim();
  268. this.dtpTakeDressTime.DateValue = dtOrder.Rows[0]["Dsro_TakeDressTime"].ToString().Trim();
  269. this.dtpReservationBackTime.DateValue = LYFZ.Command.Command_Validate.DateTimeToString( dtOrder.Rows[0]["Dsro_ReservationBackTime"] );
  270. this.txtEnterName.Text = dtOrder.Rows[0]["User_Name"].ToString().Trim();
  271. this.txtCreateDateTime.Text = LYFZ.Command.Command_Validate.DateTimeToString( dtOrder.Rows[0]["Dsro_CreateDateTime"] );
  272. this.txtRemark.Text = dtOrder.Rows[0]["Dsro_Remark"].ToString().Trim();
  273. this.txtOrderNumber.Text = dtOrder.Rows[0]["Dsro_AutoNumber"].ToString().Trim();
  274. this.txtOrderNumber.Tag = dtOrder.Rows[0]["Dsro_AutoNumber"].ToString().Trim();
  275. if(string.IsNullOrEmpty(this.txtOrderNumber.Text))
  276. {
  277. this.txtOrderNumber.Text = dtOrder.Rows[0]["Dsro_Number"].ToString().Trim();
  278. this.txtOrderNumber.Tag = dtOrder.Rows[0]["Dsro_Number"].ToString().Trim();
  279. }
  280. //this.GetClientData(dtOrder.Rows[0]["Dsro_CustomerNumber"].ToString().Trim());
  281. string[] customerList = dtOrder.Rows[0]["Dsro_CustomerNumber"].ToString().Trim().Split( ',' );
  282. if ( customerList.Length > 1 )
  283. {
  284. for ( int i = 1; i < customerList.Length; i++ )
  285. {
  286. UCDressCustomer ucdressCustomer = new UCDressCustomer();
  287. ucdressCustomer.Location = new Point( 0, dressCustomerList.Count * 120 );
  288. panel_CustomerItem.Controls.Add( ucdressCustomer );
  289. ucdressCustomer.buttonForm1.Click += buttonForm1_Click;
  290. dressCustomerList.Add( ucdressCustomer );
  291. ucdressCustomer.StrOrderNumber = this.StrOrderNumber;
  292. ucdressCustomer.IsUpdateClientData = this.IsUpdateClientData;
  293. SetPanelItemHeight();
  294. }
  295. }
  296. for ( int i = 0; i < customerList.Length; i++ )
  297. {
  298. dressCustomerList[i].GetClientData( customerList[i] );
  299. dressCustomerList[i].ReBindOrderNumber();
  300. }
  301. this.IsUpdateClientData = false;
  302. DataTable dt = orbll.GetView_Custom( "tb_ErpDressSaleRentalDetail Left Join tb_ErpDressFrom on Dsfm_DressNumber = Dsrd_DressNumber", StrWhere: "Dsrd_Number = '" + this.StrOrderNumber + "'", ShowColumnName: "tb_ErpDressSaleRentalDetail.ID,Dsrd_DressNumber,Dsfm_DressCustomNumber,Dsrd_DressName,Dsfm_DressSize,Dsrd_CostPrice,Dsrd_RentPrice,Dsrd_SalePrice,Dsfm_DressPhotoNames" ).Tables[0];
  303. for ( int i = 0; i < dt.Rows.Count; i++ )
  304. {
  305. string[] StrArrayList = dt.Rows[i]["Dsfm_DressPhotoNames"].ToString().Trim().Split( '|' );
  306. if ( !this.mlistImage.Images.Keys.Contains( dt.Rows[i]["Dsrd_DressNumber"].ToString().Trim() ) )
  307. {
  308. Image img = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDressImage_Small( StrArrayList[0].Trim() );
  309. try
  310. {
  311. this.Invoke( new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl( delegate ()
  312. {
  313. this.mlistImage.Images.Add( dt.Rows[i]["Dsrd_DressNumber"].ToString().Trim(), img );
  314. } ) );
  315. }
  316. catch
  317. {
  318. }
  319. }
  320. ListViewItem lvItem = new ListViewItem();
  321. LYFZ.Software.MainBusiness.Dresses.SetSmallForm.DressOpenOrderRentSaleFormMain_ColumnHeaderModel modelColumn = new DressOpenOrderRentSaleFormMain_ColumnHeaderModel();
  322. modelColumn.StrDressNumber = dt.Rows[i]["Dsrd_DressNumber"].ToString().Trim();
  323. modelColumn.StrCostPrice = dt.Rows[i]["Dsrd_CostPrice"].ToString().Trim();
  324. modelColumn.StrDressPhotoNames = dt.Rows[i]["Dsfm_DressPhotoNames"].ToString().Trim();
  325. modelColumn.ID = Convert.ToInt32( dt.Rows[i]["ID"] );
  326. lvItem.Tag = modelColumn;
  327. lvItem.ImageKey = dt.Rows[i]["Dsrd_DressNumber"].ToString().Trim();
  328. lvItem.Text = dt.Rows[i]["Dsfm_DressCustomNumber"].ToString().Trim();
  329. ListViewItem.ListViewSubItem ListSubItem = new ListViewItem.ListViewSubItem();
  330. ListSubItem.Name = "礼服名称";
  331. ListSubItem.Text = dt.Rows[i]["Dsrd_DressName"].ToString().Trim();
  332. lvItem.SubItems.Add( ListSubItem );
  333. ListSubItem = new ListViewItem.ListViewSubItem();
  334. ListSubItem.Name = "礼服尺寸";
  335. ListSubItem.Text = dt.Rows[i]["Dsfm_DressSize"].ToString().Trim();
  336. lvItem.SubItems.Add( ListSubItem );
  337. ListSubItem = new ListViewItem.ListViewSubItem();
  338. ListSubItem.Name = "礼服数量";
  339. ListSubItem.Text = "1";
  340. lvItem.SubItems.Add( ListSubItem );
  341. ListSubItem = new ListViewItem.ListViewSubItem();
  342. ListSubItem.Name = this.LoadType + "价格";
  343. if ( this.LoadType == "出租" )
  344. {
  345. ListSubItem.Text = dt.Rows[i]["Dsrd_RentPrice"].ToString().Trim();
  346. }
  347. else
  348. {
  349. ListSubItem.Text = dt.Rows[i]["Dsrd_SalePrice"].ToString().Trim();
  350. }
  351. lvItem.SubItems.Add( ListSubItem );
  352. this.listViewData.Items.Add( lvItem );
  353. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.ListViewDrawSingleOrDoubleRows( this.listViewData );
  354. }
  355. if ( this.listViewData.Items.Count > 0 && dtOrder.Rows[0]["Dsro_Type"].ToString().Trim() != "2" )
  356. {
  357. this.dtpTakeDressTime.Enabled = false;
  358. }
  359. else
  360. {
  361. this.dtpTakeDressTime.Enabled = true;
  362. }
  363. }
  364. }
  365. /* /// <summary>
  366. /// 清空选择的客户
  367. /// </summary>
  368. /// <param name="sender"></param>
  369. /// <param name="e"></param>
  370. void txtClientName_KeyDown(object sender, KeyEventArgs e)
  371. {
  372. if (e.KeyCode == Keys.Back)
  373. {
  374. if (this.txtClientName.Tag != null && string.IsNullOrEmpty(this.StrOrderNumber) && this.IsUpdateClientData)
  375. { this.ClearClientData(); }
  376. }
  377. }
  378. /// <summary>
  379. /// 清空客户信息
  380. /// </summary>
  381. void ClearClientData()
  382. {
  383. this.txtClientName.Text = "";
  384. this.txtClientName.Tag = null;
  385. this.txtClientTelephone.Text = "";
  386. this.txtClientFixedPhone.Text = "";
  387. this.txtClientQQ.Text = "";
  388. this.txtClientAddress.Text = "";
  389. this.txtClientWorkUnit.Text = "";
  390. this.txtClientBirthday.Text = "";
  391. this.chkClientBirthdayLunar.Checked = false;
  392. this.txtClientDayForMarriage.Text = "";
  393. this.chkClientDayForMarriageLunar.Checked = false;
  394. this.txtClientName.ReadOnly = false;
  395. this.txtClientTelephone.ReadOnly = false;
  396. this.txtClientQQ.ReadOnly = false;
  397. this.txtClientAddress.ReadOnly = false;
  398. this.txtClientWorkUnit.ReadOnly = false;
  399. this.txtClientBirthday.ReadOnly = false;
  400. this.chkClientBirthdayLunar.Enabled = true;
  401. this.txtClientDayForMarriage.ReadOnly = false;
  402. this.chkClientDayForMarriageLunar.Enabled = true;
  403. this.txtClientFixedPhone.ReadOnly = false;
  404. btn_CustomerEdit.Visible = false;
  405. btn_CustomerEdit.Text = " 编辑";
  406. }
  407. /// <summary>
  408. /// 客户姓名输入限制
  409. /// </summary>
  410. /// <param name="sender"></param>
  411. /// <param name="e"></param>
  412. void txtClientName_KeyPress(object sender, KeyPressEventArgs e)
  413. {
  414. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar) && !Char.IsLetterOrDigit(e.KeyChar) && e.KeyChar != '_' && e.KeyChar != ' ')
  415. { e.Handled = true; }
  416. }
  417. /// <summary>
  418. /// 客户固定电话输入限制
  419. /// </summary>
  420. /// <param name="sender"></param>
  421. /// <param name="e"></param>
  422. void txtClientFixedPhone_KeyPress(object sender, KeyPressEventArgs e)
  423. {
  424. if (Convert.ToString(e.KeyChar) == "-")
  425. { }
  426. else if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  427. { e.Handled = true; }
  428. }
  429. /// <summary>
  430. /// 客户QQ输入限制
  431. /// </summary>
  432. /// <param name="sender"></param>
  433. /// <param name="e"></param>
  434. void txtClientQQ_KeyPress(object sender, KeyPressEventArgs e)
  435. {
  436. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  437. { e.Handled = true; }
  438. }
  439. /// <summary>
  440. /// 客户工作单位输入限制
  441. /// </summary>
  442. /// <param name="sender"></param>
  443. /// <param name="e"></param>
  444. void txtClientWorkUnit_KeyPress(object sender, KeyPressEventArgs e)
  445. {
  446. if (Convert.ToString(e.KeyChar) == "-")
  447. { }
  448. else if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar) && !Char.IsLetterOrDigit(e.KeyChar))
  449. { e.Handled = true; }
  450. }*/
  451. /// <summary>
  452. /// 订单押金输入限制
  453. /// </summary>
  454. /// <param name="sender"></param>
  455. /// <param name="e"></param>
  456. void txtDeposit_KeyPress( object sender, KeyPressEventArgs e )
  457. {
  458. if ( Convert.ToString( e.KeyChar ) == "." )
  459. {
  460. }
  461. else if ( !Char.IsNumber( e.KeyChar ) && !Char.IsControl( e.KeyChar ) )
  462. {
  463. e.Handled = true;
  464. }
  465. }
  466. /// <summary>
  467. /// 订单出租金额、出售金额输入限制
  468. /// </summary>
  469. /// <param name="sender"></param>
  470. /// <param name="e"></param>
  471. void txtRentAmount_KeyPress( object sender, KeyPressEventArgs e )
  472. {
  473. if ( Convert.ToString( e.KeyChar ) == "." )
  474. {
  475. }
  476. else if ( !Char.IsNumber( e.KeyChar ) && !Char.IsControl( e.KeyChar ) )
  477. {
  478. e.Handled = true;
  479. }
  480. }
  481. /// <summary>
  482. /// 新订单
  483. /// </summary>
  484. /// <param name="sender"></param>
  485. /// <param name="e"></param>
  486. void btnNewOrder_Click( object sender, EventArgs e )
  487. {
  488. if ( MessageBoxCustom.Show( "重置后将清空所有数据,您确定要重置新订单吗?", "温馨提示", MessageBoxButtons.YesNo ) == DialogResult.Yes )
  489. {
  490. this.IsGoForm = true;
  491. this.Close();
  492. }
  493. }
  494. Hashtable htData_del = new Hashtable();
  495. /// <summary>
  496. /// 保存
  497. /// </summary>
  498. /// <param name="sender"></param>
  499. /// <param name="e"></param>
  500. void btnSaveed_Click( object sender, EventArgs e )
  501. {
  502. LYFZ.Model.Model_ErpDressSaleRentalOrder DressRentalModel = null;
  503. LYFZ.Model.Model_ErpDressSaleRentalDetail DressRentalDetailModel = null;
  504. if ( !string.IsNullOrEmpty( StrOrderNumber ) )
  505. {
  506. DataTable dt = orbll.GetView_Custom( "BView_DressOrderReport", StrWhere: "订单号 = '" + this.StrOrderNumber + "'", ShowColumnName: "订单状态" ).Tables[0];
  507. if ( dt.Rows.Count > 0 )
  508. {
  509. if ( dt.Rows[0]["订单状态"].ToString().Trim() == "OK" )
  510. {
  511. MessageBoxCustom.Show( "订单已完成,不能修改!若要操作建议重新开新单!" ); return;
  512. }
  513. }
  514. }
  515. #region 判断输入框不能为空
  516. if ( string.IsNullOrEmpty( this.txtOrderNumber.Text.Trim() ) )
  517. {
  518. MessageBoxCustom.Show( "单号不能为空!" ); return;
  519. }
  520. if ( string.IsNullOrEmpty( this.dtpTakeDressTime.DateValue ) && (LoadType != "出售") )
  521. {
  522. MessageBoxCustom.Show( "取衣时间不能为空!" ); return;
  523. }
  524. if ( string.IsNullOrEmpty( this.txtRentAmount.Text.Trim() ) )
  525. {
  526. MessageBoxCustom.Show( this.LoadType + "金额不能为空!" ); return;
  527. }
  528. else
  529. {
  530. try
  531. {
  532. Convert.ToDecimal( this.txtRentAmount.Text.Trim() );
  533. }
  534. catch
  535. {
  536. MessageBoxCustom.Show( this.LoadType + "金额输入的金额不正确!" ); return;
  537. }
  538. }
  539. if ( string.IsNullOrEmpty( this.cmbtreevOrderPerson.Text.Trim() ) )
  540. {
  541. MessageBoxCustom.Show( "销售人员不能为空!" ); return;
  542. }
  543. foreach ( var item in dressCustomerList )
  544. {
  545. LYFZ.Command.Result result = item.CheckCustomerData();
  546. if ( !result.Status )
  547. {
  548. return;
  549. }
  550. }
  551. #endregion
  552. #region 判断礼服是否撞期
  553. if ( this.listViewData.Items.Count > 0 )
  554. {
  555. if ( (LoadType != "出售") )
  556. {
  557. string StrDressClash = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.IsDressClashDateTime( this.listViewData, Convert.ToDateTime( this.dtpTakeDressTime.DateValue ) );
  558. if ( !string.IsNullOrEmpty( StrDressClash ) )
  559. {
  560. MessageBoxCustom.Show( StrDressClash ); return;
  561. }
  562. }
  563. //string StrDressClash = "";
  564. //DataTable dt_DressSaleRentalDetail = orbll.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];
  565. //for (int i = 0; i < this.listViewData.Items.Count; i++)
  566. //{
  567. // //选择取衣时间
  568. // DateTime TakeClothesTime = Convert.ToDateTime(this.dtpTakeDressTime.DateValue);
  569. // //礼服编号
  570. // string Dsfm_DressNumber = this.listViewData.Items[i].Tag.ToString().Trim();
  571. // DataRow[] row_DSRD = dt_DressSaleRentalDetail.Select(" Dsrd_DressNumber='" + Dsfm_DressNumber + "' ");
  572. // if (row_DSRD.Length > 0)
  573. // {
  574. // bool isFind = false;
  575. // for (int t = 0; t < row_DSRD.Length; t++)
  576. // {
  577. // if (TakeClothesTime >= Convert.ToDateTime(row_DSRD[t]["还衣天数取衣日期"]) && TakeClothesTime <= Convert.ToDateTime(row_DSRD[t]["还衣天数加还衣日期"]))
  578. // { isFind = true; }
  579. // }
  580. // if (isFind)
  581. // { StrDressClash += "礼服编号:" + Dsfm_DressNumber + " " + " 礼服名称:" + this.listViewData.Items[i].SubItems["礼服名称"].Text.Trim() + "\r\n"; }
  582. // }
  583. //}
  584. //if (!string.IsNullOrEmpty(StrDressClash))
  585. //{ MessageBoxCustom.Show(StrDressClash + "已经撞期,无法租售!"); return; }
  586. }
  587. else
  588. {
  589. MessageBoxCustom.Show( "礼服资料不能为空!请选择礼服!" ); return;
  590. }
  591. #endregion
  592. DateTime StrTime = SDateTime.Now;
  593. List<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
  594. #region 客户
  595. string StrClientNumber = "";
  596. string StrClientName = "";
  597. string StrClientTelephone = "";
  598. #region 客户
  599. int indx = 1;
  600. foreach ( var item in dressCustomerList )
  601. {
  602. LYFZ.Command.Result result = item.SaveCustomerData( ref StrClientName, ref StrClientTelephone, indx );
  603. if ( result.Status )
  604. {
  605. if ( !string.IsNullOrEmpty( StrClientNumber ) )
  606. {
  607. StrClientNumber += ",";
  608. }
  609. StrClientNumber += result.StatusMsg;
  610. indx++;
  611. clist.AddRange( ((LYFZ.Command.Result<List<Helper.CommandInfo>>)result).clist );
  612. }
  613. else
  614. {
  615. return;
  616. }
  617. }
  618. #endregion
  619. /*if (this.txtClientName.Tag != null)
  620. { StrClientNumber = this.txtClientName.Tag.ToString().Trim(); }
  621. else
  622. {
  623. if (ctbll.Exists("Cus_Telephone", StrTelephone) == true)//判断手机存在
  624. { MessageBoxCustom.Show("客户手机已经存在"); return; }
  625. LYFZ.Model.Model_ErpCustomer model = new Model.Model_ErpCustomer();
  626. model.Cus_CustomerNumber = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().ToString("yyyyMMddHHmmssfff") + "1";//获取新编号
  627. model.Cus_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  628. model.Cus_CustomizeNumber = "";
  629. model.Cus_Type = "订单客户";
  630. model.Cus_ServiceType = "Clothing";
  631. model.Cus_Name = this.txtClientName.Text.ToString().Trim();
  632. model.Cus_Telephone = this.txtClientTelephone.Text.ToString().Trim();
  633. model.Cus_QQ = this.txtClientQQ.Text.ToString().Trim();
  634. model.Cus_Address = this.txtClientAddress.Text.ToString().Trim();
  635. model.Cus_WorkUnit = this.txtClientWorkUnit.Text.ToString().Trim();
  636. model.Cus_Birthday = this.txtClientBirthday.StrValue.Trim();
  637. if (this.rdoNan.Checked)
  638. {
  639. model.Cus_Sex = false;
  640. }
  641. else {
  642. model.Cus_Sex = true;
  643. }
  644. if (this.chkClientBirthdayLunar.Checked == true)
  645. { model.Cus_BirthdayLunar = "1"; }
  646. else
  647. { model.Cus_BirthdayLunar = "0"; }
  648. model.Cus_DayForMarriage = this.txtClientDayForMarriage.StrValue.ToString();
  649. if (this.chkClientDayForMarriageLunar.Checked == true)
  650. { model.Cus_DayForMarriageLunar = "1"; }
  651. else
  652. { model.Cus_DayForMarriageLunar = "0"; }
  653. model.Cus_CreateDateTime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime();
  654. model.Cus_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  655. clist.Add(ctbll.GetAddCommandInfo(model));
  656. StrClientNumber = model.Cus_CustomerNumber;
  657. }*/
  658. #endregion
  659. #region 检查自定义单号是否存在
  660. if ( LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.AutoDressOrderNumber )
  661. {
  662. DataTable tbl = orbll.GetView_Custom( "tb_ErpDressSaleRentalOrder", StrWhere: "Dsro_AutoNumber = '" + this.txtOrderNumber.Text + "'", ShowColumnName: "ID" ).Tables[0];
  663. if ( string.IsNullOrEmpty( StrOrderNumber ) )
  664. {
  665. if ( tbl.Rows.Count > 0 )
  666. {
  667. MessageBoxCustom.Show( "自定义单号重复!" ); return;
  668. }
  669. }
  670. else
  671. {
  672. if ( this.txtOrderNumber.Text == (this.txtOrderNumber.Tag == null ? "" : this.txtOrderNumber.Tag.ToString()) )
  673. {
  674. if ( tbl.Rows.Count > 1 )
  675. {
  676. MessageBoxCustom.Show( "自定义单号重复!" ); return;
  677. }
  678. }
  679. else
  680. {
  681. if ( tbl.Rows.Count > 0 )
  682. {
  683. MessageBoxCustom.Show( "自定义单号重复!" ); return;
  684. }
  685. }
  686. }
  687. }
  688. #endregion
  689. #region 检测订单号是否有存在
  690. if ( string.IsNullOrEmpty( SysNumber ) )
  691. {
  692. bool IsFind = true;
  693. while ( IsFind )
  694. {
  695. if ( string.IsNullOrEmpty( SysNumber ) )
  696. {
  697. SysNumber = LYFZ.BLL.BLL_ErpOrder.GenerateNewDressNumber( LYFZ.EnumPublic.EnumDressOrderType.出租 );
  698. if ( !LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.AutoDressOrderNumber )
  699. {
  700. this.txtOrderNumber.Text = SysNumber;
  701. }
  702. }
  703. DataTable tbl = orbll.GetView_Custom( "tb_ErpDressSaleRentalOrder", StrWhere: "Dsro_Number = '" + SysNumber + "'", ShowColumnName: "ID" ).Tables[0];
  704. if ( tbl.Rows.Count <= 0 )
  705. {
  706. IsFind = false;
  707. }
  708. else
  709. { //this.txtOrderNumber.Text
  710. SysNumber = LYFZ.BLL.BLL_ErpOrder.GenerateNewDressNumber( LYFZ.EnumPublic.EnumDressOrderType.出租 );
  711. if ( !LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.AutoDressOrderNumber )
  712. {
  713. this.txtOrderNumber.Text = SysNumber;
  714. }
  715. }
  716. }
  717. }
  718. #endregion
  719. //#region 检测订单号是否有存在
  720. //if (string.IsNullOrEmpty(this.StrOrderNumber))
  721. //{
  722. // bool IsFind = true;
  723. // while (IsFind)
  724. // {
  725. // DataTable tbl = orbll.GetView_Custom("tb_ErpDressSaleRentalOrder", StrWhere: "Dsro_Number = '" + this.txtOrderNumber.Text.Trim() + "'", ShowColumnName: "ID").Tables[0];
  726. // if (tbl.Rows.Count <= 0)
  727. // { IsFind = false; }
  728. // else
  729. // { this.txtOrderNumber.Text = LYFZ.BLL.BLL_ErpOrder.GenerateNewDressNumber(LYFZ.EnumPublic.EnumDressOrderType.出租); }
  730. // }
  731. //}
  732. //#endregion
  733. #region 出租检测
  734. if ( this.LoadType == "出租" )
  735. {
  736. if ( string.IsNullOrEmpty( this.txtDeposit.Text.Trim() ) )
  737. {
  738. MessageBoxCustom.Show( "押金不能为空!" ); return;
  739. }
  740. else
  741. {
  742. try { Convert.ToDecimal( this.txtDeposit.Text.Trim() ); }
  743. catch { MessageBoxCustom.Show( this.LoadType + "金额输入的金额不正确!" ); return; }
  744. }
  745. if ( string.IsNullOrEmpty( this.dtpReservationBackTime.DateValue.Trim() ) )
  746. {
  747. MessageBoxCustom.Show( "还回时间不能为空!" ); return;
  748. }
  749. if ( !string.IsNullOrEmpty( this.dtpTakeDressTime.DateValue.Trim() ) && !string.IsNullOrEmpty( this.dtpReservationBackTime.DateValue.Trim() ) )
  750. {
  751. if ( Convert.ToDateTime( this.dtpTakeDressTime.DateValue.Trim() ) > Convert.ToDateTime( this.dtpReservationBackTime.DateValue.Trim() ) )
  752. {
  753. MessageBoxCustom.Show( "取衣时间必须小于还衣时间!" );
  754. return;
  755. }
  756. }
  757. }
  758. #endregion
  759. #region 租售订单数据
  760. if ( !string.IsNullOrEmpty( StrOrderNumber ) )
  761. {
  762. DressRentalModel = dsrobll.GetModel( "Dsro_Number", this.StrOrderNumber );
  763. DressRentalModel.Dsro_UpdateDateTime = StrTime;
  764. DressRentalModel.Dsro_UpdateName = this.StrUserID;
  765. DressRentalModel.Dsro_CustomerNumber = StrClientNumber;
  766. }
  767. else
  768. {
  769. DressRentalModel = new Model.Model_ErpDressSaleRentalOrder();
  770. DressRentalModel.Dsro_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  771. DressRentalModel.Dsro_Number = SysNumber;
  772. DressRentalModel.Dsro_CustomerNumber = StrClientNumber;
  773. DressRentalModel.Dsro_CreateDateTime = StrTime;
  774. DressRentalModel.Dsro_CreateName = this.cmbtreevOrderPerson.Tag.ToString().Trim();
  775. DressRentalModel.Dsro_HandledName = this.StrUserID;
  776. }
  777. DressRentalModel.Dsro_CustomerName = StrClientName;
  778. DressRentalModel.Dsro_CustomerTelephone = StrClientTelephone;
  779. DressRentalModel.Dsro_AutoNumber = this.txtOrderNumber.Text;
  780. if ( this.LoadType == "出租" )
  781. {
  782. DressRentalModel.Dsro_Type = "0";
  783. DressRentalModel.Dsro_MortgageAmount = Convert.ToDecimal( this.txtDeposit.Text.Trim() );
  784. DressRentalModel.Dsro_ReservationBackTime = Convert.ToDateTime( this.dtpReservationBackTime.DateValue.Trim() );
  785. }
  786. else if ( this.LoadType == "出售" )
  787. {
  788. DressRentalModel.Dsro_Type = "1";
  789. DressRentalModel.Dsro_MortgageAmount = 0;
  790. DressRentalModel.Dsro_ReservationBackTime = Convert.ToDateTime( null );
  791. }
  792. DressRentalModel.Dsro_Amount = Convert.ToDecimal( this.txtRentAmount.Text.Trim() );
  793. if ( LoadType != "出售" )
  794. DressRentalModel.Dsro_TakeDressTime = Convert.ToDateTime( this.dtpTakeDressTime.DateValue.Trim() );
  795. DressRentalModel.Dsro_Remark = this.txtRemark.Text.Trim();
  796. if ( !string.IsNullOrEmpty( StrOrderNumber ) )
  797. {
  798. clist.Add( dsrobll.GetUpdateCommandInfo( (DressRentalModel) ) );
  799. }
  800. else
  801. {
  802. clist.Add( dsrobll.GetAddCommandInfo( (DressRentalModel) ) );
  803. }
  804. #endregion
  805. #region 租售礼服详情表
  806. foreach ( DictionaryEntry item in htData_del )
  807. {
  808. clist.Add( dsrdbll.GetDeleteCommandInfo( "ID", "=", item.Key.ToString().Trim() ) );
  809. if ( this.LoadType == "出售" )
  810. {
  811. LYFZ.Model.Model_ErpDressFrom modelDress = sfbll.GetModel( "Dsfm_DressNumber", item.Value.ToString().Trim() );
  812. modelDress.Dsfm_DressQuantity += 1;
  813. clist.Add( sfbll.GetUpdateCommandInfo( modelDress ) );
  814. }
  815. }
  816. for ( int i = 0; i < this.listViewData.Items.Count; i++ )
  817. {
  818. LYFZ.Software.MainBusiness.Dresses.SetSmallForm.DressOpenOrderRentSaleFormMain_ColumnHeaderModel modelColumns = (DressOpenOrderRentSaleFormMain_ColumnHeaderModel)this.listViewData.Items[i].Tag;
  819. if ( modelColumns.ID <= 0 )
  820. {
  821. DressRentalDetailModel = new Model.Model_ErpDressSaleRentalDetail();
  822. DressRentalDetailModel.Dsrd_Number = DressRentalModel.Dsro_Number;
  823. DressRentalDetailModel.Dsrd_DressNumber = this.listViewData.Items[i].ImageKey.ToString().Trim();
  824. DressRentalDetailModel.Dsrd_DressName = this.listViewData.Items[i].SubItems["礼服名称"].Text.Trim();
  825. DressRentalDetailModel.Dsrd_SaleRentalQuantity = Convert.ToInt32( this.listViewData.Items[i].SubItems["礼服数量"].Text.Trim() );
  826. DressRentalDetailModel.Dsrd_CostPrice = Convert.ToDecimal( modelColumns.StrCostPrice );
  827. DressRentalDetailModel.Dsrd_CreateDateTime = StrTime;
  828. DressRentalDetailModel.Dsrd_CreateName = StrUserID;
  829. DressRentalDetailModel.Dsrd_TakeDressTime = DressRentalModel.Dsro_TakeDressTime;
  830. DressRentalDetailModel.Dsrd_BackTime = Convert.ToDateTime( null );
  831. DressRentalDetailModel.Dsrd_BackRemark = "";
  832. if ( this.LoadType == "出售" )
  833. {
  834. DressRentalDetailModel.Dsrd_SalePrice = Convert.ToDecimal( this.listViewData.Items[i].SubItems[this.LoadType + "价格"].Text.Trim() );
  835. DressRentalDetailModel.Dsrd_RentPrice = 0;
  836. DressRentalDetailModel.Dsrd_BackStatus = "";
  837. LYFZ.Model.Model_ErpDressFrom modelDress = sfbll.GetModel( "Dsfm_DressNumber", this.listViewData.Items[i].ImageKey.ToString().Trim() );
  838. modelDress.Dsfm_DressQuantity -= 1;
  839. clist.Add( sfbll.GetUpdateCommandInfo( modelDress ) );
  840. }
  841. else
  842. {
  843. DressRentalDetailModel.Dsrd_SalePrice = 0;
  844. DressRentalDetailModel.Dsrd_RentPrice = Convert.ToDecimal( this.listViewData.Items[i].SubItems[this.LoadType + "价格"].Text.Trim() );
  845. DressRentalDetailModel.Dsrd_BackStatus = "3";
  846. }
  847. clist.Add( dsrdbll.GetAddCommandInfo( DressRentalDetailModel ) );
  848. }
  849. }
  850. #endregion
  851. if ( clist.Count > 0 )
  852. {
  853. if ( MessageBoxCustom.Show( "您确定要保存吗?", "温馨提示", MessageBoxButtons.YesNo ) == DialogResult.No )
  854. {
  855. return;
  856. }
  857. if ( LYFZ.BLL.BaseBllOperate.ExecuteSqlTran( clist ) > 0 )
  858. {
  859. this.IsSaveed = true;
  860. this.StrOrderNumber = this.SysNumber;
  861. System.Threading.Thread t = new System.Threading.Thread( new System.Threading.ThreadStart( delegate ()
  862. {
  863. Model.SMSParameters sparameters = new Model.SMSParameters();
  864. sparameters.OrderNumber = this.StrOrderNumber;
  865. if ( this.LoadType == "出租" )
  866. {
  867. new LYFZ.BLL.BLL_SMSTemplates().GenerateEventSMS( EnumPublic.SmsSendEvent.礼服出租订单后X分钟, sparameters, MainBusiness.CommonLogical.SuccessfulLogin.CurrentCompanyInfoID );
  868. }
  869. else
  870. {
  871. new LYFZ.BLL.BLL_SMSTemplates().GenerateEventSMS( EnumPublic.SmsSendEvent.礼服出售订单后X分钟, sparameters, MainBusiness.CommonLogical.SuccessfulLogin.CurrentCompanyInfoID );
  872. }
  873. } ) );
  874. t.Start();
  875. if ( LYFZ.BLL.BLL_ErpUser.GetRights( LYFZ.BLL.BLL_ErpUser.CurrentUserRights.DressManagement, CustomAttributes.OperatingAuthority.ReceivablesAll ) )
  876. {
  877. LYFZ.Software.MainBusiness.Dresses.DressManagement.Rental.FrmPayment frm = new DressManagement.Rental.FrmPayment();
  878. frm.StrOrderNumber = this.StrOrderNumber;
  879. frm.ShowDialog();
  880. }
  881. else
  882. {
  883. MessageBoxCustom.Show( "保存成功" );
  884. }
  885. for ( int i = 0; i < this.listViewData.Items.Count; i++ )
  886. {
  887. this.listViewData.Items[i].ForeColor = Color.Black;
  888. }
  889. }
  890. else
  891. {
  892. MessageBoxCustom.Show( "保存失败!" );
  893. }
  894. }
  895. }
  896. /// <summary>
  897. /// 关闭
  898. /// </summary>
  899. /// <param name="sender"></param>
  900. /// <param name="e"></param>
  901. void btnCloseed_Click( object sender, EventArgs e )
  902. {
  903. isClose = false;
  904. if ( !isClose )
  905. {
  906. if ( MessageBoxCustom.Show( "你确定要关闭吗?", "温馨提示", MessageBoxButtons.YesNo ) == DialogResult.No )
  907. {
  908. return;
  909. }
  910. }
  911. this.Close();
  912. }
  913. /*/// <summary>
  914. /// 拨打电话
  915. /// </summary>
  916. /// <param name="sender"></param>
  917. /// <param name="e"></param>
  918. void btnDial_Click(object sender, EventArgs e)
  919. {
  920. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.PhoneCall(LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.MaskedTextBoxExGetText(this.txtClientTelephone));
  921. }
  922. /// <summary>
  923. /// QQ呼叫
  924. /// </summary>
  925. /// <param name="sender"></param>
  926. /// <param name="e"></param>
  927. void btnQQCall_Click(object sender, EventArgs e)
  928. {
  929. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.QQCall(this.txtClientQQ.Text.Trim());
  930. }*/
  931. /// <summary>
  932. /// 选择客户
  933. /// </summary>
  934. /// <param name="sender"></param>
  935. /// <param name="e"></param>
  936. void btnClientSelect_Click( object sender, EventArgs e )
  937. {
  938. LYFZ.Software.MainBusiness.Dresses.DressManagement.FrmCusSelect frm = new DressManagement.FrmCusSelect();
  939. frm.ShowDialog();
  940. //if (!string.IsNullOrEmpty(frm.StrClientNumber))
  941. //{ this.GetClientData(frm.StrClientNumber); }
  942. }
  943. /*/// <summary>
  944. /// 获取客户资料
  945. /// </summary>
  946. /// <param name="StrClientNumber"></param>
  947. /// <returns></returns>
  948. void GetClientData(string StrClientNumber)
  949. {
  950. if (!string.IsNullOrEmpty(StrClientNumber))
  951. {
  952. DataTable dt = orbll.GetView_Custom("tb_ErpCustomer", StrWhere: "Cus_CustomerNumber='" + StrClientNumber + "'", ShowColumnName: "Cus_Name,Cus_Sex,Cus_CustomerNumber,Cus_Telephone,Cus_FixedPhone,Cus_QQ,Cus_Address,Cus_WorkUnit,Cus_Birthday,Cus_BirthdayLunar,Cus_DayForMarriage,Cus_DayForMarriageLunar").Tables[0];
  953. if (dt.Rows.Count > 0)
  954. {
  955. this.txtClientName.Text = dt.Rows[0]["Cus_Name"].ToString().Trim();
  956. this.txtClientName.Tag = dt.Rows[0]["Cus_CustomerNumber"].ToString().Trim();
  957. this.txtClientTelephone.Text = dt.Rows[0]["Cus_Telephone"].ToString().Trim();
  958. this.txtClientFixedPhone.Text = dt.Rows[0]["Cus_FixedPhone"].ToString().Trim();
  959. this.txtClientQQ.Text = dt.Rows[0]["Cus_QQ"].ToString().Trim();
  960. this.txtClientAddress.Text = dt.Rows[0]["Cus_Address"].ToString().Trim();
  961. this.txtClientWorkUnit.Text = dt.Rows[0]["Cus_WorkUnit"].ToString().Trim();
  962. this.txtClientBirthday.Text = dt.Rows[0]["Cus_Birthday"].ToString().Trim();
  963. if (dt.Rows[0]["Cus_BirthdayLunar"].ToString().Trim() == "1")
  964. { this.chkClientBirthdayLunar.Checked = true; }
  965. else
  966. { this.chkClientBirthdayLunar.Checked = false; }
  967. this.txtClientDayForMarriage.Text = dt.Rows[0]["Cus_DayForMarriage"].ToString().Trim();
  968. if (dt.Rows[0]["Cus_DayForMarriageLunar"].ToString().Trim() == "1")
  969. { this.chkClientDayForMarriageLunar.Checked = true; }
  970. else
  971. { this.chkClientDayForMarriageLunar.Checked = false; }
  972. if (dt.Rows[0]["Cus_Sex"].ToString().Trim() == "1")
  973. {
  974. this.rdoNv.Checked = true;
  975. }
  976. else {
  977. this.rdoNan.Checked = true;
  978. }
  979. this.txtClientName.ReadOnly = true;
  980. this.txtClientTelephone.ReadOnly = true;
  981. this.txtClientQQ.ReadOnly = true;
  982. this.txtClientAddress.ReadOnly = true;
  983. this.txtClientWorkUnit.ReadOnly = true;
  984. this.txtClientBirthday.ReadOnly = true;
  985. this.chkClientBirthdayLunar.Enabled = false;
  986. this.txtClientDayForMarriage.ReadOnly = true;
  987. this.chkClientDayForMarriageLunar.Enabled = false;
  988. this.txtClientFixedPhone.ReadOnly = true;
  989. btn_CustomerEdit.Visible = true;
  990. }
  991. }
  992. }*/
  993. /// <summary>
  994. /// 移除礼服
  995. /// </summary>
  996. /// <param name="sender"></param>
  997. /// <param name="e"></param>
  998. void btnDressDelete_Click( object sender, EventArgs e )
  999. {
  1000. if ( this.listViewData.Items.Count > 0 )
  1001. {
  1002. if ( MessageBoxCustom.Show( "删除后无法找回,您确定要删除吗?", "温馨提示", MessageBoxButtons.YesNo ) == DialogResult.No )
  1003. {
  1004. return;
  1005. }
  1006. List<ListViewItem> delItem = new List<ListViewItem>();
  1007. for ( int i = 0; i < this.listViewData.SelectedItems.Count; i++ )
  1008. {
  1009. LYFZ.Software.MainBusiness.Dresses.SetSmallForm.DressOpenOrderRentSaleFormMain_ColumnHeaderModel modelColumn = (DressOpenOrderRentSaleFormMain_ColumnHeaderModel)this.listViewData.SelectedItems[i].Tag;
  1010. if ( modelColumn.ID > 0 )
  1011. {
  1012. this.htData_del[modelColumn.ID] = this.listViewData.SelectedItems[i].ImageKey.ToString().Trim();
  1013. }
  1014. delItem.Add( this.listViewData.SelectedItems[i] );
  1015. }
  1016. for ( int i = 0; i < delItem.Count; i++ )
  1017. {
  1018. this.listViewData.Items.Remove( delItem[i] );
  1019. }
  1020. }
  1021. if ( this.listViewData.Items.Count > 0 )
  1022. {
  1023. this.dtpTakeDressTime.Enabled = false;
  1024. }
  1025. else
  1026. {
  1027. this.dtpTakeDressTime.Enabled = true;
  1028. }
  1029. }
  1030. /// <summary>
  1031. /// 礼服工具箱
  1032. /// </summary>
  1033. /// <param name="sender"></param>
  1034. /// <param name="e"></param>
  1035. void btnDressToolbox_Click( object sender, EventArgs e )
  1036. {
  1037. if ( string.IsNullOrEmpty( this.dtpTakeDressTime.DateValue.Trim() ) && (LoadType != "出售") )
  1038. {
  1039. MessageBoxCustom.Show( "请选择取衣时间!" ); return;
  1040. }
  1041. LYFZ.Software.MainBusiness.Dresses.SetSmallForm.ToolboxDressSamllForm frm = new ToolboxDressSamllForm();
  1042. frm.StrTakeDressTime = this.dtpTakeDressTime.DateValue.Trim();
  1043. frm.strReturnDressTime = this.dtpReservationBackTime.DateValue.Trim();
  1044. frm.WindowState = FormWindowState.Maximized;
  1045. frm.ShowDialog();
  1046. if ( frm.IsSaveed )
  1047. {
  1048. List<string> frmList = frm.listSelect;
  1049. for ( int i = 0; i < this.listViewData.Items.Count; i++ )
  1050. {
  1051. LYFZ.Software.MainBusiness.Dresses.SetSmallForm.DressOpenOrderRentSaleFormMain_ColumnHeaderModel modelColumn = (DressOpenOrderRentSaleFormMain_ColumnHeaderModel)this.listViewData.Items[i].Tag;
  1052. if ( frmList.Contains( modelColumn.StrDressNumber.Trim() ) )
  1053. {
  1054. frmList.Remove( modelColumn.StrDressNumber.Trim() );
  1055. }
  1056. }
  1057. if ( frmList.Count > 0 )
  1058. {
  1059. string StrWhere = "";
  1060. for ( int i = 0; i < frmList.Count; i++ )
  1061. {
  1062. StrWhere += "'" + frmList[i].Trim() + "',";
  1063. }
  1064. StrWhere = "Dsfm_DressNumber in (" + StrWhere.TrimEnd( ',' ) + ")";
  1065. DataTable dt = orbll.GetView_Custom( "tb_ErpDressFrom", StrWhere: StrWhere, ShowColumnName: "Dsfm_DressNumber,Dsfm_DressCustomNumber,Dsfm_DressName,Dsfm_DressSize,Dsfm_CostPrice,Dsfm_RentPrice,Dsfm_SalePrice,Dsfm_DressPhotoNames" ).Tables[0];
  1066. if ( dt.Rows.Count > 0 )
  1067. {
  1068. for ( int i = 0; i < dt.Rows.Count; i++ )
  1069. {
  1070. string[] StrArrayList = dt.Rows[i]["Dsfm_DressPhotoNames"].ToString().Trim().Split( '|' );
  1071. if ( !this.mlistImage.Images.Keys.Contains( dt.Rows[i]["Dsfm_DressNumber"].ToString().Trim() ) )
  1072. {
  1073. Image img = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetDressImage_Small( StrArrayList[0].Trim() );
  1074. try
  1075. {
  1076. this.Invoke( new LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.UpdateControl( delegate ()
  1077. {
  1078. this.mlistImage.Images.Add( dt.Rows[i]["Dsfm_DressNumber"].ToString().Trim(), img );
  1079. } ) );
  1080. }
  1081. catch
  1082. {
  1083. }
  1084. }
  1085. ListViewItem lvItem = new ListViewItem();
  1086. lvItem.ForeColor = Color.Red;
  1087. LYFZ.Software.MainBusiness.Dresses.SetSmallForm.DressOpenOrderRentSaleFormMain_ColumnHeaderModel modelColumn = new DressOpenOrderRentSaleFormMain_ColumnHeaderModel();
  1088. modelColumn.StrDressNumber = dt.Rows[i]["Dsfm_DressNumber"].ToString().Trim();
  1089. modelColumn.StrCostPrice = dt.Rows[i]["Dsfm_CostPrice"].ToString().Trim();
  1090. modelColumn.StrDressPhotoNames = dt.Rows[i]["Dsfm_DressPhotoNames"].ToString().Trim();
  1091. modelColumn.ID = 0;
  1092. lvItem.Tag = modelColumn;
  1093. lvItem.ImageKey = dt.Rows[i]["Dsfm_DressNumber"].ToString().Trim();
  1094. lvItem.Text = dt.Rows[i]["Dsfm_DressCustomNumber"].ToString().Trim();
  1095. ListViewItem.ListViewSubItem ListSubItem = new ListViewItem.ListViewSubItem();
  1096. ListSubItem.Name = "礼服名称";
  1097. ListSubItem.Text = dt.Rows[i]["Dsfm_DressName"].ToString().Trim();
  1098. lvItem.SubItems.Add( ListSubItem );
  1099. ListSubItem = new ListViewItem.ListViewSubItem();
  1100. ListSubItem.Name = "礼服尺寸";
  1101. ListSubItem.Text = dt.Rows[i]["Dsfm_DressSize"].ToString().Trim();
  1102. lvItem.SubItems.Add( ListSubItem );
  1103. ListSubItem = new ListViewItem.ListViewSubItem();
  1104. ListSubItem.Name = "礼服数量";
  1105. ListSubItem.Text = "1";
  1106. lvItem.SubItems.Add( ListSubItem );
  1107. ListSubItem = new ListViewItem.ListViewSubItem();
  1108. ListSubItem.Name = this.LoadType + "价格";
  1109. if ( this.LoadType == "出租" )
  1110. {
  1111. ListSubItem.Text = dt.Rows[i]["Dsfm_RentPrice"].ToString().Trim();
  1112. }
  1113. else if ( this.LoadType == "出售" )
  1114. {
  1115. ListSubItem.Text = dt.Rows[i]["Dsfm_SalePrice"].ToString().Trim();
  1116. }
  1117. lvItem.SubItems.Add( ListSubItem );
  1118. this.listViewData.Items.Add( lvItem );
  1119. }
  1120. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.ListViewDrawSingleOrDoubleRows( this.listViewData );
  1121. }
  1122. }
  1123. if ( this.listViewData.Items.Count > 0 )
  1124. {
  1125. this.dtpTakeDressTime.Enabled = false;
  1126. }
  1127. else
  1128. {
  1129. this.dtpTakeDressTime.Enabled = true;
  1130. }
  1131. }
  1132. }
  1133. /// <summary>
  1134. /// 关闭窗体前判断是否提示
  1135. /// </summary>
  1136. private bool isClose = true;
  1137. /// <summary>
  1138. /// 关闭是否要跳转
  1139. /// </summary>
  1140. bool IsGoForm = false;
  1141. /// <summary>
  1142. /// 关闭窗体前事件
  1143. /// </summary>
  1144. /// <param name="sender"></param>
  1145. /// <param name="e"></param>
  1146. void DressOpenOrderFormMain_FormClosing( object sender, FormClosingEventArgs e )
  1147. {
  1148. if ( !this.IsGoForm )
  1149. {
  1150. if ( this.isClose )
  1151. {
  1152. if ( MessageBoxCustom.Show( "你确定要关闭吗?", "温馨提示", MessageBoxButtons.YesNo ) == DialogResult.No )
  1153. {
  1154. e.Cancel = true;
  1155. }
  1156. }
  1157. }
  1158. }
  1159. /// <summary>
  1160. /// 关闭窗体后事件
  1161. /// </summary>
  1162. /// <param name="sender"></param>
  1163. /// <param name="e"></param>
  1164. void DressOpenOrderFormMain_FormClosed( object sender, FormClosedEventArgs e )
  1165. {
  1166. if ( this.IsGoForm )
  1167. {
  1168. this.Hide();
  1169. LYFZ.Software.MainBusiness.Dresses.DressOpenOrderFirstFormMain frm = new DressOpenOrderFirstFormMain();
  1170. frm.StartPosition = FormStartPosition.CenterScreen;
  1171. frm.TopMost = true;
  1172. frm.Show();
  1173. }
  1174. }
  1175. }
  1176. public class DressOpenOrderRentSaleFormMain_ColumnHeaderModel
  1177. {
  1178. private int _id;
  1179. /// <summary>
  1180. /// ID
  1181. /// </summary>
  1182. public int ID
  1183. {
  1184. get
  1185. {
  1186. return _id;
  1187. }
  1188. set
  1189. {
  1190. _id = value;
  1191. }
  1192. }
  1193. private string _strDressNumber;
  1194. /// <summary>
  1195. /// 礼服编号
  1196. /// </summary>
  1197. public string StrDressNumber
  1198. {
  1199. get
  1200. {
  1201. return _strDressNumber;
  1202. }
  1203. set
  1204. {
  1205. _strDressNumber = value;
  1206. }
  1207. }
  1208. private string _strCostPrice;
  1209. /// <summary>
  1210. /// 礼服成本价格
  1211. /// </summary>
  1212. public string StrCostPrice
  1213. {
  1214. get
  1215. {
  1216. return _strCostPrice;
  1217. }
  1218. set
  1219. {
  1220. _strCostPrice = value;
  1221. }
  1222. }
  1223. private string _strDressPhotoNames;
  1224. /// <summary>
  1225. /// 礼服相片集合
  1226. /// </summary>
  1227. public string StrDressPhotoNames
  1228. {
  1229. get
  1230. {
  1231. return _strDressPhotoNames;
  1232. }
  1233. set
  1234. {
  1235. _strDressPhotoNames = value;
  1236. }
  1237. }
  1238. }
  1239. }