客户标签维护.cs 18 KB

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