客户标签维护.cs 18 KB

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