客户标签维护.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  1. using LabelManager2;
  2. using System;
  3. using System.Data;
  4. using System.Drawing;
  5. using System.Text;
  6. using System.IO;
  7. using System.Windows.Forms;
  8. using UAS_LabelMachine.CustomControl;
  9. using UAS_LabelMachine.Properties;
  10. using UAS_LabelMachine.PublicMethod;
  11. using UAS_LabelMachine.Entity;
  12. namespace UAS_LabelMachine
  13. {
  14. public partial class 客户标签维护 : Form
  15. {
  16. DataHelper dh;
  17. DataTable dt;
  18. //设置Grid中Combox的静态数据,这个格式是必须的,#前面是展示值,#后面是实际值
  19. string[] labeltype = { "单盘#单盘", "中盒#中盒", "外箱#外箱", "全部#" };
  20. //记录上次筛选时的条件,如果本次和上次相同则不进行查询
  21. string LastCondition = "";
  22. //用于拼接条件查询
  23. StringBuilder condition = new StringBuilder();
  24. StringBuilder sql = new StringBuilder();
  25. /*CodeSoft新建打印机引擎*/
  26. ApplicationClass lbl;
  27. Document doc;
  28. /*BarTender新建打印机引擎*/
  29. //private Engine engine = null;
  30. //private LabelFormatDocument format ;
  31. //点击行的LabelCode
  32. string LabelCode = "";
  33. //模板的路径
  34. string LabelPath = "";
  35. //模板编号的ID
  36. string CL_ID1;
  37. string CL_ID2;
  38. //Label表的主键,用于弹窗的传参
  39. string La_id1;
  40. //添加在grid末列的操作列
  41. DataGridViewImageColumn PreviewColumn = new DataGridViewImageColumn
  42. {
  43. Image = Resources.preview_16px_25980_easyicon_net,
  44. Width = 40,
  45. Name = "预览",
  46. ToolTipText = "预览模板参数",
  47. Tag = "Read",
  48. AutoSizeMode = DataGridViewAutoSizeColumnMode.None
  49. };
  50. DataGridViewImageColumn OperateColumn = new DataGridViewImageColumn
  51. {
  52. Image = Resources.write_15_893687707641px_1181413_easyicon_net,
  53. Width = 40,
  54. Name = "编辑",
  55. ToolTipText = "编辑模板",
  56. Tag = "Read",
  57. AutoSizeMode = DataGridViewAutoSizeColumnMode.None
  58. };
  59. AutoSizeFormClass asc = new AutoSizeFormClass();
  60. public 客户标签维护()
  61. {
  62. InitializeComponent();
  63. cu_code.FormName = Name;
  64. cu_code.SetValueField = new string[] { "cu_code", "cu_name" };
  65. cu_code.TableName = "(select distinct cu_code,cu_name from customer left join customerlabel on cu_code=cl_custcode)";
  66. cu_code.SelectField = "cu_code # 客户编号,cu_name # 客户名称";
  67. 客户编号.FormName = Name;
  68. 客户编号.SetValueField = new string[] { "客户编号" };
  69. 客户编号.TableName = "(select distinct cu_code,cu_name from customer left join customerlabel on cu_code=cl_custcode)";
  70. 客户编号.SelectField = "cu_code # 客户编号,cu_name # 客户名称";
  71. la_code.FormName = Name;
  72. la_code.SetValueField = new string[] { "la_code" };
  73. la_code.TableName = "label";
  74. la_code.SelectField = "la_code # 模板编号,la_name # 模板名称";
  75. NetURL.Text = Settings.Default.ShareUrl;
  76. }
  77. private void 条码维护_Load(object sender, EventArgs e)
  78. {
  79. if (Settings.Default.FTPAddress == "")
  80. {
  81. FTPShare.Visible = false;
  82. }
  83. PortModel.Checked = Settings.Default.FTPModel;
  84. dh = SystemInf.dh;
  85. condition.Append("");
  86. ChooseAll.ChooseAll(LabelDataGridView);
  87. BaseUtil.SetComboxData(la_type, "display", "value", labeltype);
  88. //加载下拉框的静态值
  89. LoadData();
  90. Width = Width + 1;
  91. asc.controllInitializeSize(this);
  92. lbl = new ApplicationClass();
  93. Width = Width + 1;
  94. }
  95. private void LabelDataGridView_CellContentClick(object sender, DataGridViewCellEventArgs e)
  96. {
  97. if (LabelDataGridView.Columns[e.ColumnIndex].HeaderText == "预览")
  98. {
  99. if (lbl.Documents.Count > 0)
  100. {
  101. lbl.ActiveDocument.Close();
  102. }
  103. //获取路径和标签名称
  104. LabelPath = LabelDataGridView.Rows[e.RowIndex].Cells["cl_labelurl"].Value.ToString();
  105. LabelCode = LabelDataGridView.Rows[e.RowIndex].Cells["cl_labelcode"].Value.ToString();
  106. CL_ID1 = LabelDataGridView.Rows[e.RowIndex].Cells["cl_id"].Value.ToString();
  107. La_id1 = LabelDataGridView.Rows[e.RowIndex].Cells["la_id"].Value.ToString();
  108. System.DateTime time;
  109. try
  110. {
  111. time = Convert.ToDateTime(LabelDataGridView.Rows[e.RowIndex].Cells["cl_date"].Value.ToString());
  112. }
  113. catch (Exception)
  114. {
  115. time = System.DateTime.Now;
  116. }
  117. if (CodeSoft.Checked)
  118. {
  119. string LabelName = LabelDataGridView.Rows[e.RowIndex].Cells["cl_labelname"].Value.ToString();
  120. doc = lbl.Documents.Open(BaseUtil.GetLabelUrl(LabelPath, LabelName, time));
  121. Bitmap bit = new Bitmap(doc.CopyImageToFile());
  122. pictureBox1.Image = bit;
  123. //如果文件已不存在则进行提示
  124. if (doc == null)
  125. {
  126. return;
  127. }
  128. }
  129. }
  130. if (LabelDataGridView.Columns[e.ColumnIndex].HeaderText == "编辑")
  131. {
  132. if (e.RowIndex >= 0 && e.ColumnIndex >= 0)
  133. {
  134. CL_ID2 = LabelDataGridView.Rows[e.RowIndex].Cells["cl_id"].Value.ToString();
  135. LabelPath = LabelDataGridView.Rows[e.RowIndex].Cells["cl_labelurl"].Value.ToString();
  136. string LabelName = LabelDataGridView.Rows[e.RowIndex].Cells["cl_labelname"].Value.ToString();
  137. System.DateTime time;
  138. try
  139. {
  140. time = Convert.ToDateTime(LabelDataGridView.Rows[e.RowIndex].Cells["cl_date"].Value.ToString());
  141. }
  142. catch (Exception)
  143. {
  144. time = System.DateTime.Now;
  145. }
  146. BaseUtil.GetLabelUrl(LabelPath, LabelName, time);
  147. System.Diagnostics.Process.Start(ftpOperater.DownLoadTo + LabelName);
  148. 客户编号.Text = LabelDataGridView.Rows[e.RowIndex].Cells["CL_CUSTCODE2"].Value.ToString();
  149. la_type1.Text = LabelDataGridView.Rows[e.RowIndex].Cells["cl_labeltype"].Value.ToString();
  150. la_code.Text = LabelDataGridView.Rows[e.RowIndex].Cells["cl_labelcode"].Value.ToString();
  151. la_name.Text = LabelDataGridView.Rows[e.RowIndex].Cells["cl_labelname"].Value.ToString();
  152. FolderPath.Text = ftpOperater.DownLoadTo;
  153. }
  154. }
  155. //asc.controllInitializeSize(this);
  156. }
  157. private void Screen_Click(object sender, EventArgs e)
  158. {
  159. sql.Clear();
  160. condition.Clear();
  161. //如果条件全部为空的时候
  162. if (cu_code.Text == "" && cu_name.Text == "" && la_type.Text == "")
  163. {
  164. LoadData();
  165. }
  166. else
  167. {
  168. sql.Append("select to_char(nvl(cl_date,sysdate),'YYYY-MM-DD HH24:Mi:SS') cl_date,cu_name,cl_labelurl,cl_labeltype,cl_isdefault,cl_custcode,cl_labelname,cl_id,cl_labelcode,cl_detno,cl_labelsoft,la_id from customerlabel left join customer on cl_custcode=cu_code left join label on la_code=cl_custcode order by cl_custcode ");
  169. //设置筛选的条件
  170. condition.Append(BaseUtil.GetScreenSqlCondition(cu_code, la_type));
  171. //最终刷选条件拼接成的sql
  172. LoadData();
  173. }
  174. }
  175. private void Update_Click(object sender, EventArgs e)
  176. {
  177. string LabelSoft = "";
  178. //需要处理新增的行和原有数据然后更新的行
  179. if (CodeSoft.Checked)
  180. {
  181. LabelSoft = "CodeSoft";
  182. }
  183. DataTable dt = (DataTable)LabelDataGridView.DataSource;
  184. //如果有改变的行才传递到后台
  185. if (dt.GetChanges() != null)
  186. {
  187. //如果是新增的默认加上Radio当前选中的打印软件
  188. for (int i = 0; i < LabelDataGridView.Rows.Count; i++)
  189. {
  190. if (LabelDataGridView.Rows[i].Cells["cl_labelsoft"].Value.ToString() == "")
  191. {
  192. LabelDataGridView.Rows[i].Cells["cl_labelsoft"].Value = LabelSoft;
  193. }
  194. }
  195. string sql = "Insert into customerlabel (cl_ID,cl_custCODE,cl_LABELTYPE,cl_LABELCODE,cl_LABELURL,cl_DETNO,cl_LABELSOFT,cl_ISDEFAULT, cl_date) values(customerlabel_seq.nextval,'" + cu_code.Text + "',:cl_LABELTYPE,:cl_LABELCODE,:cl_LABELURL,:cl_DETNO,:cl_LABELSOFT,:cl_ISDEFAULT,sysdate)";
  196. dh.UpDateTableByCondition(dt.GetChanges(), "customerlabel", "cl_id", sql.ToLower());
  197. LoadData();
  198. }
  199. }
  200. private void DeleteDetail_Click(object sender, EventArgs e)
  201. {
  202. string[] deleteid = new string[LabelDataGridView.RowCount];
  203. for (int i = 0; i < LabelDataGridView.RowCount; i++)
  204. {
  205. deleteid[i] = LabelDataGridView.Rows[i].Cells["cl_id"].Value.ToString();
  206. }
  207. dh.DeleteDataByID("customerlabel", "cl_id", deleteid);
  208. LoadData();
  209. }
  210. private void OpenFolder_Click(object sender, EventArgs e)
  211. {
  212. //根据勾选的不同设置不同的文件后缀过滤
  213. if (CodeSoft.Checked)
  214. {
  215. openFileDialog1.Filter = "(*.lab)|*.lab";
  216. }
  217. DialogResult result = openFileDialog1.ShowDialog();
  218. if (result == DialogResult.OK)
  219. {
  220. FolderPath.Text = openFileDialog1.FileName;
  221. la_name.Text = FolderPath.Text.Substring(FolderPath.Text.LastIndexOf("\\") + 1);
  222. for (int i = 0; i < LabelDataGridView.Rows.Count; i++)
  223. {
  224. if (LabelDataGridView.Rows[i].Cells["Choose"].Value != null)
  225. {
  226. if ((bool)LabelDataGridView.Rows[i].Cells["Choose"].Value == true)
  227. {
  228. LabelDataGridView.Rows[i].Cells["cl_labelurl"].Value = FolderPath.Text;
  229. }
  230. }
  231. }
  232. }
  233. }
  234. private void LabelDataGridView_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
  235. {
  236. if (LabelDataGridView.Columns[e.ColumnIndex].Name == "cl_isdefault")
  237. {
  238. if (e.Value != null)
  239. {
  240. switch (e.Value.ToString())
  241. {
  242. case "0":
  243. e.Value = "否";
  244. break;
  245. case "1":
  246. e.Value = "是";
  247. break;
  248. default:
  249. break;
  250. }
  251. }
  252. }
  253. }
  254. private void LabelDataGridView_DataError(object sender, DataGridViewDataErrorEventArgs e)
  255. {
  256. //覆盖参数错误的事件,使得不会报错
  257. }
  258. private void LoadData()
  259. {
  260. //如果条件和上次一样则不进行数据读取
  261. //if (LastCondition != condition.ToString())
  262. {
  263. //如果没有任何筛选条件直接选取customerlabel的数据
  264. if (sql.Length == 0)
  265. {
  266. dt = (DataTable)dh.ExecuteSql("select to_char(nvl(cl_date,sysdate),'YYYY-MM-DD HH24:Mi:SS') cl_date,cu_name,cl_labelurl,cl_labeltype,cl_isdefault,cl_labelname,cl_custcode,cl_id,cl_labelcode,cl_detno,cl_labelsoft,la_id from customerlabel left join customer on cl_custcode=cu_code left join label on la_code=CL_LABELCODE order by cl_custcode", "select");
  267. }
  268. else
  269. {
  270. dt = (DataTable)dh.ExecuteSql(sql.ToString(), "select");
  271. }
  272. BaseUtil.FillDgvWithDataTable(LabelDataGridView, dt);
  273. string Field = BaseUtil.GetGridViewSelectContent(LabelDataGridView);
  274. pagination1.BindDataToNavigator(LabelDataGridView, "CustomerLabel left join customer on cl_custcode=cu_code left join label on la_code=CL_LABELCODE", Field, "cl_id", "", condition.Replace("where", "").ToString(), PreviewColumn, OperateColumn);
  275. LastCondition = condition.ToString();
  276. }
  277. }
  278. private void PrintTest_Click(object sender, EventArgs e)
  279. {
  280. if (LabelCode != "")
  281. {
  282. doc.Printer.SwitchTo(PrinterList.Text);
  283. doc.PrintDocument();
  284. }
  285. }
  286. private void 产品标签维护_FormClosing(object sender, FormClosingEventArgs e)
  287. {
  288. try
  289. {
  290. lbl.Documents.CloseAll();
  291. lbl.Application.Quit();
  292. }
  293. catch (Exception)
  294. {
  295. }
  296. }
  297. private void Save_Click(object sender, EventArgs e)
  298. {
  299. if (la_type1.Text != "" && FolderPath.Text != "" && la_code.Text != "")
  300. {
  301. //文件名
  302. string fileName;
  303. //源路径
  304. string sourcePath;
  305. //未选择文件的之后默认是这个,从Text输入框中取
  306. if (openFileDialog1.FileName == "openFileDialog1")
  307. {
  308. fileName = la_name.Text;
  309. sourcePath = FolderPath.Text;
  310. }
  311. else
  312. {
  313. sourcePath = openFileDialog1.FileName.Substring(0, openFileDialog1.FileName.LastIndexOf(@"\"));
  314. fileName = openFileDialog1.FileName.Substring(openFileDialog1.FileName.LastIndexOf(@"\") + 1);
  315. }
  316. if (FTPShare.Checked)
  317. {
  318. ftpOperater ftp = new ftpOperater(PortModel.Checked);
  319. ftp.UpLoadFile(sourcePath, fileName);
  320. string SoftWare = "CodeSoft";
  321. if (CL_ID2 != null)
  322. {
  323. sql.Clear();
  324. sql.Append("update customerlabel set cl_labelcode='" + la_code.Text + "',cl_custcode='" + 客户编号.Text + "',");
  325. sql.Append("cl_labeltype='" + la_type1.Text + "',cl_labelname='" + la_name.Text + "',cl_date=sysdate where cl_id=" + CL_ID2);
  326. }
  327. else
  328. {
  329. sql.Clear();
  330. sql.Append("insert into customerlabel (cl_id,cl_labelcode,cl_custcode,cl_labeltype,cl_labelurl,cl_labelname,cl_labelsoft,cl_date) values( customerlabel_seq.nextval, ");
  331. sql.Append("'" + la_code.Text + "','" + (客户编号.Text == "" ? "" : 客户编号.Text) + "','" + la_type1.Text + "','" + ftpOperater.FTPAddress + "','" + la_name.Text + "','" + SoftWare + "',sysdate)");
  332. }
  333. dh.ExecuteSql(sql.ToString(), "insert");
  334. sql.Clear();
  335. }
  336. else
  337. {
  338. //目标路径
  339. string targetPath = NetURL.Text;
  340. //var file = Directory.GetFiles(targetPath);
  341. string sourceFile = Path.Combine(sourcePath, fileName);
  342. string destFile = Path.Combine(targetPath, fileName);
  343. //获取指定路径下的全部文件名
  344. var file = Directory.GetFiles(targetPath);
  345. string overwrite = "";
  346. for (int i = 0; i < file.Length; i++)
  347. {
  348. if (file[i].Substring(file[i].LastIndexOf(@"\") + 1) == fileName)
  349. {
  350. overwrite = MessageBox.Show(this.ParentForm, "已存在名为" + fileName + "的文件,是否覆盖", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question).ToString();
  351. break;
  352. }
  353. }
  354. if (overwrite == "Yes" || overwrite == "")
  355. {
  356. //不存在文件家的话进行创建
  357. if (!Directory.Exists(targetPath))
  358. Directory.CreateDirectory(targetPath);
  359. //将文件复制到指定位置
  360. File.Copy(sourceFile, destFile, true);
  361. string SoftWare = "CodeSoft";
  362. sql.Clear();
  363. sql.Append("insert into customerlabel (cl_id,cl_labelcode,cl_custcode,cl_labeltype,cl_labelurl,cl_labelname,cl_labelsoft,cl_date) values( customerlabel_seq.nextval, ");
  364. sql.Append("'" + la_code.Text + "','" + (客户编号.Text == "" ? "共用" : 客户编号.Text) + "','" + la_type1.Text + "','" + destFile + "','" + la_name.Text + "','" + SoftWare + "',sysdate)");
  365. dh.ExecuteSql(sql.ToString(), "insert");
  366. sql.Clear();
  367. }
  368. }
  369. MessageBox.Show("保存成功!");
  370. LoadData();
  371. }
  372. else
  373. {
  374. MessageBox.Show("请填写完整参数!");
  375. }
  376. }
  377. private void 产品标签维护_SizeChanged(object sender, EventArgs e)
  378. {
  379. asc.controlAutoSize(this);
  380. }
  381. private void NetURL_TextChanged(object sender, EventArgs e)
  382. {
  383. Settings.Default.ShareUrl = NetURL.Text;
  384. Settings.Default.Save();
  385. }
  386. private void NewLabel_Click(object sender, EventArgs e)
  387. {
  388. 客户编号.Text = "";
  389. la_type1.Text = "";
  390. la_code.Text = "";
  391. la_name.Text = "";
  392. FolderPath.Text = "";
  393. CL_ID2 = null;
  394. }
  395. private void PortModel_CheckedChanged(object sender, EventArgs e)
  396. {
  397. Settings.Default.FTPModel = PortModel.Checked;
  398. Settings.Default.Save();
  399. }
  400. }
  401. }