kyy
2025-11-12 4b1b24b7b57a4fe4a1b24a65b821b17c3267ea4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
using CefSharp;
using DevExpress.Data;
using DevExpress.XtraEditors;
using DevExpress.XtraGrid.Views.Grid;
using Gs.DevApp.Entity;
using Gs.DevApp.ToolBox;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Data;
using System.Windows.Forms;
using System.Windows.Input;
 
namespace Gs.DevApp.UserControl
{
    public partial class SelectCgDhMx : XtraForm
    {
        private readonly string _webServiceName = "MesInvItemArnManager/";
        private string suppId = "";
        private string receiveOrgId = "";
        /// <summary>
        /// 
        /// </summary>
        /// <param name="_billNo">到货单号</param>
       
        public SelectCgDhMx(string _billNo)
        {
            InitializeComponent();
            Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameter(gridView1, null, null, null, "", null, null, false);
            getPageList(1, _billNo);
            btnIn.Click += (s, e) =>
            {
                gridView1.PostEditor();
                gridView1.UpdateCurrentRow();
                var selectedGuids = new List<string>(); // 存储勾选的guid集合
                DataTable dt = this.gcMain.DataSource as DataTable;
 
                if (dt != null)
                {
                    foreach (DataRow dr in dt.Rows)
                    {
                        string checkBox = dr["chkInt"].ToString();
                        string _guid = dr["guid"].ToString();
                        if (Gs.DevApp.ToolBox.UtilityHelper.ToCheck(checkBox))
                        {
                            selectedGuids.Add(_guid); // 收集勾选的guid
                        }
                    }
                }
 
                // 关键:调用SelectMxBtn接口,传入勾选的guid集合
                CallSelectMxBtnApi(selectedGuids);
 
                // 回传数据并关闭表单(保持原有逻辑)
                UpdateParent?.Invoke(this, new UpdateParentEventArgs { StringList = selectedGuids });
                Close();
            };
        }
 
        /// <summary>
        ///     选择后的回调事件
        /// </summary>
        public event EventHandler<UpdateParentEventArgs> UpdateParent;
 
        /// <summary>
        /// </summary>
        /// <param name="curPage">第几页</param>
        /// <param name="pageSize">每页几条</param>
        private void getPageList(int curPage,string billNo)
        {
            
            var _obj = new
            {
                currentPage = curPage,
                everyPageSize = 999999,
                sortName = "",
                keyWhere = "",
                // inBusType = (radioGroup1.SelectedIndex + 1),//1是采购,2是委外
                // inReceiveOrgId = this.receiveOrgId,//组织
                inBusType = "",
                inReceiveOrgId = "",
                inSupId = billNo//供应商
             
            };
            var json = JsonConvert.SerializeObject(_obj);
            try
            {
                var strReturn = UtilityHelper.HttpPost("",_webServiceName + "SelectMxForm", json);
                var dd = UtilityHelper.ReturnToTablePage(strReturn);
                var dt = dd.rtnData.list;
                gcMain.BindingContext = new BindingContext();
                gcMain.DataSource = dt;
                gcMain.ForceInitialize();
                gridView1.BestFitColumns(); Gs.DevApp.ToolBox.UtilityHelper.SetGridLayout(gridView1);
            }
            catch (Exception ex)
            {
                MsgHelper.Warning("提示:" + ex.Message);
            }
        }
 
        /// <summary>
        /// 调用SelectMxBtn接口,传递勾选的guid集合
        /// </summary>
        /// <param name="selectedGuids">勾选的记录guid列表</param>
        private void CallSelectMxBtnApi(List<string> selectedGuids)
        {
            if (selectedGuids == null || selectedGuids.Count == 0)
            {
                MsgHelper.Warning("请先勾选需要处理的明细");
                return;
            }
            // 构建接口请求参数(与SelectMxForm接口格式保持一致)
            var requestParams = new{  guidList = selectedGuids};
            try
            {
                // 序列化参数为JSON
                string jsonParams = JsonConvert.SerializeObject(requestParams);
 
                // 调用后端SelectMxBtn接口(与SelectMxForm同样使用HttpPost)
                string apiUrl = _webServiceName + "SelectMxBtn"; // 接口地址
                string response = UtilityHelper.HttpPost("", apiUrl, jsonParams);
                var _rtn = UtilityHelper.ReturnToDynamic(response);
                if (_rtn.rtnCode > 0)
                {
                    MsgHelper.ShowInformation("提示:" + _rtn.rtnMsg);
                }
                else
                    MsgHelper.ShowError("提示:" + _rtn.rtnMsg);
            }
            catch (Exception ex)
            {
                MsgHelper.ShowError("提示:" + ex.Message);
            }
        }
            
 
    }
}