| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Data; |
| | | using System.Data.SqlTypes; |
| | | using System.Threading.Tasks; |
| | | using System.Windows.Forms; |
| | | |
| | |
| | | toolBarMenu1.btnFPiZhunClick += ToolBarMenu1_btnFPiZhunClick; |
| | | toolBarMenu1.btnPiZhunClick += ToolBarMenu1_btnPiZhunClick; |
| | | toolBarMenu1.btnLogClick += ToolBarMenu1_btnLogClick; |
| | | toolBarMenu1.btnPingZhiClick += ToolBarMenu1_btnPingZhiClick; |
| | | toolBarMenu1.btnFPingZhiClick += ToolBarMenu1_btnFPingZhiClick; |
| | | this.toolBarMenu1.getXmlConfig(); |
| | | Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameterMx(gvMx1); |
| | | Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameterMx(gvMx2); |
| | | Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameter(gridView1, picCheckBox, this, "tbl013", "", (value) => |
| | | { |
| | | Gs.DevApp.ToolBox.UtilityHelper.JumpTab(xtraTabControl1, 0); |
| | | }, tips); |
| | | }, tips, true, (strGuid) => { |
| | | getModelList(strGuid); |
| | | }); |
| | | Gs.DevApp.ToolBox.UtilityHelper.SetTabParameter(gridView1, xtraTabControl1, pageBar1, (value) => |
| | | { |
| | | getModel(value); |
| | |
| | | frm.ShowDialog(); |
| | | }; |
| | | //打印事件 |
| | | |
| | | this.ucBtnPrint1.btnZhiJieClick += (s, e) => |
| | | { |
| | | _print(1); |
| | | }; |
| | | this.ucBtnPrint1.btnPrintClick += (s, e) => |
| | | { |
| | | |
| | | if ((txt_tbl013.EditValue.ToString() == "False") ) |
| | | { |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowError("该退料申请单未审核不能打印条码"); |
| | | txt_tbl013.Focus(); |
| | | return; |
| | | } |
| | | |
| | | string rowGuid = lbMxGuid.Text.Trim(); |
| | | ucBtnPrint1.guidKey = rowGuid; |
| | | if (!Gs.DevApp.ToolBox.UtilityHelper.IsNumeric3(txt_iCount_1.Text.Trim(), txt_yuliang_1.Text.Trim())) |
| | | { |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowError("请输入正确的条码数量!"); |
| | | txt_iCount_1.Focus(); |
| | | this.ucBtnPrint1.rptParameter = "return false"; |
| | | return; |
| | | } |
| | | if (!Gs.DevApp.ToolBox.UtilityHelper.IsNumeric3(txt_psnQty_1.Text.Trim())) |
| | | { |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowError("请选择打印条码数量!"); |
| | | txt_psnQty_1.Focus(); |
| | | this.ucBtnPrint1.rptParameter = "return false"; |
| | | return; |
| | | } |
| | | if (lbMxGuid.Text.Trim().Length < 10) |
| | | { |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowError("请选择打印的行!"); |
| | | this.ucBtnPrint1.rptParameter = "return false"; |
| | | return; |
| | | } |
| | | this.ucBtnPrint1.rptParameter = "rpt_SCTL{" |
| | | + lbMxGuid.Text.Trim()//关联主键 |
| | | + "," + "" |
| | | + "," + Gs.DevApp.ToolBox.UtilityHelper.ToDecimal(txt_yuliang_1.Text.Trim())//余数 |
| | | + "," + txt_iCount_1.Text.Trim()//张数 |
| | | + "," + txt_psnQty_1.Text.Trim()//每张条码数量 |
| | | + "}"; |
| | | txt_iCount_1.Text = ""; |
| | | txt_psnQty_1.Text = ""; |
| | | _print(0); |
| | | }; |
| | | //打印批量操作事件 |
| | | this.ucBtnPrint1.btnAllClick += (s, e) => |
| | |
| | | Gs.DevApp.ToolBox.UtilityHelper.PrintAuto(txt_psnQty_1, txt_iCount_1, radOut, txt_yuliang_1); |
| | | }; |
| | | } |
| | | |
| | | |
| | | private async void GridView1_ColumnFilterChanged(object sender, EventArgs e) |
| | | { |
| | | _filterList = Gs.DevApp.ToolBox.UtilityHelper.GetDilter(gridView1.Columns, gridView1); |
| | | await Task.Delay(100); |
| | | getPageList(1); |
| | | } |
| | | |
| | | private void _print(int type) |
| | | { |
| | | string rowGuid = lbMxGuid.Text.Trim(); |
| | | ucBtnPrint1.guidKey = rowGuid; |
| | | if (!Gs.DevApp.ToolBox.UtilityHelper.IsNumeric3(txt_iCount_1.Text.Trim(), txt_yuliang_1.Text.Trim())) |
| | | { |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowError("请输入正确的条码数量!"); |
| | | txt_iCount_1.Focus(); |
| | | this.ucBtnPrint1.rptParameter = "return false"; |
| | | return; |
| | | } |
| | | if (!Gs.DevApp.ToolBox.UtilityHelper.IsNumeric3(txt_psnQty_1.Text.Trim())) |
| | | { |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowError("请选择打印条码数量!"); |
| | | txt_psnQty_1.Focus(); |
| | | this.ucBtnPrint1.rptParameter = "return false"; |
| | | return; |
| | | } |
| | | if (lbMxGuid.Text.Trim().Length < 10) |
| | | { |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowError("请选择打印的行!"); |
| | | this.ucBtnPrint1.rptParameter = "return false"; |
| | | return; |
| | | } |
| | | this.ucBtnPrint1.rptParameter = "rpt_SCTL{" |
| | | + lbMxGuid.Text.Trim()//关联主键 |
| | | + "," + "" |
| | | + "," + Gs.DevApp.ToolBox.UtilityHelper.ToDecimal(txt_yuliang_1.Text.Trim())//余数 |
| | | + "," + txt_iCount_1.Text.Trim()//张数 |
| | | + "," + txt_psnQty_1.Text.Trim()//每张条码数量 |
| | | + "}"; |
| | | txt_iCount_1.Text = ""; |
| | | txt_psnQty_1.Text = ""; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 新增方法:列表显示 |
| | | /// </summary> |
| | | /// <param name="strGuid">主表id</param> |
| | | |
| | | private void getModelList(string strGuid) |
| | | { |
| | | gcMxL1.DataSource = null; |
| | | gcMxL2.DataSource = null; |
| | | |
| | | var _obj = new |
| | | { |
| | | guid = strGuid,//主建 |
| | | }; |
| | | try |
| | | { |
| | | string strJson = UtilityHelper.HttpPost("", _webServiceName + "GetModel", JsonConvert.SerializeObject(_obj)); |
| | | ReturnModel<dynamic> _rtn = ToolBox.UtilityHelper.ReturnToDynamic(strJson); |
| | | if (_rtn.rtnCode > 0) |
| | | { |
| | | dynamic dy = _rtn.rtnData; |
| | | |
| | | JArray array1 = new JArray(); |
| | | foreach (var a in dy["list"]) |
| | | { |
| | | array1.Add(a); |
| | | } |
| | | DataTable dt1 = JsonConvert.DeserializeObject<DataTable>(array1.ToString()); |
| | | if (dt1.Rows.Count > 0) |
| | | { |
| | | gcMxL1.BindingContext = new BindingContext(); |
| | | gcMxL1.DataSource = dt1; |
| | | gcMxL1.ForceInitialize(); |
| | | gvMxL1.BestFitColumns(); |
| | | Gs.DevApp.ToolBox.UtilityHelper.SetGridLayout(gvMxL1); |
| | | } |
| | | else |
| | | { |
| | | Gs.DevApp.ToolBox.UtilityHelper.SetDefaultTable(gcMxL1, gvMxL1); |
| | | } |
| | | JArray array2 = new JArray(); |
| | | foreach (var a in dy["list2"]) |
| | | { |
| | | array2.Add(a); |
| | | } |
| | | |
| | | DataTable dt2 = JsonConvert.DeserializeObject<DataTable>(array2.ToString()); |
| | | if (dt2.Rows.Count > 0) |
| | | { |
| | | gcMxL2.BindingContext = new BindingContext(); |
| | | gcMxL2.DataSource = dt2; |
| | | gcMxL2.ForceInitialize(); |
| | | gvMxL2.BestFitColumns(); |
| | | Gs.DevApp.ToolBox.UtilityHelper.SetGridLayout(gvMxL2); |
| | | } |
| | | else |
| | | { |
| | | Gs.DevApp.ToolBox.UtilityHelper.SetDefaultTable(gcMxL2, gvMxL2); |
| | | } |
| | | |
| | | } |
| | | else |
| | | ToolBox.MsgHelper.Warning("提示:" + _rtn.rtnMsg); |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | ToolBox.MsgHelper.Warning("提示:" + ex.Message); |
| | | } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 日志 |
| | | /// </summary> |
| | |
| | | { |
| | | _toolCk(3); |
| | | } |
| | | /// <summary> |
| | | /// 反品质 |
| | | /// </summary> |
| | | /// <param name="sender"></param> |
| | | /// <param name="e"></param> |
| | | private void ToolBarMenu1_btnPingZhiClick(object sender, EventArgs e) |
| | | { |
| | | _toolCk(4); |
| | | } |
| | | /// <summary> |
| | | /// 品质 |
| | | /// </summary> |
| | | /// <param name="sender"></param> |
| | | /// <param name="e"></param> |
| | | private void ToolBarMenu1_btnFPingZhiClick(object sender, EventArgs e) |
| | | { |
| | | _toolCk(5); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 审核事件 |
| | | /// </summary> |
| | |
| | | //2025/07/12加上修改状态下不能修改 |
| | | txt_tbl023.IsReadly = true; |
| | | txt_tbl002.IsReadly = true; |
| | | //txt_tbl005.ReadOnly = true; |
| | | //txt_tbl005.EditValue = true; |
| | | txt_tbl005.ReadOnly = true; |
| | | } |
| | | /// <summary> |
| | | /// 新增事件 |
| | |
| | | txt_tbl002.Focus(); |
| | | return; |
| | | } |
| | | if (string.IsNullOrEmpty(txt_tbl005.Text.Trim())) |
| | | if (txt_tbl005.SelectedIndex <= 0) |
| | | { |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowError("请选择原因!"); |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowError("请选择类型!"); |
| | | txt_tbl005.Focus(); |
| | | return; |
| | | } |
| | | if ((txt_tbl005.Text.Trim()=="良品退料") && txt_chkOut.Checked) |
| | | { |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowError("良品退料不能自动生成补料单,请检查!"); |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowError("良品退料不能自动生成补料单,\n只有作业不良类型才能生成补料单,\n 请检查!"); |
| | | txt_tbl005.Focus(); |
| | | return; |
| | | } |
| | | |
| | | if ((txt_tbl005.Text.Trim() == "来料不良退料") && txt_chkOut.Checked) |
| | | { |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowError("来料不良退料不能自动生成补料单,请检查!"); |
| | | Gs.DevApp.ToolBox.MsgHelper.ShowError("来料不良退料不能自动生成补料单,\n只有作业不良类型才能生成补料单,\n 请检查!"); |
| | | txt_tbl005.Focus(); |
| | | return; |
| | | } |
| | | |
| | | var _obj = new |
| | | { |
| | | guid = UtilityHelper.ToGuid(lbGuid.Text.Trim()), //主建 |
| | |
| | | /// <param name="pageSize">每页几条</param> |
| | | private void getPageList(int curPage) |
| | | { |
| | | gcMain1.DataSource = null; var _sbSqlWhere = UtilityHelper.GetSearchWhere(_filterList); |
| | | gcMain1.DataSource = null; |
| | | System.Text.StringBuilder _sbSqlWhere = new System.Text.StringBuilder(); |
| | | _sbSqlWhere.Append(" and a.tbl023 in"); |
| | | _sbSqlWhere.Append(ToolBox.UtilityHelper.GetOrgWhere()); |
| | | _sbSqlWhere.Append(UtilityHelper.GetSearchWhere(_filterList)); |
| | | PageQueryModel pgq = new PageQueryModel(curPage, this.pageBar1.RowsCount, "create_date", "asc", "", _sbSqlWhere.ToString()); |
| | | string json = JsonConvert.SerializeObject(pgq); |
| | | try |
| | |
| | | case 3: |
| | | strMsg = "反批准"; |
| | | break; |
| | | case 4: |
| | | strMsg = "品质审核"; |
| | | break; |
| | | case 5: |
| | | strMsg = "品质反审核"; |
| | | break; |
| | | } |
| | | ; |
| | | toolBarMenu1.guidKey = ""; |
| | |
| | | txtQuantity.Text = row["tld005"].ToString();//申请总量 |
| | | txt_yQty.Text = row["ydy"].ToString();//已打印总量 |
| | | txt_kQty.Text = row["kdy"].ToString();//可打印总量 |
| | | txt_psnQty_1.Text = row["tld005"].ToString(); //默认每张条码数量 |
| | | txt_psnQty_1.Text = row["kdy"].ToString(); //默认每张条码数量 |
| | | } |
| | | else |
| | | { |