FrmTwoSalesOrderEntry.cs 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.MainBusiness.FinancialManagement.TwoSalesOrder
  11. {
  12. public partial class FrmTwoSalesOrderEntry : LYFZ.Software.UI.FinancialManagement.TwoSalesOrder.FrmTwoSalesOrderEntry
  13. {
  14. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  15. LYFZ.BLL.BLL_ErpProduct ptbll = new BLL.BLL_ErpProduct();
  16. LYFZ.BLL.BLL_ErpCustomer ctbll = new BLL.BLL_ErpCustomer();
  17. LYFZ.BLL.BLL_ErpCustomerGroup ctgbll = new BLL.BLL_ErpCustomerGroup();
  18. LYFZ.BLL.BLL_ErpTwoSalesOrder torbll = new BLL.BLL_ErpTwoSalesOrder();
  19. LYFZ.BLL.BLL_ErpOrderProductList oplbll = new BLL.BLL_ErpOrderProductList();
  20. LYFZ.BLL.BLL_ErpProductIntStorage pisbll = new BLL.BLL_ErpProductIntStorage();
  21. LYFZ.BLL.BLL_ErpProductOutStorage posbll = new BLL.BLL_ErpProductOutStorage();
  22. LYFZ.BLL.BLL_ErpCustomerGroupMembers ctgmbll = new BLL.BLL_ErpCustomerGroupMembers();
  23. public FrmTwoSalesOrderEntry()
  24. {
  25. this.Load += FrmTwoSalesOrderEntry_Load;
  26. this.Shown += FrmTwoSalesOrderEntry_Shown;
  27. this.chkClientSexMan.Click += chkClientSexMan_Click;
  28. this.chkClientWoman.Click += chkClientWoman_Click;
  29. this.txtClientName.KeyDown += txtClientName_KeyDown;
  30. this.btnClientSelect.Click += btnClientSelect_Click;
  31. this.btnDial.Click += btnDial_Click;
  32. this.btnItemNameSet.Click += btnItemNameSet_Click;
  33. this.btnItemTypeSet.Click += btnItemTypeSet_Click;
  34. this.btnOpenOrderPersonSelect.Click += btnOpenOrderPersonSelect_Click;
  35. this.txtItemQuantity.KeyPress += txtItemQuantity_KeyPress;
  36. this.txtItemAmount.KeyPress += txtItemAmount_KeyPress;
  37. this.btnSaveed.Click += btnSaveed_Click;
  38. this.btnCancel.Click += btnCancel_Click;
  39. this.btnProductDelete.Click += btnProductDelete_Click;
  40. this.btnProductToolbox.Click += btnProductToolbox_Click;
  41. this.listViewData.MouseDoubleClick += listViewData_MouseDoubleClick;
  42. this.txtOpenOrderRemark.Leave += txtOpenOrderRemark_Leave;
  43. this.btnNewOrder.Click += btnNewOrder_Click;
  44. }
  45. /// <summary>
  46. /// 是否保存
  47. /// </summary>
  48. public bool IsSaveed = false;
  49. /// <summary>
  50. /// 订单号
  51. /// </summary>
  52. public string StrOrderNumber = "";
  53. /// <summary>
  54. /// 客户编号
  55. /// </summary>
  56. string StrClientNumber = "";
  57. /// <summary>
  58. /// 二销类别的获取条件
  59. /// </summary>
  60. string StrConsumeTypeWhere = "";
  61. /// <summary>
  62. /// 相片集合
  63. /// </summary>
  64. ImageList mlistImage = new ImageList();
  65. /// <summary>
  66. /// 窗体加载事件
  67. /// </summary>
  68. /// <param name="sender"></param>
  69. /// <param name="e"></param>
  70. void FrmTwoSalesOrderEntry_Load(object sender, EventArgs e)
  71. {
  72. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.HidePhoneControls(this.txtClientPhone);
  73. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBACHBBCDBGJAJDF", this.cmbtreevItemName);
  74. if (!LYFZ.BLL.BLL_SystemGlobalSetting.SysTemGlobalSetMoel.OtherConsumerPassportManagement)
  75. { StrConsumeTypeWhere = " And Sc_ClassCode != 'AAAAABZ'"; }
  76. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBACDAJDFDDEACGJ", this.cmbtreevItemType, StrWhere: " Sc_ClassCode != 'BEBCABBAAHFCJBJGJ' And Sc_ClassCode!='BEBCADBFBCDFBGJHC' and Sc_ClassCode!='BEBCADBFBDDEGGABF' and Sc_ClassCode!='BEBCBFBICGDHCGBEJ'" + StrConsumeTypeWhere);
  77. }
  78. /// <summary>
  79. /// 窗体加载事件
  80. /// </summary>
  81. /// <param name="sender"></param>
  82. /// <param name="e"></param>
  83. void FrmTwoSalesOrderEntry_Shown(object sender, EventArgs e)
  84. {
  85. this.listViewData.View = View.Details;
  86. this.listViewData.GridLines = true;
  87. string[] StrColumns = "商品名称,商品价格,商品数量,备注".Split(',');
  88. int SurplusCount = 200 + 90 * 2 + 23;
  89. for (int i = 0; i < StrColumns.Length; i++)
  90. {
  91. ColumnHeader ch = new ColumnHeader();
  92. ch.Text = StrColumns[i].Trim();
  93. if (i == 0)
  94. { ch.Width = 200; }
  95. else if (i == StrColumns.Length - 1)
  96. { ch.Width = this.listViewData.Width - SurplusCount; }
  97. else
  98. { ch.Width = 90; }
  99. switch (StrColumns[i].Trim())
  100. {
  101. case "商品价格":
  102. ch.TextAlign = HorizontalAlignment.Right;
  103. break;
  104. case "商品数量":
  105. ch.TextAlign = HorizontalAlignment.Center;
  106. break;
  107. default:
  108. ch.TextAlign = HorizontalAlignment.Left;
  109. break;
  110. }
  111. this.listViewData.Columns.Add(ch);
  112. }
  113. this.mlistImage.ImageSize = new Size(30, 30);
  114. this.mlistImage.ColorDepth = ColorDepth.Depth32Bit;
  115. this.listViewData.SmallImageList = mlistImage;
  116. if (!string.IsNullOrEmpty(this.StrOrderNumber))
  117. {
  118. this.Text = "散客消费修改";
  119. DataTable dt = orbll.GetView_Custom("tb_ErpTwoSalesOrder", StrWhere: "Tsorder_Number = '" + this.StrOrderNumber + "'", ShowColumnName: "Tsorder_CustomerNumber,dbo.fn_CheckUserIDGetUserName(Tsorder_CreateName) AS Tsorder_CreateName,dbo.fn_CheckDateTimeReturn_Date(dbo.fn_CheckDateTime(Tsorder_CreateDatetime)) AS Tsorder_CreateDatetime,Tsorder_Name,Tsorder_Category,Tsorder_Money,Tsorder_Quantity,Tsorder_Remark,Tsorder_OpenSingle,dbo.fn_CheckUserIDGetUserName(Tsorder_OpenSingle) AS Tsorder_OpenSingleText").Tables[0];
  120. if (dt.Rows.Count > 0)
  121. {
  122. this.txtCreateName.Text = dt.Rows[0]["Tsorder_CreateName"].ToString().Trim();
  123. this.txtCreateDatetime.Text = dt.Rows[0]["Tsorder_CreateDatetime"].ToString().Trim();
  124. this.cmbtreevItemName.TextFindTag(dt.Rows[0]["Tsorder_Name"].ToString().Trim());
  125. this.cmbtreevItemType.TagFindText(dt.Rows[0]["Tsorder_Category"].ToString().Trim());
  126. this.txtItemAmount.Text = dt.Rows[0]["Tsorder_Money"].ToString().Trim();
  127. this.txtItemQuantity.Text = dt.Rows[0]["Tsorder_Quantity"].ToString().Trim();
  128. this.txtOpenOrderPersonSelect.Tag = dt.Rows[0]["Tsorder_OpenSingle"].ToString().Trim();
  129. this.txtOpenOrderPersonSelect.Text = dt.Rows[0]["Tsorder_OpenSingleText"].ToString().Trim();
  130. this.txtItemRemark.Text = dt.Rows[0]["Tsorder_Remark"].ToString().Trim();
  131. if (!string.IsNullOrEmpty(dt.Rows[0]["Tsorder_CustomerNumber"].ToString().Trim()))
  132. {
  133. DataTable dtClient = orbll.GetView_Custom("tb_ErpCustomer", StrWhere: "Cus_CustomerNumber = '" + dt.Rows[0]["Tsorder_CustomerNumber"].ToString().Trim() + "'", ShowColumnName: "Cus_Name,Cus_Sex,Cus_Telephone").Tables[0];
  134. if (dtClient.Rows.Count > 0)
  135. {
  136. this.txtClientName.Text = dtClient.Rows[0]["Cus_Name"].ToString().Trim();
  137. this.txtClientPhone.Text = dtClient.Rows[0]["Cus_Telephone"].ToString().Trim();
  138. if (Convert.ToBoolean(dtClient.Rows[0]["Cus_Sex"]))
  139. {
  140. this.chkClientSexMan.Checked = false;
  141. this.chkClientWoman.Checked = true;
  142. }
  143. else
  144. {
  145. this.chkClientSexMan.Checked = true;
  146. this.chkClientWoman.Checked = false;
  147. }
  148. this.txtClientName.ReadOnly = true;
  149. this.txtClientPhone.ReadOnly = true;
  150. this.chkClientWoman.Enabled = false;
  151. this.chkClientSexMan.Enabled = false;
  152. }
  153. }
  154. DataTable dtProduct = orbll.GetView_Custom("tb_ErpOrderProductList", StrWhere: "OPlist_OrderNumber = '" + this.StrOrderNumber + "' And OPlist_ViceNumber = '" + this.StrOrderNumber + "'", ShowColumnName: "OPlist_ProdNumber,OPlist_CostPrice,OPlist_Class,OPlist_Unit,ID,OPlist_UniquelyIdentity,OPlist_ProdName,OPlist_ProdSoldPrice,OPlist_ProdQuantity,OPlist_OpenOrderRemark").Tables[0];
  155. LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel ColumnModel = null;
  156. for (int i = 0; i < dtProduct.Rows.Count; i++)
  157. {
  158. DataTable dtPhoto = orbll.GetView_Custom("tb_ErpProduct", StrWhere: "Prod_Number = '" + dtProduct.Rows[i]["OPlist_ProdNumber"].ToString().Trim() + "'", ShowColumnName: "Prod_Thumbnail").Tables[0];
  159. if (dtPhoto.Rows.Count > 0)
  160. {
  161. if (!this.mlistImage.Images.Keys.Contains(dtProduct.Rows[i]["OPlist_ProdNumber"].ToString().Trim()))
  162. {
  163. Image img = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetProductImage(dtPhoto.Rows[0]["Prod_Thumbnail"].ToString().Trim());
  164. this.mlistImage.Images.Add(dtProduct.Rows[i]["OPlist_ProdNumber"].ToString().Trim(), img);
  165. }
  166. }
  167. ListViewItem lvItem = new ListViewItem();
  168. ColumnModel = new DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel();
  169. ColumnModel.ProductNumber = dtProduct.Rows[i]["OPlist_ProdNumber"].ToString().Trim();
  170. ColumnModel.ProductCostPrice = dtProduct.Rows[i]["OPlist_CostPrice"].ToString().Trim();
  171. ColumnModel.ProductCategory = dtProduct.Rows[i]["OPlist_Class"].ToString().Trim();
  172. ColumnModel.ProductUnit = dtProduct.Rows[i]["OPlist_Unit"].ToString().Trim();
  173. ColumnModel.ProductOrderID = dtProduct.Rows[i]["ID"].ToString().Trim();
  174. ColumnModel.ProductUniquelyIdentity = dtProduct.Rows[i]["OPlist_UniquelyIdentity"].ToString().Trim();
  175. lvItem.Tag = ColumnModel;
  176. lvItem.ImageKey = dtProduct.Rows[i]["OPlist_ProdNumber"].ToString().Trim();
  177. lvItem.Text = dtProduct.Rows[i]["OPlist_ProdName"].ToString().Trim();
  178. ListViewItem.ListViewSubItem ListSubItem = new ListViewItem.ListViewSubItem();
  179. ListSubItem.Name = "商品价格";
  180. ListSubItem.Text = dtProduct.Rows[i]["OPlist_ProdSoldPrice"].ToString().Trim();
  181. lvItem.SubItems.Add(ListSubItem);
  182. ListSubItem = new ListViewItem.ListViewSubItem();
  183. ListSubItem.Name = "商品数量";
  184. ListSubItem.Text = dtProduct.Rows[i]["OPlist_ProdQuantity"].ToString().Trim();
  185. lvItem.SubItems.Add(ListSubItem);
  186. ListSubItem = new ListViewItem.ListViewSubItem();
  187. ListSubItem.Name = "备注";
  188. ListSubItem.Text = dtProduct.Rows[i]["OPlist_OpenOrderRemark"].ToString().Trim();
  189. lvItem.SubItems.Add(ListSubItem);
  190. if ((this.listViewData.Items.Count % 2) > 0)
  191. { lvItem.BackColor = System.Drawing.Color.PapayaWhip; }
  192. else
  193. { lvItem.BackColor = System.Drawing.Color.PowderBlue; }
  194. this.listViewData.Items.Add(lvItem);
  195. }
  196. }
  197. }
  198. else
  199. {
  200. this.chkClientSexMan.Checked = true;
  201. this.txtCreateDatetime.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().ToString("yyyy-MM-dd");
  202. this.txtCreateName.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  203. }
  204. }
  205. /// <summary>
  206. /// 选择男
  207. /// </summary>
  208. /// <param name="sender"></param>
  209. /// <param name="e"></param>
  210. void chkClientSexMan_Click(object sender, EventArgs e)
  211. {
  212. this.chkClientSexMan.Checked = true;
  213. this.chkClientWoman.Checked = false;
  214. }
  215. /// <summary>
  216. /// 选择女
  217. /// </summary>
  218. /// <param name="sender"></param>
  219. /// <param name="e"></param>
  220. void chkClientWoman_Click(object sender, EventArgs e)
  221. {
  222. this.chkClientWoman.Checked = true;
  223. this.chkClientSexMan.Checked = false;
  224. }
  225. /// <summary>
  226. /// 删除或者后退为取消选择客户
  227. /// </summary>
  228. /// <param name="sender"></param>
  229. /// <param name="e"></param>
  230. void txtClientName_KeyDown(object sender, KeyEventArgs e)
  231. {
  232. if (e.KeyCode == Keys.Delete || e.KeyCode == Keys.Back)
  233. {
  234. if (!string.IsNullOrEmpty(this.StrClientNumber))
  235. {
  236. this.StrClientNumber = "";
  237. this.txtClientName.Text = "";
  238. this.txtClientPhone.Text = "";
  239. this.chkClientWoman.Checked = false;
  240. this.chkClientSexMan.Checked = false;
  241. this.txtClientName.ReadOnly = false;
  242. this.txtClientPhone.ReadOnly = false;
  243. this.chkClientSexMan.Enabled = true;
  244. this.chkClientWoman.Enabled = true;
  245. }
  246. }
  247. }
  248. /// <summary>
  249. /// 选择客户
  250. /// </summary>
  251. /// <param name="sender"></param>
  252. /// <param name="e"></param>
  253. void btnClientSelect_Click(object sender, EventArgs e)
  254. {
  255. LYFZ.Software.MainBusiness.FinancialManagement.TwoSalesOrder.FrmCustomerSelete frm = new FrmCustomerSelete();
  256. frm.ShowDialog();
  257. this.StrClientNumber = frm.StrClientNumber;
  258. if (!string.IsNullOrEmpty(this.StrClientNumber))
  259. {
  260. DataTable dt = orbll.GetView_Custom("tb_ErpCustomer", StrWhere: "Cus_CustomerNumber='" + this.StrClientNumber + "'", ShowColumnName: "Cus_CustomerNumber,Cus_Name,Cus_Sex,Cus_Telephone").Tables[0];
  261. if (dt.Rows.Count > 0)
  262. {
  263. this.txtClientName.ReadOnly = true;
  264. this.txtClientPhone.ReadOnly = true;
  265. this.chkClientSexMan.Enabled = false;
  266. this.chkClientWoman.Enabled = false;
  267. this.txtClientName.Text = dt.Rows[0]["Cus_Name"].ToString();
  268. this.txtClientPhone.Text = dt.Rows[0]["Cus_Telephone"].ToString();
  269. if (!Convert.ToBoolean(dt.Rows[0]["Cus_Sex"]))
  270. {
  271. this.chkClientSexMan.Checked = true;
  272. this.chkClientWoman.Checked = false;
  273. }
  274. else
  275. {
  276. this.chkClientWoman.Checked = true;
  277. this.chkClientSexMan.Checked = false;
  278. }
  279. }
  280. }
  281. }
  282. /// <summary>
  283. /// 拔打电话
  284. /// </summary>
  285. /// <param name="sender"></param>
  286. /// <param name="e"></param>
  287. void btnDial_Click(object sender, EventArgs e)
  288. {
  289. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.PhoneCall(this.txtClientPhone);
  290. }
  291. /// <summary>
  292. /// 设置项目名称
  293. /// </summary>
  294. /// <param name="sender"></param>
  295. /// <param name="e"></param>
  296. void btnItemNameSet_Click(object sender, EventArgs e)
  297. {
  298. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet();
  299. frm.TypeName = "BEBACHBBCDBGJAJDF";
  300. frm.Version = "Version";
  301. if (frm.ShowDialog() == DialogResult.OK)
  302. {
  303. string StrTag = "";
  304. if (this.cmbtreevItemName.Tag != null)
  305. { StrTag = this.cmbtreevItemName.Tag.ToString().Trim(); }
  306. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBACHBBCDBGJAJDF", this.cmbtreevItemName);
  307. this.cmbtreevItemName.TagFindText(StrTag);
  308. }
  309. }
  310. /// <summary>
  311. /// 设置二销类别
  312. /// </summary>
  313. /// <param name="sender"></param>
  314. /// <param name="e"></param>
  315. void btnItemTypeSet_Click(object sender, EventArgs e)
  316. {
  317. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet();
  318. frm.TypeName = "BEBACDAJDFDDEACGJ";
  319. frm.Version = "Version";
  320. if (frm.ShowDialog() == DialogResult.OK)
  321. {
  322. string StrTag = "";
  323. if (this.cmbtreevItemType.Tag != null)
  324. { StrTag = this.cmbtreevItemType.Tag.ToString().Trim(); }
  325. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBACDAJDFDDEACGJ", this.cmbtreevItemType, StrWhere: "Sc_ClassCode!='BEBCADBFBCDFBGJHC' and Sc_ClassCode!='BEBCADBFBDDEGGABF' and Sc_ClassCode!='BEBCBFBICGDHCGBEJ'" + StrConsumeTypeWhere);
  326. this.cmbtreevItemType.TagFindText(StrTag);
  327. }
  328. }
  329. /// <summary>
  330. /// 选择开单人
  331. /// </summary>
  332. /// <param name="sender"></param>
  333. /// <param name="e"></param>
  334. void btnOpenOrderPersonSelect_Click(object sender, EventArgs e)
  335. {
  336. LYFZ.Software.MainBusiness.FinancialManagement.OrdersReceivables.FrmSelectPayOpenSingle frm = new OrdersReceivables.FrmSelectPayOpenSingle();
  337. frm.ShowDialog();
  338. if (!string.IsNullOrEmpty(frm.Str1))
  339. {
  340. this.txtOpenOrderPersonSelect.Text = frm.Str1;
  341. this.txtOpenOrderPersonSelect.Tag = frm.Str3;
  342. }
  343. }
  344. /// <summary>
  345. /// 输入框设置
  346. /// </summary>
  347. /// <param name="sender"></param>
  348. /// <param name="e"></param>
  349. void txtItemQuantity_KeyPress(object sender, KeyPressEventArgs e)
  350. {
  351. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  352. { e.Handled = true; }
  353. }
  354. /// <summary>
  355. /// 输入框设置
  356. /// </summary>
  357. /// <param name="sender"></param>
  358. /// <param name="e"></param>
  359. void txtItemAmount_KeyPress(object sender, KeyPressEventArgs e)
  360. {
  361. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  362. { e.Handled = true; }
  363. else if (Char.IsPunctuation(e.KeyChar))
  364. {
  365. if (e.KeyChar == '.')
  366. {
  367. if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('.') != -1)
  368. { e.Handled = true; }
  369. }
  370. else if (e.KeyChar == '-')
  371. {
  372. if (((LYFZ.ComponentLibrary.TextBoxEx)sender).Text.LastIndexOf('-') != -1)
  373. { e.Handled = true; }
  374. }
  375. else
  376. { e.Handled = true; }
  377. }
  378. }
  379. /// <summary>
  380. /// 保存
  381. /// </summary>
  382. /// <param name="sender"></param>
  383. /// <param name="e"></param>
  384. void btnSaveed_Click(object sender, EventArgs e)
  385. {
  386. try
  387. {
  388. #region 判断不能为空
  389. if (string.IsNullOrEmpty(txtClientName.Text))
  390. { MessageBoxCustom.Show("客户名称不能为空!"); return; }
  391. string StrTelephone = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.MaskedTextBoxExGetText(this.txtClientPhone);
  392. if (!string.IsNullOrEmpty(StrTelephone))
  393. {
  394. if (StrTelephone.Length != 11)
  395. { MessageBoxCustom.Show("客户手机号长度不足11位!"); return; }
  396. }
  397. if (string.IsNullOrEmpty(cmbtreevItemName.Text))
  398. { MessageBoxCustom.Show("项目名称不能为空!"); return; }
  399. if (string.IsNullOrEmpty(this.cmbtreevItemType.Text.Trim()))
  400. { MessageBoxCustom.Show("二销类别不能为空!"); return; }
  401. if (string.IsNullOrEmpty(txtItemAmount.Text))
  402. { MessageBoxCustom.Show("金额不能为空!"); return; }
  403. if (string.IsNullOrEmpty(txtOpenOrderPersonSelect.Text))
  404. { MessageBoxCustom.Show("接单人不能为空!"); return; }
  405. if (!this.chkClientSexMan.Checked && !this.chkClientWoman.Checked)
  406. { MessageBoxCustom.Show("性别不能为空!"); return; }
  407. #endregion
  408. DateTime StrTime = SDateTime.Now;
  409. string StrUserID = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  410. List<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
  411. #region 增加
  412. LYFZ.Model.Model_ErpTwoSalesOrder modelOrder = null;
  413. if (!string.IsNullOrEmpty(this.StrOrderNumber))
  414. {
  415. modelOrder = torbll.GetModel("Tsorder_Number", this.StrOrderNumber);
  416. modelOrder.Tsorder_UpdateDatetime = StrTime;
  417. modelOrder.Tsorder_UpdateName = StrUserID;
  418. }
  419. else
  420. {
  421. modelOrder = new Model.Model_ErpTwoSalesOrder();
  422. modelOrder.Tsorder_Number = LYFZ.BLL.BLL_ErpOrder.GenerateNewOtherConsumeNumber();
  423. modelOrder.Tsorder_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  424. modelOrder.Tsorder_CustomerName = "";
  425. modelOrder.Tsorder_Telephone = "";
  426. modelOrder.Tsorder_PersonHandling = StrUserID;
  427. modelOrder.Tsorder_PhotoNames = "";
  428. modelOrder.Tsorder_Photography = "";
  429. modelOrder.Tsorder_PhotoPickupName = "";
  430. modelOrder.Tsorder_PhotoPickup = 0;
  431. modelOrder.Tsorder_CreateDatetime = Convert.ToDateTime(this.txtCreateDatetime.Text);
  432. modelOrder.Tsorder_CreateName = StrUserID;
  433. modelOrder.Tsorder_UpdateName = "";
  434. }
  435. modelOrder.Tsorder_Name = this.cmbtreevItemName.Text.Trim();
  436. modelOrder.Tsorder_Money = Convert.ToDecimal(this.txtItemAmount.Text.Trim());
  437. if (string.IsNullOrEmpty(this.txtItemQuantity.Text.Trim()))
  438. { modelOrder.Tsorder_Quantity = 0; }
  439. else
  440. { modelOrder.Tsorder_Quantity = Convert.ToInt32(this.txtItemQuantity.Text.Trim()); }
  441. modelOrder.Tsorder_OpenSingle = this.txtOpenOrderPersonSelect.Tag.ToString().Trim();
  442. modelOrder.Tsorder_Category = this.cmbtreevItemType.Tag.ToString().Trim();
  443. modelOrder.Tsorder_Remark = this.txtItemRemark.Text.Trim();
  444. #endregion
  445. #region 客户编号存在
  446. if (!string.IsNullOrEmpty(this.StrClientNumber))
  447. { modelOrder.Tsorder_CustomerNumber = this.StrClientNumber; }
  448. else //客户编号不存在
  449. {
  450. LYFZ.Model.Model_ErpCustomer modelClient = new Model.Model_ErpCustomer();
  451. bool IsFind = false;
  452. if (!string.IsNullOrEmpty(StrTelephone))
  453. {
  454. DataTable dt_Cus = orbll.GetView_Custom("tb_ErpCustomer", StrWhere: "Cus_Telephone='" + StrTelephone + "'", ShowColumnName: "Cus_CustomerNumber").Tables[0];
  455. if (dt_Cus.Rows.Count > 0)
  456. {
  457. IsFind = true;
  458. modelOrder.Tsorder_CustomerNumber = dt_Cus.Rows[0]["Cus_CustomerNumber"].ToString();
  459. }
  460. }
  461. if (!IsFind)
  462. {
  463. //插入客户表
  464. modelClient.Cus_CustomerNumber = LYFZ.BLL.BLL_ErpCustomer.GetClientNumber();//获取新编号
  465. modelClient.Cus_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  466. modelClient.Cus_Type = "";
  467. modelClient.Cus_Name = LYFZ.BLL.OtherCommonModel.ClearSpecialCharacter(this.txtClientName.Text);
  468. modelClient.Cus_NamePinyin = LYFZ.Command.Command_ChineseToPinyin.GetChineseSpellPinyin(this.txtClientName.Text.Trim()).ToLower();
  469. modelClient.Cus_Telephone = StrTelephone.Trim();
  470. if (this.chkClientSexMan.Checked)
  471. { modelClient.Cus_Sex = false; }
  472. else
  473. { modelClient.Cus_Sex = true; }
  474. modelClient.Cus_CreateDateTime = StrTime;
  475. modelClient.Cus_CreateName = StrUserID;
  476. clist.Add(ctbll.GetAddCommandInfo(modelClient));
  477. LYFZ.Model.Model_ErpCustomerGroup modelGroup = new Model.Model_ErpCustomerGroup();
  478. modelGroup.GP_OrderNumber = modelOrder.Tsorder_Number;
  479. modelGroup.GP_CustomerGroupID = LYFZ.BLL.BLL_ErpCustomer.GetNewClientGroupNumber();
  480. modelGroup.GP_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  481. modelGroup.GP_GroupType = 0;
  482. modelGroup.GP_CustomerType = -1;
  483. modelGroup.GP_CustomerStatus = "正常";
  484. modelGroup.GP_LossReason = "";
  485. modelGroup.GP_DegreeOfIntent = "";
  486. modelGroup.GP_CustomerSource = "其他消费";
  487. modelGroup.GP_IntroducerCustomerID = "";
  488. modelGroup.GP_Remark = "";
  489. modelGroup.GP_BelongsPersonID = "";
  490. modelGroup.GP_ISIntentionCustomer = 3;
  491. modelGroup.GP_RemindEvent = "";
  492. modelGroup.GP_TransactionTime = StrTime;
  493. modelGroup.GP_CreateDatetime = StrTime;
  494. modelGroup.GP_CreateName = StrUserID;
  495. modelGroup.GP_UpdateName = StrUserID;
  496. clist.Add(ctgbll.GetAddCommandInfo(modelGroup));
  497. LYFZ.Model.Model_ErpCustomerGroupMembers modelGMember = new Model.Model_ErpCustomerGroupMembers();
  498. modelGMember.GM_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  499. modelGMember.GM_CustomerGroupID = modelGroup.GP_CustomerGroupID;
  500. modelGMember.GM_CustomerID = modelClient.Cus_CustomerNumber;
  501. modelGMember.GM_Master = 1;
  502. modelGMember.GM_ProtagonistCustomer = 1;
  503. modelGMember.GM_RelatedPersonID = modelClient.Cus_CustomerNumber;
  504. modelGMember.GM_Relation = "本人";
  505. modelGMember.GM_IsOrder = 1;
  506. modelGMember.GM_IsOrderNumber = "";
  507. clist.Add(ctgmbll.GetAddCommandInfo(modelGMember));
  508. modelOrder.Tsorder_CustomerNumber = modelClient.Cus_CustomerNumber;
  509. }
  510. }
  511. if (!string.IsNullOrEmpty(this.StrOrderNumber))
  512. { clist.Add(torbll.GetUpdateCommandInfo(modelOrder)); }
  513. else
  514. { clist.Add(torbll.GetAddCommandInfo(modelOrder)); }
  515. #endregion
  516. #region 订单商品
  517. for (int i = 0; i < Itemdel.Count; i++)
  518. {
  519. LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel ColumnModel = (LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel)Itemdel[i].Tag;
  520. clist.Add(oplbll.GetDeleteCommandInfo("ID", "=", ColumnModel.ProductOrderID));
  521. //LYFZ.Model.Model_ErpProduct modelpt = ptbll.GetModel("Prod_Number", ColumnModel.ProductNumber.Trim());
  522. DataTable productTable = orbll.GetView_Custom("tb_ErpProduct", StrWhere: "Prod_Number = '" + ColumnModel.ProductNumber.Trim() + "' And Prod_Availability = 1", ShowColumnName: "Prod_Availability").Tables[0];
  523. if (productTable.Rows.Count > 0)
  524. {
  525. clist.Add(ptbll.GetProductLessInventory(ColumnModel.ProductNumber.Trim(), 1, false));
  526. //modelpt.Prod_Quantity += 1;
  527. //modelpt.Prod_UpdateDateTime = StrTime;
  528. //modelpt.Prod_UpdateName = StrUserID;
  529. //clist.Add(ptbll.GetUpdateCommandInfo(modelpt));
  530. LYFZ.Model.Model_ErpProductIntStorage modelIntStorage = new Model.Model_ErpProductIntStorage();
  531. modelIntStorage.Pis_PurchaseQuantity += 1;
  532. modelIntStorage.Pis_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  533. modelIntStorage.Pis_ProductCategory = ColumnModel.ProductCategory;
  534. modelIntStorage.Pis_ProductNumber = ColumnModel.ProductNumber;
  535. modelIntStorage.Pis_PurchasePrice = Convert.ToDecimal(ColumnModel.ProductCostPrice);
  536. modelIntStorage.Pis_PurchaseVendor = "";
  537. modelIntStorage.Pis_Remark = "其他消费删除产品,自动将加回数据";
  538. modelIntStorage.Pis_CreateName = StrUserID;
  539. modelIntStorage.Pis_CreateDatetime = StrTime;
  540. clist.Add(pisbll.GetAddCommandInfo(modelIntStorage));
  541. }
  542. }
  543. for (int i = 0; i < this.listViewData.Items.Count; i++)
  544. {
  545. LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel ColumnModel = (LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel)this.listViewData.Items[i].Tag;
  546. if (string.IsNullOrEmpty(ColumnModel.ProductOrderID))
  547. {
  548. LYFZ.Model.Model_ErpOrderProductList modelProduct = new Model.Model_ErpOrderProductList();
  549. modelProduct.OPlist_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  550. modelProduct.OPlist_OrderNumber = modelOrder.Tsorder_Number;
  551. modelProduct.OPlist_ViceNumber = modelOrder.Tsorder_Number;
  552. modelProduct.OPlist_Class = ColumnModel.ProductCategory;
  553. modelProduct.OPlist_ProdNumber = ColumnModel.ProductNumber;
  554. modelProduct.OPlist_ProdName = this.listViewData.Items[i].Text.Trim();
  555. modelProduct.OPlist_Unit = ColumnModel.ProductUnit;
  556. modelProduct.OPlist_CostPrice = Convert.ToDecimal(ColumnModel.ProductCostPrice);
  557. modelProduct.OPlist_ProdSoldPrice = Convert.ToDecimal(this.listViewData.Items[i].SubItems["商品价格"].Text.Trim());
  558. modelProduct.OPlist_ProdQuantity = Convert.ToInt32(this.listViewData.Items[i].SubItems["商品数量"].Text.Trim());
  559. modelProduct.OPlist_OpenOrderRemark = this.listViewData.Items[i].SubItems["备注"].Text.Trim();
  560. modelProduct.OPlist_UniquelyIdentity = LYFZ.DAL.DAL_ErpOrderProductList.GetPorductUniquelyIdentity();
  561. modelProduct.OPlist_CompletedHadLessQuantity = modelProduct.OPlist_ProdQuantity;
  562. modelProduct.OPlist_PickupQuantity = modelProduct.OPlist_ProdQuantity;
  563. modelProduct.OPlist_PickupStatus = "1";
  564. modelProduct.OPlist_PickupName = StrUserID;
  565. modelProduct.OPlist_PickupTime = StrTime;
  566. modelProduct.OPlist_PickupRemark = "";
  567. modelProduct.OPlist_ArrangeNmae = "";
  568. modelProduct.OPlist_ArrangeRemark = "";
  569. modelProduct.OPlist_Batch = 0;
  570. modelProduct.OPlist_CompletedName = "";
  571. modelProduct.OPlist_CompletedQuantity = 0;
  572. modelProduct.OPlist_CompletedStatus = "1";
  573. modelProduct.OPlist_IsExpedited = false;
  574. modelProduct.OPlist_OldProductID = "";
  575. modelProduct.OPlist_Remark = "";
  576. modelProduct.OPlist_ReservationTakeName = "";
  577. modelProduct.OPlist_ReworkRemark = "";
  578. modelProduct.OPlist_ReworkRemark2 = "";
  579. modelProduct.OPlist_ReworkStatus = "0";
  580. modelProduct.OPlist_ReworName = "";
  581. modelProduct.OPlist_ReworQuantity = 0;
  582. modelProduct.OPlist_SelectFilmProductLog = "";
  583. modelProduct.OPlist_SendName = "";
  584. modelProduct.OPlist_SendNumber = "";
  585. modelProduct.OPlist_SendStatus = "0";
  586. modelProduct.OPlist_SendVendor = "";
  587. modelProduct.OPlist_Type = "2";
  588. modelProduct.OPlist_CreateDatetime = StrTime;
  589. modelProduct.OPlist_CreateName = StrUserID;
  590. modelProduct.OPlist_UpdateName = "";
  591. clist.Add(oplbll.GetAddCommandInfo(modelProduct));
  592. LYFZ.Model.Model_ErpProduct modelpt = ptbll.GetModel("Prod_Number", ColumnModel.ProductNumber.Trim());
  593. DataTable productTable = orbll.GetView_Custom("tb_ErpProduct", StrWhere: "Prod_Number = '" + ColumnModel.ProductNumber.Trim() + "' And Prod_Availability = 1", ShowColumnName: "Prod_Availability").Tables[0];
  594. if (productTable.Rows.Count > 0)
  595. {
  596. //if (modelpt.Prod_Availability.ToString().Trim() == "1")
  597. //{
  598. clist.Add(ptbll.GetProductLessInventory(ColumnModel.ProductNumber.Trim(), 1, true));
  599. //modelpt.Prod_Quantity -= 1;
  600. //modelpt.Prod_UpdateDateTime = StrTime;
  601. //modelpt.Prod_UpdateName = StrUserID;
  602. //clist.Add(ptbll.GetUpdateCommandInfo(modelpt));
  603. LYFZ.Model.Model_ErpProductOutStorage modelOutStorage = new Model.Model_ErpProductOutStorage();
  604. modelOutStorage.Pos_OutQuantity -= modelProduct.OPlist_PickupQuantity;
  605. modelOutStorage.Pos_DividedShop = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetLocalCompanyInfoID();
  606. modelOutStorage.Pos_ProductCategory = modelProduct.OPlist_Class;
  607. modelOutStorage.Pos_ProductNumber = modelProduct.OPlist_ProdNumber;
  608. modelOutStorage.Pos_Remark = "其他消费,添加产品自动减库存";
  609. modelOutStorage.Pos_OutTime = StrTime;
  610. modelOutStorage.Pos_OutName = StrUserID;
  611. clist.Add(posbll.GetAddCommandInfo(modelOutStorage));
  612. }
  613. }
  614. else
  615. {
  616. LYFZ.Model.Model_ErpOrderProductList modelProduct = oplbll.GetModel(Convert.ToInt32(ColumnModel.ProductOrderID));
  617. modelProduct.OPlist_OpenOrderRemark = this.listViewData.Items[i].SubItems["备注"].Text.Trim();
  618. modelProduct.OPlist_UpdateDateTime = StrTime;
  619. modelProduct.OPlist_UpdateName = StrUserID;
  620. clist.Add(oplbll.GetUpdateCommandInfo(modelProduct));
  621. }
  622. }
  623. #endregion
  624. if (clist.Count > 0)
  625. {
  626. if (MessageBoxCustom.Show("您确定要保存吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No)
  627. { return; }
  628. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
  629. {
  630. this.IsSaveed = true;
  631. if (string.IsNullOrEmpty(this.StrOrderNumber) && LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.TwoSalesOrderCompetence, CustomAttributes.OperatingAuthority.OtherConsumerReceivables))
  632. {
  633. this.StrOrderNumber = modelOrder.Tsorder_Number;
  634. LYFZ.Software.MainBusiness.FinancialManagement.TwoSalesOrder.FrmTwoSalesOrderPayment frm = new TwoSalesOrder.FrmTwoSalesOrderPayment();
  635. frm.StrCope = modelOrder.Tsorder_Money;
  636. frm.StrPaid = 0;
  637. frm.StrArrears = modelOrder.Tsorder_Money;
  638. frm.StrOrdNumber = this.StrOrderNumber;
  639. frm.IsShownPaymentNot = true;
  640. frm.ShowDialog();
  641. string showMsg = "保存成功";
  642. if (frm.IsSaveed)
  643. {
  644. showMsg = "保存并收款成功";
  645. }
  646. if (MessageBoxCustom.Show(showMsg + "\r\n你要继续录入新订单吗?", msgBoxButton: MessageBoxButtons.YesNo) == DialogResult.Yes)
  647. {
  648. btnNewOrder_Click(null,null);
  649. }
  650. else {
  651. this.Close();
  652. }
  653. }
  654. else
  655. {
  656. if (!this.IsSaveed)
  657. {
  658. MessageBoxCustom.Show("保存成功!");
  659. }
  660. this.Close();
  661. }
  662. }
  663. else
  664. { MessageBoxCustom.Show("保存失败!"); }
  665. }
  666. }
  667. catch (Exception ex)
  668. { MessageBoxCustom.Show(ex.Message); }
  669. }
  670. /// <summary>
  671. /// 取消
  672. /// </summary>
  673. /// <param name="sender"></param>
  674. /// <param name="e"></param>
  675. void btnCancel_Click(object sender, EventArgs e)
  676. {
  677. this.Close();
  678. }
  679. List<ListViewItem> Itemdel = new List<ListViewItem>();
  680. /// <summary>
  681. /// 删除产品
  682. /// </summary>
  683. /// <param name="sender"></param>
  684. /// <param name="e"></param>
  685. void btnProductDelete_Click(object sender, EventArgs e)
  686. {
  687. if (this.listViewData.Items.Count > 0 && this.listViewData.SelectedItems.Count > 0)
  688. {
  689. if (MessageBoxCustom.Show("您确定要删除吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No)
  690. { return; }
  691. List<ListViewItem> mlist = new List<ListViewItem>();
  692. for (int i = 0; i < this.listViewData.SelectedItems.Count; i++)
  693. {
  694. LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel ColumnModel = (LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel)this.listViewData.SelectedItems[i].Tag;
  695. if (!string.IsNullOrEmpty(ColumnModel.ProductOrderID))
  696. { Itemdel.Add(this.listViewData.SelectedItems[i]); }
  697. ListViewItem item = this.listViewData.SelectedItems[i];
  698. mlist.Add(item);
  699. }
  700. for (int i = 0; i < mlist.Count; i++)
  701. { this.listViewData.Items.Remove(mlist[i]); }
  702. }
  703. }
  704. /// <summary>
  705. /// 工具箱
  706. /// </summary>
  707. /// <param name="sender"></param>
  708. /// <param name="e"></param>
  709. void btnProductToolbox_Click(object sender, EventArgs e)
  710. {
  711. LYFZ.Software.MainBusiness.DoorCityProcess.SetSmallForm.ToolboxListViewSamllForm frm = new DoorCityProcess.SetSmallForm.ToolboxListViewSamllForm();
  712. frm.LoadType = "套系包含商品";
  713. frm.ShowDialog();
  714. if (frm.IsSaveed)
  715. { this.SetOrderProductValue(frm.mlist, frm.mlist_SmallImage); }
  716. }
  717. /// <summary>
  718. /// 商品资料
  719. /// </summary>
  720. /// <param name="mlist"></param>
  721. public void SetOrderProductValue(List<LYFZ.Model.Model_ErpProduct> mlist, ImageList mlist_SmallImage)
  722. {
  723. for (int i = 0; i < mlist_SmallImage.Images.Keys.Count; i++)
  724. {
  725. if (!this.mlistImage.Images.Keys.Contains(mlist_SmallImage.Images.Keys[i].Trim()))
  726. { this.mlistImage.Images.Add(mlist_SmallImage.Images.Keys[i].Trim(), mlist_SmallImage.Images[mlist_SmallImage.Images.Keys[i].Trim()]); }
  727. }
  728. LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel ColumnModel = null;
  729. for (int i = 0; i < mlist.Count; i++)
  730. {
  731. ListViewItem lvItem = new ListViewItem();
  732. ColumnModel = new DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel();
  733. ColumnModel.ProductNumber = mlist[i].Prod_Number.Trim();
  734. ColumnModel.ProductCostPrice = mlist[i].Prod_CostPrice.ToString().Trim();
  735. ColumnModel.ProductCategory = mlist[i].Prod_Class.ToString().Trim();
  736. ColumnModel.ProductUnit = mlist[i].Prod_Unit.ToString().Trim();
  737. ColumnModel.ProductOrderID = "";
  738. ColumnModel.ProductUniquelyIdentity = "";
  739. lvItem.Tag = ColumnModel;
  740. lvItem.ImageKey = mlist[i].Prod_Number.Trim();
  741. lvItem.Text = mlist[i].Prod_Name.Trim();
  742. ListViewItem.ListViewSubItem ListSubItem = new ListViewItem.ListViewSubItem();
  743. ListSubItem.Name = "商品价格";
  744. ListSubItem.Text = mlist[i].Prod_SalesPrice.ToString().Trim();
  745. lvItem.SubItems.Add(ListSubItem);
  746. ListSubItem = new ListViewItem.ListViewSubItem();
  747. ListSubItem.Name = "商品数量";
  748. ListSubItem.Text = "1";
  749. lvItem.SubItems.Add(ListSubItem);
  750. ListSubItem = new ListViewItem.ListViewSubItem();
  751. ListSubItem.Name = "备注";
  752. ListSubItem.Text = "";
  753. lvItem.SubItems.Add(ListSubItem);
  754. if ((this.listViewData.Items.Count % 2) > 0)
  755. { lvItem.BackColor = System.Drawing.Color.PapayaWhip; }
  756. else
  757. { lvItem.BackColor = System.Drawing.Color.PowderBlue; }
  758. this.listViewData.Items.Add(lvItem);
  759. }
  760. }
  761. /// <summary>
  762. /// 双击编辑子项
  763. /// </summary>
  764. /// <param name="sender"></param>
  765. /// <param name="e"></param>
  766. void listViewData_MouseDoubleClick(object sender, MouseEventArgs e)
  767. {
  768. this.txtOpenOrderRemark.Visible = false;
  769. ListViewHitTestInfo info = this.listViewData.HitTest(e.X, e.Y);
  770. if (!string.IsNullOrEmpty(info.SubItem.Name.Trim()))
  771. {
  772. Rectangle rect = info.SubItem.Bounds;
  773. switch (info.SubItem.Name.Trim())
  774. {
  775. case "备注":
  776. this.txtOpenOrderRemark.Location = new Point(rect.Location.X + this.listViewData.Location.X + 3, rect.Location.Y + this.listViewData.Location.Y + 2);
  777. this.txtOpenOrderRemark.Size = rect.Size;
  778. this.txtOpenOrderRemark.Visible = true;
  779. this.txtOpenOrderRemark.Tag = info.SubItem.Name.Trim();
  780. this.txtOpenOrderRemark.Text = info.SubItem.Text.Trim();
  781. this.txtOpenOrderRemark.Focus();
  782. break;
  783. }
  784. }
  785. else
  786. {
  787. LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel ColumnModel = (LYFZ.Software.MainBusiness.DoorCityProcess.SetCustomControls.SetCustomControls_ProductColumnHeaderModel)this.listViewData.SelectedItems[0].Tag;
  788. DataTable dt = orbll.GetView_Custom("tb_ErpProduct", StrWhere: "Prod_Number = '" + ColumnModel.ProductNumber.Trim() + "'", ShowColumnName: "Prod_Thumbnail").Tables[0];
  789. if (dt.Rows.Count > 0)
  790. {
  791. if (!string.IsNullOrEmpty(dt.Rows[0]["Prod_Thumbnail"].ToString().Trim()))
  792. {
  793. LYFZ.Software.MainBusiness.InitialSet.Product.FrmProductPic frm = new InitialSet.Product.FrmProductPic();
  794. frm.FrmImage = LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.GetImage(LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.StringToByte(dt.Rows[0]["Prod_Thumbnail"].ToString()));
  795. frm.ShowDialog();
  796. }
  797. else
  798. { MessageBoxCustom.Show("产品未上传相片!"); return; }
  799. }
  800. }
  801. }
  802. /// <summary>
  803. /// 下拉控件离开事件
  804. /// </summary>
  805. /// <param name="sender"></param>
  806. /// <param name="e"></param>
  807. void txtOpenOrderRemark_Leave(object sender, EventArgs e)
  808. {
  809. try
  810. {
  811. if (this.txtOpenOrderRemark.Tag != null)
  812. {
  813. switch (this.txtOpenOrderRemark.Tag.ToString().Trim())
  814. {
  815. case "备注":
  816. this.listViewData.SelectedItems[0].SubItems[this.txtOpenOrderRemark.Tag.ToString().Trim()].Text = this.txtOpenOrderRemark.Text.Trim();
  817. break;
  818. }
  819. }
  820. }
  821. catch
  822. { }
  823. this.txtOpenOrderRemark.Visible = false;
  824. }
  825. /// <summary>
  826. /// 新订单
  827. /// </summary>
  828. /// <param name="sender"></param>
  829. /// <param name="e"></param>
  830. void btnNewOrder_Click(object sender, EventArgs e)
  831. {
  832. if (MessageBoxCustom.Show("新订单将清空所有数据,您确定要重置订单吗?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
  833. {
  834. Itemdel.Clear();
  835. this.listViewData.Items.Clear();
  836. this.StrOrderNumber = "";
  837. foreach (Control control in this.panelEx2.Controls)
  838. {
  839. if (control is LYFZ.ComponentLibrary.CheckBoxEx)
  840. { ((LYFZ.ComponentLibrary.CheckBoxEx)control).Checked = false; }
  841. else if (control is LYFZ.ComponentLibrary.TextBoxEx)
  842. {
  843. control.Text = "";
  844. control.Tag = null;
  845. }
  846. else if (control is LYFZ.ComponentLibrary.ComboBoxTreeViewEx)
  847. {
  848. control.Text = "";
  849. control.Tag = null;
  850. }
  851. else if (control is LYFZ.ComponentLibrary.DataGridViewEx)
  852. { ((LYFZ.ComponentLibrary.DataGridViewEx)control).Rows.Clear(); }
  853. else if (control is LYFZ.ComponentLibrary.MaskedTextBoxEx)
  854. {
  855. control.Text = "";
  856. control.Tag = null;
  857. }
  858. }
  859. this.txtClientPhone.ReadOnly = false;
  860. this.txtClientName.ReadOnly = false;
  861. this.chkClientSexMan.Enabled = true;
  862. this.chkClientWoman.Enabled = true;
  863. this.chkClientSexMan.Checked = true;
  864. this.txtCreateDatetime.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().ToString("yyyy-MM-dd");
  865. this.txtCreateName.Text = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  866. }
  867. }
  868. }
  869. }