| | |
| | | using DevExpress.XtraPivotGrid.Data; |
| | | using Gs.DevApp.DevFrm.WOM; |
| | | using Gs.DevApp.Entity; |
| | | using Gs.DevApp.ToolBox; |
| | | using Gs.DevApp.UserControl; |
| | |
| | | this.toolBarMenu1.btnTzblClick += ToolBarMenu1_btnTzblClick; |
| | | this.toolBarMenu1.btnKgClick += ToolBarMenu1_btnKgClick; |
| | | this.toolBarMenu1.btnWgClick += ToolBarMenu1_btnWgClick; |
| | | this.toolBarMenu1.btnJieAnClick += ToolBarMenu1_btnJieAnClick1; |
| | | this.toolBarMenu1.btnFjieAnClick += ToolBarMenu1_btnFjieAnClick; |
| | | toolBarMenu1.btnLogClick += ToolBarMenu1_btnLogClick; |
| | | this.toolBarMenu1.btnShouJianClick += ToolBarMenu1_btnShouJianClick; |
| | | this.toolBarMenu1.getXmlConfig(); |
| | | Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameterMx(gvMx1); |
| | | Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameterMx(gvMx2); |
| | |
| | | //这是后盖码,仅仅打印, |
| | | this.ucBtnPrint100.btnDesignClick += (s, e) => |
| | | { |
| | | ucBtnPrint100.rptParameter = "rpt_trace{}"; |
| | | ucBtnPrint100.rptParameter = "rpt_hgm{}"; |
| | | }; |
| | | this.ucBtnPrint100.btnReportClick += (s, e) => |
| | | { |
| | | _print100(); |
| | | }; |
| | | txt_psnQty_1.TextChanged += Txt_psnQty_1_TextChanged; |
| | | } |
| | | |
| | | private void Txt_psnQty_1_TextChanged(object sender, EventArgs e) |
| | | { |
| | | string sum = txt_kQty.Text.Trim(); |
| | | string t1 = txt_psnQty_1.Text.Trim(); |
| | | string t2 = txt_iCount_1.Text.Trim(); |
| | | if (!Gs.DevApp.ToolBox.UtilityHelper.IsNumeric2(sum)) |
| | | sum = txt_kQty.Text = "0"; |
| | | |
| | | if (!Gs.DevApp.ToolBox.UtilityHelper.IsNumeric2(t1)) |
| | | t1 = txt_psnQty_1.Text = "0"; |
| | | |
| | | if (!Gs.DevApp.ToolBox.UtilityHelper.IsNumeric2(t2)) |
| | | t2 = txt_iCount_1.Text = "0"; |
| | | |
| | | if (t1 == "0") |
| | | txt_psnQty_1.TextChanged += (s, e) => |
| | | { |
| | | t2 = txt_iCount_1.Text = "0"; |
| | | return; |
| | | } |
| | | Gs.DevApp.ToolBox.UtilityHelper.PrintJiSuan(txt_psnQty_1, txt_iCount_1, txt_kQty.Text.Trim(), radOut); |
| | | }; |
| | | |
| | | decimal? dc = Gs.DevApp.ToolBox.UtilityHelper.GetDecimal(sum); |
| | | decimal? dc1 = Gs.DevApp.ToolBox.UtilityHelper.GetDecimal(t1); |
| | | |
| | | int dividend = int.Parse(sum); // 被除数 |
| | | int divisor = int.Parse(t1); // 除数 |
| | | |
| | | int quotient = dividend / divisor; // 整数部分 |
| | | int remainder = dividend % divisor; // 余数 |
| | | |
| | | txt_iCount_1.Text = quotient.ToString(); |
| | | radOut.Properties.Items[0].Description = "另印" + remainder.ToString(); |
| | | |
| | | radOut.SelectedIndexChanged += (s, e) => |
| | | { |
| | | Gs.DevApp.ToolBox.UtilityHelper.PrintAuto(txt_psnQty_1, txt_iCount_1, radOut); |
| | | }; |
| | | } |
| | | |
| | | |
| | | private void GridView1_ColumnFilterChanged(object sender, EventArgs e) |
| | | { |
| | |
| | | _filterList = e.FilterList; |
| | | getPageList(1); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 结案 |
| | | /// 生成首检 |
| | | /// </summary> |
| | | /// <param name="sender"></param> |
| | | /// <param name="e"></param> |
| | | /// <exception cref="NotImplementedException"></exception> |
| | | private void ToolBarMenu1_btnFjieAnClick(object sender, EventArgs e) |
| | | private void ToolBarMenu1_btnShouJianClick(object sender, EventArgs e) |
| | | { |
| | | |
| | | string rowGuid, rowName; |
| | | (rowGuid, rowName) = UtilityHelper.GetCurrentRow(xtraTabControl1, |
| | | lbGuid, txt_daa001, gridView1, "daa001"); |
| | | if (string.IsNullOrEmpty(rowGuid)) |
| | | { |
| | | MsgHelper.Warning("请先选择你要操作的行!"); |
| | | return; |
| | | } |
| | | if (!MsgHelper.AskQuestion("你选择了【" + rowName + "】,确定重新生成首检吗?")) |
| | | return; |
| | | var _obj = new |
| | | { |
| | | guid = rowGuid, |
| | | inFieldValue = "", |
| | | }; |
| | | try |
| | | { |
| | | var strJson = UtilityHelper.HttpPost("", |
| | | _webServiceName + "EditModelSubmitShouJian", |
| | | JsonConvert.SerializeObject(_obj)); |
| | | var _rtn = UtilityHelper.ReturnToDynamic(strJson); |
| | | MsgHelper.Warning(_rtn.rtnData.outMsg.ToString()); |
| | | if (_rtn.rtnCode > 0 && _rtn.rtnData.outSum * 1 > 0) |
| | | { |
| | | //if (xtraTabControl1.SelectedTabPageIndex == 1) |
| | | //{ |
| | | // getModel(lbGuid.Text.Trim()); |
| | | //} |
| | | //else |
| | | //{ |
| | | // //注意,这里和其它页面有点不一样 |
| | | // getPageList(this.pageBar1.CurrentPage); |
| | | // int rowHandle = gridView1.LocateByValue("guid", rowGuid); |
| | | // gridView1.FocusedRowHandle = rowHandle; |
| | | //} |
| | | } |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | MsgHelper.Warning("提示:" + ex.Message); |
| | | } |
| | | } |
| | | /// <summary> |
| | | /// 反结案 |
| | | /// </summary> |
| | | /// <param name="sender"></param> |
| | | /// <param name="e"></param> |
| | | /// <exception cref="NotImplementedException"></exception> |
| | | |
| | | private void ToolBarMenu1_btnJieAnClick1(object sender, EventArgs e) |
| | | { |
| | | _toolCk(99); |
| | | } |
| | | |
| | | private void ToolBarMenu1_btnTzblClick(object sender, EventArgs e) |
| | | { |
| | | _toolCk(7); |
| | |
| | | /// <param name="pageSize">每页几条</param> |
| | | private void getPageList(int curPage) |
| | | { |
| | | var _sbSqlWhere = UtilityHelper.GetSearchWhere(_filterList); |
| | | gcMain1.DataSource = null; var _sbSqlWhere = UtilityHelper.GetSearchWhere(_filterList); |
| | | PageQueryModel pgq = new PageQueryModel(curPage, this.pageBar1.RowsCount, "create_date", "desc", "", _sbSqlWhere.ToString()); |
| | | string json = JsonConvert.SerializeObject(pgq); |
| | | try |
| | |
| | | //string cjId = dy.daa013; |
| | | //string xjxt = dy.sjXt; |
| | | // txt_sjXt.getSuppler(cjId, xjxt); |
| | | //托板码 |
| | | txt_zQty.Text = dy.daa008; |
| | | txt_yQty.Text = dy.yQty; |
| | | txt_kQty.Text = dy.kQty; |
| | | //追溯码 |
| | | txt_zQty98.Text = dy.daa008; |
| | | txt_yQty98.Text = dy.yQty98; |
| | | txt_kQty98.Text = dy.kQty98; |
| | | lbGuid.Text = strGuid; |
| | | List<DevExpress.XtraGrid.Views.Grid.GridView> gvList = new List<DevExpress.XtraGrid.Views.Grid.GridView>(); |
| | | gvList.Add(gvMx1); |
| | |
| | | { |
| | | Gs.DevApp.ToolBox.UtilityHelper.SetDefaultTable(gcMx4, gvMx4); |
| | | } |
| | | txt_psnQty_1.Text = txt_printRemark.Text = txt_iCount_1.Text = txt_printRemark98.Text = txt_iCount_98.Text = ""; |
| | | radOut.Properties.Items[0].Description = "全自动"; |
| | | } |
| | | else |
| | | ToolBox.MsgHelper.Warning("提示:" + _rtn.rtnMsg); |
| | |
| | | strMsg = "工单暂停"; |
| | | break; |
| | | case 3: |
| | | strMsg = "撤回完工"; |
| | | strMsg = "清尾"; |
| | | break; |
| | | case 4: |
| | | strMsg = "紧急备料"; |
| | |
| | | case 9: |
| | | strMsg = "手动完工"; |
| | | break; |
| | | case 99: |
| | | strMsg = "结案"; |
| | | break; |
| | | }; |
| | | toolBarMenu1.guidKey = ""; |
| | | string rowGuid, rowName; |
| | |
| | | } |
| | | if (!MsgHelper.AskQuestion("你选择了【" + rowName + "】,确定" + strMsg + "吗?")) |
| | | return; |
| | | |
| | | var _obj = new |
| | | { |
| | | guid = rowGuid, |
| | |
| | | this.ucBtnPrint1.rptParameter = "return false"; |
| | | return; |
| | | } |
| | | if (string.IsNullOrEmpty(txt_iCount_1.Text.Trim())) |
| | | if (!Gs.DevApp.ToolBox.UtilityHelper.IsNumeric3(txt_iCount_1.Text.Trim())) |
| | | { |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowError("请选择打印条码张数!"); |
| | | txt_iCount_1.Focus(); |
| | | this.ucBtnPrint1.rptParameter = "return false"; |
| | | return; |
| | | } |
| | | if (string.IsNullOrEmpty(txt_psnQty_1.Text.Trim())) |
| | | if (!Gs.DevApp.ToolBox.UtilityHelper.IsNumeric3(txt_psnQty_1.Text.Trim())) |
| | | { |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowError("请选择内包装数量!"); |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowError("请选择打印条码数量!"); |
| | | txt_psnQty_1.Focus(); |
| | | this.ucBtnPrint1.rptParameter = "return false"; |
| | | return; |
| | |
| | | this.ucBtnPrint1.rptParameter = "rpt_daa{" |
| | | + txt_printRemark.Text.Trim() |
| | | + "," + "" |
| | | + "," + "" |
| | | + "," + Gs.DevApp.ToolBox.UtilityHelper.PrintYuLiang(radOut).ToString() |
| | | + "," + txt_iCount_1.Text.Trim() |
| | | + "," + txt_psnQty_1.Text.Trim() |
| | | + "}"; |
| | |
| | | this.ucBtnPrint98.rptParameter = "return false"; |
| | | return; |
| | | } |
| | | if (string.IsNullOrEmpty(txt_iCount_98.Text.Trim())) |
| | | if (!Gs.DevApp.ToolBox.UtilityHelper.IsNumeric3(txt_iCount_98.Text.Trim())) |
| | | { |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowError("请选择打印条码张数!"); |
| | | txt_iCount_98.Focus(); |
| | | this.ucBtnPrint98.rptParameter = "return false"; |
| | | return; |
| | | } |
| | | this.ucBtnPrint98.rptParameter = "rpt_trace{" + "" |
| | | this.ucBtnPrint98.rptParameter = "rpt_trace{" |
| | | + "" |
| | | + "," + txt_printRemark98.Text.Trim() |
| | | + "," + "" |
| | | + "," + txt_iCount_98.Text.Trim() |
| | |
| | | this.ucBtnPrint100.rptParameter = "return false"; |
| | | return; |
| | | } |
| | | |
| | | this.ucBtnPrint100.rptParameter = "rpt_trace{" |
| | | + lbGuid.Text.Trim() |
| | | this.ucBtnPrint100.rptParameter = "rpt_hgm{" |
| | | + "100" |
| | | + "," + "" |
| | | + "," + "" |
| | | + "," + "" |
| | |
| | | } |
| | | } |
| | | } |
| | | |
| | | #endregion |
| | | |
| | | } |
| | | } |