Make_UpdateCollectCode.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  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. using UAS_MES.DataOperate;
  11. using UAS_MES.Entity;
  12. using UAS_MES.PublicMethod;
  13. namespace UAS_MES.Make
  14. {
  15. public partial class Make_UpdateCollectCode : Form
  16. {
  17. AutoSizeFormClass asc = new AutoSizeFormClass();
  18. LogStringBuilder sql = new LogStringBuilder();
  19. DataHelper dh;
  20. DataTable dt;
  21. DataTable info;
  22. DataTable macRange;
  23. int step = 0;
  24. List<CheckBox> list = new List<CheckBox>();//记录勾选的控件
  25. string ms_id = "";
  26. StringBuilder sb;//存更新makeserial表的数据
  27. StringBuilder toSi;//存储更新sninfo的数据
  28. StringBuilder insertSninfoFields;
  29. StringBuilder insertSninfoValues;
  30. string sncode = "";
  31. StringBuilder oldData;
  32. //记录新数据
  33. StringBuilder newData;
  34. public Make_UpdateCollectCode()
  35. {
  36. InitializeComponent();
  37. }
  38. private void Make_UpdateCollectCode_Load(object sender, EventArgs e)
  39. {
  40. asc.controllInitializeSize(this);
  41. dh = new DataHelper();
  42. OperateResult.AppendText(">>请先勾选需要更新的项,通过采集栏输入SN,更新项具体数据\n", Color.Black);
  43. inputValue.Focus();
  44. }
  45. private void Make_UpdateCollectCode_FormClosing(object sender, FormClosingEventArgs e)
  46. {
  47. }
  48. private void Make_UpdateCollectCode_SizeChanged(object sender, EventArgs e)
  49. {
  50. asc.controlAutoSize(this);
  51. }
  52. private void inputValue_KeyDown(object sender, KeyEventArgs e)
  53. {
  54. if (e.KeyCode == Keys.Enter)
  55. {
  56. //输入不能为空
  57. if (inputValue.Text == "")
  58. {
  59. OperateResult.AppendText("<<输入不能为空\n", Color.Red);
  60. return;
  61. }
  62. OperateResult.AppendText(">>" + inputValue.Text + "\n", Color.Black);
  63. if (step == 0)
  64. {
  65. //避免第一步出错的时候添加不需要的数据
  66. if (list.Count!=0)
  67. {
  68. list.Clear();
  69. }
  70. //判断是否有已勾选的项次
  71. foreach (Control ctl in collects.Controls)
  72. {
  73. if ((ctl as CheckBox).Checked)
  74. {
  75. list.Add((ctl as CheckBox));
  76. }
  77. }
  78. if (list.Count == 0)
  79. {
  80. //无勾选的内容
  81. OperateResult.AppendText("<<请先勾选需要更新的信息\n", Color.Red, inputValue);
  82. return;
  83. }
  84. //判断TSN或者SN是否存在
  85. ms_id = dh.getFieldDataByCondition("makeserial", "max(ms_id)", "ms_sncode ='" + inputValue.Text + "' or exists (select 1 from makesnrelation where beforesn='" + inputValue.Text + "' and ms_makecode=makecode)").ToString();
  86. sncode = inputValue.Text;
  87. if (ms_id == "")
  88. {
  89. OperateResult.AppendText("<<SN错误,不存在\n", Color.Red, inputValue);
  90. return;
  91. }
  92. //查询序列号状态
  93. dt = (DataTable)dh.ExecuteSql("select ms_status,ms_makecode from makeserial where ms_id='" + ms_id + "'", "select");
  94. //序列号状态码必须是3
  95. if (dt.Rows[0]["ms_status"].ToString() != "3")
  96. {
  97. OperateResult.AppendText("<<序列号必须是待维修状态\n", Color.Red, inputValue);
  98. return;
  99. }
  100. sql.Clear();
  101. sql.Append("select * from (select rownum rn, ms_prodcode,ms_makecode,ms_salecode,");
  102. sql.Append("ms_mac,ms_imei1,ms_bt,ms_netcode,ms_imei2,ms_imei3 from makeserial ");
  103. sql.Append("where ms_firstsn=(select ms_firstsn from makeserial where ms_id='" + ms_id + "')");
  104. sql.Append(" and (nvl(ms_mac,' ')<>' ' or nvl(ms_bt,' ')<>' ' or nvl(ms_imei1,' ')<>' ' ) order by ms_id asc)where rn=1");
  105. dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  106. //无值则提示没有需要更新的信息
  107. if (dt.Rows.Count == 0)
  108. {
  109. OperateResult.AppendText("<<序列号" + inputValue.Text + "没有需要更新的信息\n", Color.Red, inputValue);
  110. return;
  111. }
  112. else
  113. {
  114. info = (DataTable)dh.ExecuteSql("select psr_type,psr_prefix,psr_length from productsnrelation where psr_prodcode='" + dt.Rows[0]["ms_prodcode"].ToString() + "'", "select");
  115. //查询规则显示
  116. collectCodeRules.DataSource = info;
  117. }
  118. step = 1;
  119. OperateResult.AppendText("<<请输入" + ((CheckBox)list[0]).Text + "\n", Color.Green, inputValue);
  120. sb = new StringBuilder();
  121. toSi = new StringBuilder();//初始化以备更新sninfo表
  122. oldData = new StringBuilder();
  123. newData = new StringBuilder();
  124. insertSninfoFields = new StringBuilder();
  125. insertSninfoValues = new StringBuilder();
  126. }
  127. else
  128. //采集的关联采集信息
  129. {
  130. //从第一个开始
  131. switch (((CheckBox)list[step - 1]).Text)
  132. {
  133. case "MAC/WIFI":
  134. case "BT":
  135. if (dh.CheckExist("makeserial", "ms_" + ((CheckBox)list[step - 1]).Text.Split('/')[0] + " ='" + inputValue.Text.Replace(":", "").Replace("-", "") + "' and ms_id='" + ms_id + "'"))
  136. {
  137. //如果一样提示用户“MAC 不允许与原来的值一致”,“请采集MAC”;
  138. OperateResult.AppendText("<<" + ((CheckBox)list[step - 1]).Text.Split('/')[0] + "不允许与原来的值一致\n", Color.Red);
  139. OperateResult.AppendText(">>请采集" + ((CheckBox)list[step - 1]).Text.Split('/')[0] + "\n", Color.Black, inputValue);
  140. return;
  141. }
  142. else
  143. {
  144. //判断是否有合同号MAC范围
  145. //if (dh.CheckExist("SaleMacBTRange", "sr_sacode='" + dt.Rows[0]["ms_salecode"].ToString() + "' and sr_type='" + ((CheckBox)list[step - 1]).Text.Split('/')[0] + "'"))
  146. //{
  147. // //有范围的情况下看是否在范围内
  148. // if (!dh.CheckExist("SaleMacBTRange", "sr_sacode='" + dt.Rows[0]["ms_salecode"].ToString() + "' and sr_type='" + ((CheckBox)list[step - 1]).Text.Split('/')[0] + "' AND '" + inputValue.Text.Replace(":", "").Replace("-", "") + "' between sr_startcode and sr_endcode"))
  149. // {
  150. // OperateResult.AppendText("<<" + ((CheckBox)list[step - 1]).Text.Split('/')[0] + ":" + inputValue.Text + "错误,不在合同防呆范围内\n", Color.Red, inputValue);
  151. // OperateResult.AppendText(">>请采集" + ((CheckBox)list[step - 1]).Text.Split('/')[0] + "\n", Color.Black);
  152. // return;
  153. // }
  154. //}
  155. sql.Clear();
  156. sql.Append("select sr_startcode,sr_endcode from SaleMacBTRange where sr_sacode = '" + dt.Rows[0]["ms_salecode"].ToString() + "' and sr_type = '"+ ((CheckBox)list[step - 1]).Text.Split('/')[0] + "'");
  157. macRange = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  158. if (macRange.Rows.Count > 0)
  159. {
  160. if (!(macRange.Rows[0]["sr_startcode"].ToString().Replace(":", "").Replace("-", "").CompareTo(inputValue.Text.Replace(":", "").Replace("-", "")) <= 0 && macRange.Rows[0]["sr_endcode"].ToString().Replace(":", "").Replace("-", "").CompareTo(inputValue.Text.Replace(":", "").Replace("-", "")) >= 0))
  161. {
  162. OperateResult.AppendText("<<" + ((CheckBox)list[step - 1]).Text.Split('/')[0] + ":" + inputValue.Text + "错误,不在合同防呆范围内\n", Color.Red, inputValue);
  163. OperateResult.AppendText(">>请采集" + ((CheckBox)list[step - 1]).Text.Split('/')[0] + "\n", Color.Black);
  164. return;
  165. }
  166. }
  167. //验证长度前缀
  168. if (!checkPrefixAndLength())
  169. {
  170. return;
  171. }
  172. //验证长度前缀通过,验证数据库
  173. if (dh.CheckExist("makeserial", "ms_status in (1,2,3) and nvl(ms_nextmacode,' ')=' ' and ms_" + ((CheckBox)list[step - 1]).Text.Split('/')[0] + " ='" + inputValue.Text.Replace(":", "").Replace("-", "") + "'"))
  174. {
  175. OperateResult.AppendText("<<" + ((CheckBox)list[step - 1]).Text + ":" + inputValue.Text + "错误,已被使用\n", Color.Red, inputValue);
  176. return;
  177. }
  178. //通过校验
  179. sb.Append("ms_" + ((CheckBox)list[step - 1]).Text.Split('/')[0] + " = '" + inputValue.Text.Replace(":", "").Replace("-", "") + "',");
  180. toSi.Append("si_" + ((CheckBox)list[step - 1]).Text.Split('/')[0] + " = '" + inputValue.Text.Replace(":", "").Replace("-", "") + "',");
  181. insertSninfoFields.Append("si_" + ((CheckBox)list[step - 1]).Text.Split('/')[0] + ",");
  182. insertSninfoValues.Append("'"+inputValue.Text.Replace(":", "").Replace("-", "") + "',");
  183. oldData.Append("ms_" + ((CheckBox)list[step - 1]).Text.Split('/')[0] + ":" + dt.Rows[0]["ms_" + ((CheckBox)list[step - 1]).Text.Split('/')[0]].ToString() + ",");
  184. newData.Append("ms_" + ((CheckBox)list[step - 1]).Text.Split('/')[0] + ":" + inputValue.Text.Replace(":", "").Replace("-", "") + ",");
  185. }
  186. break;
  187. case "网标":
  188. case "IMEI1":
  189. case "IMEI2":
  190. case "IMEI3":
  191. //验证长度前缀
  192. if (!checkPrefixAndLength())
  193. {
  194. return;
  195. }
  196. //验证长度前缀通过,验证数据库
  197. if (dh.CheckExist("makeserial", "ms_status in (1,2,3) and nvl(ms_nextmacode,' ')=' ' and ms_" + (((CheckBox)list[step - 1]).Text == "网标" ? "NETCODE" : ((CheckBox)list[step - 1]).Text) + " ='" + inputValue.Text + "'"))
  198. {
  199. OperateResult.AppendText("<<" + ((CheckBox)list[step - 1]).Text + ":" + inputValue.Text + "错误,已被使用\n", Color.Red, inputValue);
  200. return;
  201. }
  202. //通过校验
  203. sb.Append("ms_" + (((CheckBox)list[step - 1]).Text == "网标" ? "NETCODE" : ((CheckBox)list[step - 1]).Text) + " = '" + inputValue.Text + "',");
  204. toSi.Append("si_" + (((CheckBox)list[step - 1]).Text == "网标" ? "NETCODE" : ((CheckBox)list[step - 1]).Text) + " = '" + inputValue.Text + "',");
  205. insertSninfoFields.Append("si_" + (((CheckBox)list[step - 1]).Text == "网标" ? "NETCODE" : ((CheckBox)list[step - 1]).Text) + ",");
  206. insertSninfoValues.Append("'"+inputValue.Text+"',");
  207. oldData.Append("ms_" + (((CheckBox)list[step - 1]).Text == "网标" ? "NETCODE" : ((CheckBox)list[step - 1]).Text) + ":" + dt.Rows[0]["ms_" + (((CheckBox)list[step - 1]).Text == "网标" ? "NETCODE" : ((CheckBox)list[step - 1]).Text)].ToString() + ",");
  208. newData.Append("ms_" + (((CheckBox)list[step - 1]).Text == "网标" ? "NETCODE" : ((CheckBox)list[step - 1]).Text) + ":" + inputValue.Text + ",");
  209. break;
  210. }
  211. //判断是否是最后一个
  212. if (step == list.Count)
  213. {
  214. //更新数据库
  215. sql.Clear();
  216. sql.Append("update makeserial set ");
  217. sql.Append(sb.ToString().Substring(0, sb.ToString().Length - 1));
  218. sql.Append(" where ms_id='" + ms_id + "'");
  219. dh.ExecuteSql(sql.GetString(), "update");
  220. //提示烧录成功
  221. OperateResult.AppendText(">>烧录成功\n", Color.Green);
  222. //更新sninfo表
  223. insert2Sninfo(sncode);
  224. //记录日志
  225. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, dt.Rows[0]["ms_makecode"].ToString(), User.UserLineCode, User.UserSourceCode, "更新烧录","原:"+oldData.ToString()+",新:" + newData.ToString(), sncode, "");
  226. step = 0;
  227. //清除规则
  228. BaseUtil.CleanDataTableData(info);
  229. //聚焦,提示
  230. inputValue.Focus();
  231. OperateResult.AppendText("<<请采集SN\n", Color.Black, inputValue);
  232. //清除LIST
  233. list.Clear();
  234. }
  235. else
  236. {
  237. step++;
  238. //请输入下一个
  239. OperateResult.AppendText(">>请输入" + ((CheckBox)list[step - 1]).Text.Split('/')[0] + "\n", Color.Green, inputValue);
  240. }
  241. }
  242. }
  243. }
  244. private bool checkPrefixAndLength()
  245. {
  246. //找到对应的规则
  247. for (int i = 0; i < info.Rows.Count; i++)
  248. {
  249. if ((((CheckBox)list[step - 1]).Text.Split('/')[0] == "网标" ? "NETCODE" : ((CheckBox)list[step - 1]).Text.Split('/')[0]) == info.Rows[i]["psr_type"].ToString())
  250. {
  251. //校验长度
  252. if ((info.Rows[i]["psr_length"].ToString() == "0" ? true : inputValue.Text.Length != int.Parse(info.Rows[i]["psr_length"].ToString())))
  253. {
  254. OperateResult.AppendText(">>" + info.Rows[i]["psr_type"] + "长度校验不通过,请重新输入\n", Color.Red);
  255. OperateResult.AppendText(">>请重新输入" + info.Rows[i]["psr_type"] + "\n", Color.Black, inputValue);
  256. return false;
  257. }
  258. //校验前缀
  259. //以|符号分割前缀
  260. string[] preFixs = info.Rows[i]["psr_prefix"].ToString().Split('|');
  261. //只要满足其中一个前缀条件即可
  262. bool isfit = false;
  263. for (int j = 0; j < preFixs.Length; j++)
  264. {
  265. if (preFixs[j] == "" ? true : inputValue.Text.StartsWith(preFixs[j]))
  266. {
  267. //满足其中一条即可
  268. isfit = true;
  269. break;
  270. }
  271. }
  272. if (!isfit)
  273. {
  274. OperateResult.AppendText(">>" + info.Rows[i]["psr_type"] + "前缀校验不通过,请重新输入\n", Color.Red);
  275. OperateResult.AppendText(">>请重新输入" + info.Rows[i]["psr_type"] + "\n", Color.Black, inputValue);
  276. return false;
  277. }
  278. return true;
  279. }
  280. }
  281. return true;
  282. }
  283. private void Mac_CheckedChanged(object sender, EventArgs e)
  284. {
  285. //当有checkBox状态改变的时候
  286. if (step != 0)
  287. {
  288. //步骤码归零
  289. step = 0;
  290. //清除list,信息栏
  291. list.Clear();
  292. BaseUtil.CleanDataTableData(info);
  293. //聚焦,提示
  294. inputValue.Focus();
  295. OperateResult.AppendText(">>请采集SN\n", Color.Black);
  296. }
  297. }
  298. private void insert2Sninfo(string sn)
  299. {
  300. //查询是否有记录
  301. string siid = dh.getFieldDataByCondition("sninfo", "max(si_id) si_id", "si_sn='"+sn+"' or si_sn in(select sn from makesnrelation where sn='"+sn+"' or beforesn = '"+sn+"' )").ToString();
  302. //是否为空
  303. if (siid == "")
  304. {
  305. //插入新的数据
  306. sql.Clear();
  307. sql.Append("insert into sninfo(si_id,si_sn,"+ insertSninfoFields.ToString().Substring(0, insertSninfoFields.ToString().Length - 1) + ") values ");
  308. sql.Append("(sninfo_seq.nextval,'"+sn+"',"+ insertSninfoValues.ToString().Substring(0, insertSninfoValues.ToString().Length - 1) + ")");
  309. dh.ExecuteSql(sql.GetString(),"insert");
  310. }
  311. else
  312. {
  313. //更新sninfo
  314. sql.Clear();
  315. sql.Append("update sninfo set ");
  316. sql.Append(toSi.ToString().Substring(0, toSi.ToString().Length - 1));
  317. sql.Append(" where si_id='" + siid + "'");
  318. dh.ExecuteSql(sql.GetString(), "update");
  319. }
  320. }
  321. }
  322. }