FrmTwoSalesOrderUpdate.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.MainBusiness.FinancialManagement.TwoSalesOrder
  10. {
  11. public partial class FrmTwoSalesOrderUpdate : LYFZ.Software.UI.FinancialManagement.TwoSalesOrder.FrmTwoSalesOrderUpdate
  12. {
  13. LYFZ.BLL.BLL_ErpPayment ptbll = new BLL.BLL_ErpPayment();
  14. LYFZ.BLL.BLL_ErpTwoSalesOrder torbll = new BLL.BLL_ErpTwoSalesOrder();
  15. public FrmTwoSalesOrderUpdate()
  16. {
  17. }
  18. /// <summary>
  19. /// 客户编号
  20. /// </summary>
  21. string StrClientNumber = "";
  22. public bool IsSaveed = false;
  23. public string Tsorder_Number;
  24. Dictionary<string, string> DictDataArray = new Dictionary<string, string>();
  25. /// <summary>
  26. /// 窗体加载
  27. /// </summary>
  28. /// <param name="sender"></param>
  29. /// <param name="e"></param>
  30. protected override void FrmTwoSalesOrderUpdate_Load(object sender, EventArgs e)
  31. {
  32. try
  33. {
  34. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.HidePhoneControls(this.txtTsorder_Telephone);
  35. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBACHBBCDBGJAJDF", this.CtvTsorder_Name);
  36. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBACDAJDFDDEACGJ", this.cmbtreevConsumeType, StrWhere: "Sc_ClassCode!='BEBCADBFBCDFBGJHC' and Sc_ClassCode!='BEBCADBFBDDEGGABF' and Sc_ClassCode!='BEBCBFBICGDHCGBEJ'");
  37. DataTable dt = torbll.GetView_TwoSalesOrder(" Tsorder_Number = '" + this.Tsorder_Number + "'").Tables[0];
  38. if (dt.Rows.Count > 0)
  39. {
  40. this.cmbtreevConsumeType.Enabled = false;
  41. this.txtTsorder_CustomerName.ReadOnly = true;
  42. this.txtTsorder_Telephone.ReadOnly = true;
  43. this.StrClientNumber = dt.Rows[0]["Tsorder_CustomerNumber"].ToString();
  44. this.CtvTsorder_Name.Text = dt.Rows[0]["Tsorder_Name"].ToString();
  45. this.txtTsorder_CustomerName.Text = dt.Rows[0]["Tsorder_CustomerName"].ToString();
  46. this.txtTsorder_Telephone.Text = dt.Rows[0]["Tsorder_Telephone"].ToString();
  47. this.txtTsorder_Money.Text = dt.Rows[0]["Tsorder_Money"].ToString();
  48. this.txtTsorder_Quantity.Text = dt.Rows[0]["Tsorder_Quantity"].ToString();
  49. this.cmbtreevConsumeType.TagFindText(dt.Rows[0]["Tsorder_Category"].ToString().Trim());
  50. this.txtPay_OpenSingle.Text = dt.Rows[0]["User_Name"].ToString();
  51. this.txtTsorder_PersonHandling.Text = dt.Rows[0]["Tsorder_PersonHandlingName"].ToString();
  52. this.txtTsorder_Remark.Text = dt.Rows[0]["Tsorder_Remark"].ToString();
  53. this.txtTsorder_CreateDatetime.Text = Convert.ToDateTime(dt.Rows[0]["Tsorder_CreateDatetime"]).ToString("yyyy-MM-dd");
  54. this.Tsorder_Number = dt.Rows[0]["Tsorder_Number"].ToString();
  55. }
  56. }
  57. catch (Exception ex)
  58. { MessageBoxCustom.Show(ex.Message); }
  59. }
  60. /// <summary>
  61. /// 设置项目名称
  62. /// </summary>
  63. /// <param name="sender"></param>
  64. /// <param name="e"></param>
  65. protected override void btnSet_Click(object sender, EventArgs e)
  66. {
  67. try
  68. {
  69. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet();
  70. frm.TypeName = "BEBACHBBCDBGJAJDF";
  71. frm.Version = "Version";
  72. if (frm.ShowDialog() == DialogResult.OK)
  73. {
  74. string StrTag = this.CtvTsorder_Name.Tag.ToString().Trim();
  75. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBACHBBCDBGJAJDF", this.CtvTsorder_Name);
  76. this.CtvTsorder_Name.TagFindText(StrTag);
  77. }
  78. }
  79. catch (Exception ex) { MessageBoxCustom.Show(ex.Message); }
  80. }
  81. /// <summary>
  82. /// 设置二销类别
  83. /// </summary>
  84. /// <param name="sender"></param>
  85. /// <param name="e"></param>
  86. protected override void btnSet2_Click(object sender, EventArgs e)
  87. {
  88. try
  89. {
  90. LYFZ.Software.MainBusiness.InitialSet.FrmSystemSet frm = new InitialSet.FrmSystemSet();
  91. frm.TypeName = "BEBACDAJDFDDEACGJ";
  92. frm.Version = "Version";
  93. if (frm.ShowDialog() == DialogResult.OK)
  94. {
  95. string StrTag = this.cmbtreevConsumeType.Tag.ToString().Trim();
  96. LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_SystemCategory("BEBACDAJDFDDEACGJ", this.cmbtreevConsumeType, StrWhere: "Sc_ClassCode!='BEBCADBFBCDFBGJHC' and Sc_ClassCode!='BEBCADBFBDDEGGABF' and Sc_ClassCode!='BEBCBFBICGDHCGBEJ'" );
  97. this.cmbtreevConsumeType.TagFindText(StrTag);
  98. }
  99. }
  100. catch (Exception ex)
  101. { MessageBoxCustom.Show(ex.Message); }
  102. }
  103. /// <summary>
  104. /// 输入框设置
  105. /// </summary>
  106. /// <param name="sender"></param>
  107. /// <param name="e"></param>
  108. protected override void txtTsorder_Quantity_KeyPress(object sender, KeyPressEventArgs e)
  109. {
  110. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  111. { e.Handled = true; }
  112. }
  113. /// <summary>
  114. /// 输入框设置
  115. /// </summary>
  116. /// <param name="sender"></param>
  117. /// <param name="e"></param>
  118. protected override void txtTsorder_Money_KeyPress(object sender, KeyPressEventArgs e)
  119. {
  120. if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
  121. { e.Handled = true; }
  122. else if (Char.IsPunctuation(e.KeyChar))
  123. {
  124. if (e.KeyChar == '.')
  125. {
  126. if (((System.Windows.Forms.TextBox)sender).Text.LastIndexOf('.') != -1)
  127. { e.Handled = true; }
  128. }
  129. else if (e.KeyChar == '-')
  130. {
  131. if (((System.Windows.Forms.TextBox)sender).Text.LastIndexOf('-') != -1)
  132. { e.Handled = true; }
  133. }
  134. else
  135. { e.Handled = true; }
  136. }
  137. }
  138. /// <summary>
  139. /// 输入框设置
  140. /// </summary>
  141. /// <param name="sender"></param>
  142. /// <param name="e"></param>
  143. protected override void txtTsorder_Telephone_KeyPress(object sender, KeyPressEventArgs e)
  144. {
  145. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  146. { e.Handled = true; }
  147. }
  148. /// <summary>
  149. /// 保存
  150. /// </summary>
  151. /// <param name="sender"></param>
  152. /// <param name="e"></param>
  153. protected override void btnSave_Click(object sender, EventArgs e)
  154. {
  155. try
  156. {
  157. #region 判断不能为空
  158. if (string.IsNullOrEmpty(this.CtvTsorder_Name.Text))
  159. {
  160. MessageBoxCustom.Show("项目名称不能为空!");
  161. return;
  162. }
  163. if (string.IsNullOrEmpty(this.txtTsorder_CustomerName.Text))
  164. {
  165. MessageBoxCustom.Show("客户名称不能为空!");
  166. return;
  167. }
  168. //if (string.IsNullOrEmpty(txtTsorder_Telephone.Text))
  169. //{
  170. // MessageBoxCustom.Show("联系电话不能为空!");
  171. // return;
  172. //}
  173. //if (txtTsorder_Telephone.Text.Length != 11)
  174. //{
  175. // MessageBoxCustom.Show("联系电话必须为11位数!");
  176. // return;
  177. //}
  178. if (string.IsNullOrEmpty(this.txtTsorder_Money.Text))
  179. {
  180. MessageBoxCustom.Show("金额不能为空!");
  181. return;
  182. }
  183. if (string.IsNullOrEmpty(this.cmbtreevConsumeType.Text))
  184. {
  185. MessageBoxCustom.Show("二销类别不能为空!");
  186. return;
  187. }
  188. if (string.IsNullOrEmpty(this.txtTsorder_CreateDatetime.Text))
  189. {
  190. MessageBoxCustom.Show("日期不能为空!");
  191. return;
  192. }
  193. if (string.IsNullOrEmpty(this.txtTsorder_PersonHandling.Text))
  194. {
  195. MessageBoxCustom.Show("经手人不能为空!");
  196. return;
  197. }
  198. #endregion
  199. List<Helper.CommandInfo> clist = new List<Helper.CommandInfo>();
  200. LYFZ.Model.Model_ErpTwoSalesOrder model = torbll.GetModel("Tsorder_Number", this.Tsorder_Number);
  201. model.Tsorder_Name = CtvTsorder_Name.Text;
  202. model.Tsorder_Money = Convert.ToDecimal(txtTsorder_Money.Text);
  203. if (string.IsNullOrEmpty(txtTsorder_Quantity.Text))
  204. { model.Tsorder_Quantity = 0; }
  205. else
  206. { model.Tsorder_Quantity = Convert.ToInt32(txtTsorder_Quantity.Text); }
  207. model.Tsorder_Category = this.cmbtreevConsumeType.Tag.ToString().Trim();
  208. if (string.IsNullOrEmpty(model.Tsorder_PhotoNames))
  209. { model.Tsorder_PhotoNames = ""; }
  210. if (string.IsNullOrEmpty(model.Tsorder_Photography))
  211. { model.Tsorder_Photography = ""; }
  212. if (string.IsNullOrEmpty(model.Tsorder_PhotoPickupName))
  213. { model.Tsorder_PhotoPickupName = ""; }
  214. if (string.IsNullOrEmpty(model.Tsorder_PhotoPickup.ToString().Trim()))
  215. { model.Tsorder_PhotoPickup = 0; }
  216. model.Tsorder_Remark = txtTsorder_Remark.Text;
  217. model.Tsorder_UpdateDatetime = SDateTime.Now;
  218. model.Tsorder_CustomerNumber = this.StrClientNumber;
  219. clist.Add(torbll.GetUpdateCommandInfo(model));
  220. List<LYFZ.Model.Model_ErpPayment> mlist = ptbll.GetModelList("Pay_OrdNumber='" + Tsorder_Number + "'");
  221. for (int i = 0; i < mlist.Count; i++)
  222. {
  223. LYFZ.Model.Model_ErpPayment modelpt = mlist[i];
  224. modelpt.Pay_TwoPinsCategory = this.cmbtreevConsumeType.Tag.ToString().Trim();
  225. clist.Add(ptbll.GetUpdateCommandInfo(modelpt));
  226. }
  227. if (clist.Count > 0)
  228. {
  229. if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
  230. {
  231. MessageBoxCustom.Show("保存成功!");
  232. this.IsSaveed = true;
  233. this.Close();
  234. }
  235. else
  236. { MessageBoxCustom.Show("保存失败!"); }
  237. }
  238. }
  239. catch (Exception ex)
  240. { MessageBoxCustom.Show(ex.Message); }
  241. }
  242. /// <summary>
  243. /// 取消
  244. /// </summary>
  245. /// <param name="sender"></param>
  246. /// <param name="e"></param>
  247. protected override void btnCanle_Click(object sender, EventArgs e)
  248. {
  249. this.Close();
  250. }
  251. /// <summary>
  252. /// 选择客户
  253. /// </summary>
  254. /// <param name="sender"></param>
  255. /// <param name="e"></param>
  256. protected override void btnCustomer_Click(object sender, EventArgs e)
  257. {
  258. LYFZ.Software.MainBusiness.FinancialManagement.TwoSalesOrder.FrmCustomerSelete frm = new FrmCustomerSelete();
  259. frm.ShowDialog();
  260. if (!string.IsNullOrEmpty(frm.StrClientNumber))
  261. {
  262. DataTable dt = new BLL.BLL_ErpCustomer().GetList("Cus_CustomerNumber='" + frm.StrClientNumber + "'").Tables[0];
  263. if (dt.Rows.Count > 0)
  264. {
  265. this.txtTsorder_CustomerName.ReadOnly = true;
  266. this.txtTsorder_Telephone.ReadOnly = true;
  267. this.StrClientNumber = frm.StrClientNumber;
  268. this.txtTsorder_CustomerName.Text = dt.Rows[0]["Cus_Name"].ToString();
  269. this.txtTsorder_Telephone.Text = dt.Rows[0]["Cus_Telephone"].ToString();
  270. }
  271. }
  272. }
  273. }
  274. }