文件名从 DevApp/Gs.DevApp/DevFrm/FQC/SelectFqcItem.cs 修改 |
| | |
| | | |
| | | namespace Gs.DevApp.DevFrm.FQC |
| | | { |
| | | public partial class SelectFqcItem : DevExpress.XtraEditors.XtraForm |
| | | public partial class SelectFqcDaa : DevExpress.XtraEditors.XtraForm |
| | | { |
| | | private readonly string _webServiceName = "FqcManager/"; |
| | | string lineId = ""; |
| | | public SelectFqcItem(string _lineId) |
| | | public SelectFqcDaa() |
| | | { |
| | | InitializeComponent(); |
| | | this.lineId = _lineId; |
| | | getPageList(1); |
| | | Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameter(gridView1, null, null, null, "", null, null, false); |
| | | } |
| | |
| | | everyPageSize = 999999, |
| | | sortName = "", |
| | | keyWhere = "", |
| | | lineId = this.lineId |
| | | }; |
| | | var json = JsonConvert.SerializeObject(_obj); |
| | | try |
| | | { |
| | | var strReturn = UtilityHelper.HttpPost("", |
| | | _webServiceName + "SelectFqcItem", json); |
| | | _webServiceName + "SelectFqcDaa", json); |
| | | var dd = UtilityHelper.ReturnToTablePage(strReturn); |
| | | if (dd.rtnCode > 0) |
| | | { |
| | |
| | | itemName = dr["itemName"].ToString(), |
| | | itemNo = dr["itemNo"].ToString(), |
| | | itemModel = dr["itemModel"].ToString(), |
| | | lineName= dr["lineName"].ToString(), |
| | | lineId = dr["lineId"].ToString(), |
| | | gdbh = dr["gdbh"].ToString(), |
| | | }); |
| | | UpdateParent?.Invoke(this, new UpdateParentEventArgs { DynamicList = list }); |