FrmSupplierSet.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  1. using LYFZ.ComponentLibrary;
  2. using System;
  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.InitialSet
  11. {
  12. public partial class FrmSupplierSet : LYFZ.Software.UI.InitialSet.FrmSupplierSet
  13. {
  14. public FrmSupplierSet()
  15. {
  16. this.txtQQ.KeyPress += txtQQ_KeyPress;
  17. }
  18. /// <summary>
  19. /// 窗体加载事件
  20. /// </summary>
  21. /// <param name="sender"></param>
  22. /// <param name="e"></param>
  23. protected override void FrmSupplierSet_Shown(object sender, EventArgs e)
  24. {
  25. WaitForm wf = new WaitForm();
  26. wf.ShowForm(this);
  27. try
  28. {
  29. Random action = new Random();
  30. txtVd_Number.Text = "SPH" + LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime().ToString("yyyyMMddHHmmss") + action.Next(100, 1000);
  31. Bind();
  32. #region 权限设置
  33. #region 保存新供应商
  34. if (dgv.SelectedRows.Count == 0)
  35. {
  36. if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.SupplierCompetence, CustomAttributes.OperatingAuthority.Add))
  37. {
  38. btnSave.Enabled = true;
  39. }
  40. else
  41. {
  42. btnSave.Enabled = false;
  43. }
  44. }
  45. #endregion
  46. #region 删除供应商
  47. if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.SupplierCompetence, CustomAttributes.OperatingAuthority.Delete))
  48. {
  49. btnDelete.Enabled = true;
  50. }
  51. else
  52. {
  53. btnDelete.Enabled = false;
  54. }
  55. #endregion
  56. #endregion
  57. wf.CloseForm();
  58. wf = null;
  59. }
  60. catch
  61. {
  62. wf.CloseForm();
  63. wf = null;
  64. }
  65. }
  66. /// <summary>
  67. /// 绑定供应商
  68. /// </summary>
  69. public void Bind()
  70. {
  71. dgv.Rows.Clear();
  72. LYFZ.BLL.BLL_ErpOrder Orderbll = new BLL.BLL_ErpOrder();
  73. //获取供应商表
  74. DataTable dt_s = Orderbll.GetView_Custom("tb_ErpVendor", StrWhere: "", ShowColumnName: " ID,Vd_Name,Vd_QQ,Vd_Address,Vd_Telephone,Vd_Fax,Vd_URL,Vd_Remark").Tables[0];
  75. if (dt_s.Rows.Count > 0)
  76. {
  77. for (int t = 0; t < dt_s.Rows.Count; t++)
  78. {
  79. #region
  80. DataGridViewRow dgvr = new DataGridViewRow();
  81. DataGridViewCell cell = null;
  82. cell = new DataGridViewTextBoxCell();
  83. cell.Value = dt_s.Rows[t]["ID"].ToString().Trim();
  84. dgvr.Cells.Add(cell);
  85. cell = new DataGridViewTextBoxCell();
  86. cell.Value = dt_s.Rows[t]["Vd_Name"].ToString().Trim();
  87. dgvr.Cells.Add(cell);
  88. cell = new DataGridViewTextBoxCell();
  89. cell.Value = dt_s.Rows[t]["Vd_QQ"].ToString().Trim();
  90. dgvr.Cells.Add(cell);
  91. cell = new DataGridViewTextBoxCell();
  92. cell.Value = dt_s.Rows[t]["Vd_Address"].ToString().Trim();
  93. dgvr.Cells.Add(cell);
  94. cell = new DataGridViewTextBoxCell();
  95. cell.Value = dt_s.Rows[t]["Vd_Telephone"].ToString();
  96. dgvr.Cells.Add(cell);
  97. cell = new DataGridViewTextBoxCell();
  98. cell.Value = dt_s.Rows[t]["Vd_Fax"].ToString().Trim();
  99. dgvr.Cells.Add(cell);
  100. cell = new DataGridViewTextBoxCell();
  101. cell.Value = dt_s.Rows[t]["Vd_URL"].ToString().Trim();
  102. dgvr.Cells.Add(cell);
  103. this.dgv.Rows.Add(dgvr);
  104. dgv.ClearSelection();
  105. #endregion
  106. }
  107. }
  108. }
  109. /// <summary>
  110. /// 保存供应商
  111. /// </summary>
  112. /// <param name="sender"></param>
  113. /// <param name="e"></param>
  114. protected override void btnSave_Click(object sender, EventArgs e)
  115. {
  116. try
  117. {
  118. #region 判断资料不能为空
  119. if (string.IsNullOrEmpty(this.txtVd_Number.Text.Trim()))
  120. {
  121. MessageBoxCustom.Show("供应商编号能为空!");
  122. return;
  123. }
  124. if (string.IsNullOrEmpty(this.txtVd_Name.Text.Trim()))
  125. {
  126. MessageBoxCustom.Show("供应商名称不能为空!");
  127. return;
  128. }
  129. if (this.txtVd_Name.Text.Trim().Contains(","))
  130. {
  131. MessageBoxCustom.Show("供应商名称不能含有','!");
  132. return;
  133. }
  134. if (string.IsNullOrEmpty(this.txtVd_Address.Text.Trim()))
  135. {
  136. MessageBoxCustom.Show("供应商地址不能为空!");
  137. return;
  138. }
  139. if (string.IsNullOrEmpty(txtVd_Telephone.Text.Trim()))
  140. {
  141. MessageBoxCustom.Show("电话不能为空!");
  142. return;
  143. }
  144. //if (!string.IsNullOrEmpty(txtVd_Telephone.Text))
  145. //{
  146. // if (txtVd_Telephone.Text.Length != 11)
  147. // {
  148. // MessageBoxCustom.Show("手机号码必须为11位数!");
  149. // return;
  150. // }
  151. //}
  152. //if (CheckPhoneNumber(txtVd_Telephone.Text) == false)
  153. //{
  154. // MessageBoxCustom.Show(txtVd_Telephone.Text + " 手机号码格式不正确!");
  155. // return;
  156. // }
  157. #endregion
  158. LYFZ.BLL.BaseBLL.BaseBLL_ErpVendor bll = new BLL.BaseBLL.BaseBLL_ErpVendor();
  159. LYFZ.Model.Model_ErpVendor model = new Model.Model_ErpVendor();
  160. DataTable dt = new DataTable();
  161. #region 增加
  162. try
  163. {
  164. if (this.dgv.SelectedRows.Count == 0)
  165. {
  166. dt = bll.GetList("Vd_Name='" + txtVd_Name.Text + "'", "ID desc").Tables[0];
  167. if (dt.Rows.Count > 0)
  168. {
  169. MessageBoxCustom.Show("供应商名称已经存在!");
  170. this.txtVd_Name.Text = "";
  171. this.txtVd_Name.Focus();
  172. return;
  173. }
  174. model.Vd_Category = "0";
  175. model.Vd_Number = txtVd_Number.Text;
  176. model.Vd_Name = txtVd_Name.Text;
  177. model.Vd_QQ = this.txtQQ.Text.Trim();
  178. model.Vd_Address = txtVd_Address.Text;
  179. model.Vd_Telephone = txtVd_Telephone.Text;
  180. model.Vd_Fax = txtVd_Fax.Text;
  181. model.Vd_URL = txtVd_URL.Text;
  182. model.Vd_Remark = txtVd_Remark.Text;
  183. model.Vd_ContactPerson = "";
  184. if (bll.Add(model) == true)
  185. {
  186. MessageBoxCustom.Show("保存成功!");
  187. BindClear();
  188. }
  189. else
  190. { MessageBoxCustom.Show("保存失败!"); }
  191. }
  192. }
  193. catch (Exception ex)
  194. { MessageBoxCustom.Show(ex.Message); }
  195. #endregion
  196. #region 更新
  197. try
  198. {
  199. if (this.dgv.SelectedRows.Count > 0)
  200. {
  201. int id = Convert.ToInt32(dgv.CurrentRow.Cells["ID"].Value);
  202. #region 判断供应商是否存在
  203. if (!string.IsNullOrEmpty(txtVd_Name.Text))
  204. {
  205. dt = bll.GetList("id=" + id + "", "ID desc").Tables[0];
  206. string Vd_Name = dt.Rows[0]["Vd_Name"].ToString();
  207. if (Vd_Name != txtVd_Name.Text)
  208. {
  209. dt = bll.GetList("Vd_Name='" + txtVd_Name.Text + "'").Tables[0];
  210. if (dt.Rows.Count > 0)
  211. {
  212. MessageBoxCustom.Show("供应商名称已经存在!");
  213. return;
  214. }
  215. }
  216. }
  217. #endregion
  218. model.ID = Convert.ToInt32(id);
  219. model.Vd_Category = "0";
  220. model.Vd_Number = txtVd_Number.Text;
  221. model.Vd_Name = txtVd_Name.Text;
  222. model.Vd_QQ = this.txtQQ.Text.Trim();
  223. model.Vd_Address = txtVd_Address.Text;
  224. model.Vd_Telephone = txtVd_Telephone.Text;
  225. model.Vd_Fax = txtVd_Fax.Text;
  226. model.Vd_URL = txtVd_URL.Text;
  227. model.Vd_Remark = txtVd_Remark.Text;
  228. if (bll.Update(model) == true)
  229. {
  230. MessageBoxCustom.Show("保存成功!");
  231. BindClear();
  232. }
  233. else { MessageBoxCustom.Show("保存失败!"); }
  234. }
  235. }
  236. catch (Exception ex) { MessageBoxCustom.Show(ex.Message); }
  237. #endregion
  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 dgv_Click(object sender, EventArgs e)
  248. {
  249. try
  250. {
  251. if (this.dgv.SelectedRows.Count > 0)
  252. {
  253. //更新赋值
  254. LYFZ.BLL.BaseBLL.BaseBLL_ErpVendor userbll = new BLL.BaseBLL.BaseBLL_ErpVendor();
  255. int id = Convert.ToInt32(this.dgv.CurrentRow.Cells["iD"].Value.ToString());
  256. DataTable dt = userbll.GetList("id=" + id + "").Tables[0];
  257. this.txtVd_Number.Text = dt.Rows[0]["Vd_Number"].ToString();
  258. this.txtVd_Name.Text = dt.Rows[0]["Vd_Name"].ToString();
  259. this.txtQQ.Text = dt.Rows[0]["Vd_QQ"].ToString().Trim();
  260. this.txtVd_Address.Text = dt.Rows[0]["Vd_Address"].ToString();
  261. this.txtVd_Telephone.Text = dt.Rows[0]["Vd_Telephone"].ToString();
  262. this.txtVd_Fax.Text = dt.Rows[0]["Vd_Fax"].ToString();
  263. this.txtVd_URL.Text = dt.Rows[0]["Vd_URL"].ToString();
  264. this.txtVd_Remark.Text = dt.Rows[0]["Vd_Remark"].ToString();
  265. }
  266. #region 更新供应商
  267. if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.SupplierCompetence, CustomAttributes.OperatingAuthority.Update))
  268. { btnSave.Enabled = true; }
  269. else
  270. { btnSave.Enabled = false; }
  271. #endregion
  272. }
  273. catch (Exception ex)
  274. { MessageBoxCustom.Show(ex.Message); }
  275. }
  276. /// <summary>
  277. /// 增加供应商
  278. /// </summary>
  279. /// <param name="sender"></param>
  280. /// <param name="e"></param>
  281. protected override void btnAdd_Click(object sender, EventArgs e)
  282. {
  283. try
  284. { BindClear(); }
  285. catch (Exception ex)
  286. { MessageBoxCustom.Show(ex.Message); }
  287. }
  288. /// <summary>
  289. /// 删除供应商
  290. /// </summary>
  291. /// <param name="sender"></param>
  292. /// <param name="e"></param>
  293. protected override void btnDelete_Click(object sender, EventArgs e)
  294. {
  295. try
  296. {
  297. if (this.dgv.SelectedRows.Count == 0)
  298. {
  299. MessageBoxCustom.Show("请选中你要删除的数据!");
  300. return;
  301. }
  302. int id = Convert.ToInt32(dgv.CurrentRow.Cells["ID"].Value);
  303. LYFZ.BLL.BaseBLL.BaseBLL_ErpVendor bll = new BLL.BaseBLL.BaseBLL_ErpVendor();
  304. DataTable dt = bll.GetList("id=" + id + "", "ID desc").Tables[0];
  305. if (MessageBoxCustom.Show("你确定要删除吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
  306. {
  307. if (bll.Delete(id) == true)
  308. {
  309. #region 写入操作日志
  310. string logsContent = "删除供应商名称:" + txtVd_Name.Text.Trim();
  311. LYFZ.BLL.BLL_ErpSystemLogs.WriteSystemLog(LYFZ.EnumPublic.SystemLogsType.删除供应商, logsContent, LYFZ.BLL.BLL_ErpUser.UsersModel.User_EmployeeID, LYFZ.BLL.BLL_ErpUser.UsersModel.User_Name);
  312. //LYFZ.BLL.BLL_ErpSystemLogs systemLogsBll = new BLL.BLL_ErpSystemLogs();
  313. //LYFZ.Model.Model_ErpSystemLogs systemLogsModel = new Model.Model_ErpSystemLogs();
  314. //systemLogsModel.Slogs_Type = "user";
  315. //systemLogsModel.Slogs_Topic = "删除供应商";
  316. //systemLogsModel.Slogs_Content = "删除供应商名称:" +txtVd_Name.Text.Trim();
  317. //systemLogsModel.Slogs_UserName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name;
  318. //systemLogsModel.Slogs_IP = "";
  319. //systemLogsModel.Slogs_CreateDatetime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime();
  320. //systemLogsModel.Slogs_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID;
  321. //systemLogsBll.Add(systemLogsModel);
  322. #endregion
  323. MessageBoxCustom.Show("删除成功!");
  324. BindClear();
  325. }
  326. else
  327. { MessageBoxCustom.Show("删除失败!"); }
  328. }
  329. }
  330. catch (Exception ex)
  331. { MessageBoxCustom.Show(ex.Message); }
  332. }
  333. /// <summary>
  334. /// 关闭供应商页面
  335. /// </summary>
  336. /// <param name="sender"></param>
  337. /// <param name="e"></param>
  338. protected override void btnClose_Click(object sender, EventArgs e)
  339. { this.Close(); }
  340. /// <summary>
  341. /// 输入框设置
  342. /// </summary>
  343. /// <param name="sender"></param>
  344. /// <param name="e"></param>
  345. protected override void txtVd_Telephone_KeyPress(object sender, KeyPressEventArgs e)
  346. {
  347. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  348. { e.Handled = true; }
  349. }
  350. /// <summary>
  351. /// 输入框设置
  352. /// </summary>
  353. /// <param name="sender"></param>
  354. /// <param name="e"></param>
  355. void txtQQ_KeyPress(object sender, KeyPressEventArgs e)
  356. {
  357. if (!Char.IsNumber(e.KeyChar) && !Char.IsControl(e.KeyChar))
  358. { e.Handled = true; }
  359. }
  360. /// <summary>
  361. /// 清空与刷新
  362. /// </summary>
  363. public void BindClear()
  364. {
  365. txtVd_Number.Text = "";
  366. txtVd_Name.Text = "";
  367. this.txtQQ.Text = "";
  368. txtVd_Address.Text = "";
  369. txtVd_Telephone.Text = "";
  370. txtVd_Fax.Text = "";
  371. txtVd_URL.Text = "";
  372. txtVd_Remark.Text = "";
  373. FrmSupplierSet_Shown(this, null);
  374. }
  375. }
  376. }