yangle
2023-05-24 b129762a4bb5ec2cde5edf16bc9cbda57c73587d
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms; 
using System.Data.OleDb;
using System.Data.Sql;
 
namespace BaseSet
{
    public partial class Gy_DataInTmp_DuSubsidyItem : Form
    {
        ClsGy_DataInTmp_DuSubsidyItem oTmp = new ClsGy_DataInTmp_DuSubsidyItem();
        DAL.ClsPay_DuSubsidyItemBill BillNew = new DAL.ClsPay_DuSubsidyItemBill();
        DAL.ClsGy_DuSubsidyItem_View oDuHlp = new DAL.ClsGy_DuSubsidyItem_View();
        DAL.ClsGy_Department_View oDept = new DAL.ClsGy_Department_View();//K3²¿ÃÅ
        DAL.ClsGy_Group_View oGroup = new DAL.ClsGy_Group_View();
        DAL.ClsGy_Employee_View oEmp = new DAL.ClsGy_Employee_View();
        //
 
        public Gy_DataInTmp_DuSubsidyItem()
        {
            InitializeComponent();
        }
 
 
        private void initHeadCaption()
        {
 
        }
 
        //
        private void yl_Click(object sender, EventArgs e)
        {
            WriteClass(cmbHDataInTmp.Text);
        }
 
        //Êý¾Ýµ¼Èë
        public void WriteClass(string sName)
        {
            SQLHelper.ClsCN oCn = new SQLHelper.ClsCN();
            string sColName;
            string sFieldName;
            if (sName == "¿Û²¹ÏîÄ¿·ÑÓõ¼Èë")
            {
                for (int i = 0; i <= grdmain.Rows.Count - 1; i++)
                {
                    if (DBUtility.ClsPub.isStrNull(grdmain.Rows[i].Cells[0].Value) != "")
                    {
                        if (Mater_WriteClass(i))
                        {
                            BillNew.AddBill(ref DBUtility.ClsPub.sExeReturnInfo);
                        }
                    }
                }
            }
            MessageBox.Show("µ¼ÈëÍê±Ï");
            grdmain.DataSource = null;
        }
 
        //дÈëÀ࠴ӿؼþ
        private bool Mater_WriteClass(int row)
        {
            //
 
            string sBillNo = "";
            sBillNo = DBUtility.ClsPub.CreateBillCode("2233", ref DBUtility.ClsPub.sExeReturnInfo, true);//µÃµ½Ðµ¥ºÅ£¨È±ÉÙº¯Êý£©  Î´Íê³É
            int sDuSubCol = DBUtility.Gy_BaseFun.Fun_GetCol("¿Û²¹ÏîÄ¿", grdmain);
            int sDeptCol = DBUtility.Gy_BaseFun.Fun_GetCol("²¿ÃÅ", grdmain);
            int sGroupCol = DBUtility.Gy_BaseFun.Fun_GetCol("°à×é", grdmain);
            int sEmpCol = DBUtility.Gy_BaseFun.Fun_GetCol("Ö°Ô±", grdmain);
            //
            string sDuSubName = DBUtility.ClsPub.isStrNull(grdmain.Rows[row].Cells[sDuSubCol].Value);
            string sDeptName = DBUtility.ClsPub.isStrNull(grdmain.Rows[row].Cells[sDeptCol].Value);
            string sGroupName = DBUtility.ClsPub.isStrNull(grdmain.Rows[row].Cells[sGroupCol].Value);
            string sEmpName = DBUtility.ClsPub.isStrNull(grdmain.Rows[row].Cells[sEmpCol].Value);
            //ÅжÏÊÇ·ñÔÊÐí ±£´æ
 
            //ÅжÏÊÇ·ñÔÊÐí ±£´æ
            //µÃµ½Òµ»§ÄÚÂ룬·ÑÓÃÏîÄ¿ÄÚÂë
            //дÈëÐÅÏ¢
            BillNew.omodel.HYear = 2011;
            BillNew.omodel.HPeriod = 1;
            BillNew.omodel.HBillNo = sBillNo;
            BillNew.omodel.HDate = DateTime.Today;
            BillNew.omodel.HRemark = "ϵͳµ¼Èë";
            //
 
            if (oDept.GetInfoByName(sDeptName))
            {
                BillNew.omodel.HDeptID = oDept.omodel.HItemID;
            }
            else
            {
                BillNew.omodel.HDeptID = 0;
                return false;
            }
            //
            if (oGroup.GetInfoByName(sGroupName))
            {
                BillNew.omodel.HGroupID = oGroup.omodel.HItemID;
            }
            else
            {
                BillNew.omodel.HGroupID = 0;
                return false;
            }
            BillNew.omodel.HExplanation = DBUtility.ClsPub.isStrNull(grdmain.Rows[row].Cells[DBUtility.Gy_BaseFun.Fun_GetCol("ÕªÒª", grdmain)].Value);// DBUtility.Gy_BaseFun.Fun_GetCol("ÕªÒª", grdmain); 
            BillNew.omodel.HInnerBillNo = DBUtility.ClsPub.isStrNull(grdmain.Rows[row].Cells[DBUtility.Gy_BaseFun.Fun_GetCol("ÄÚ²¿µ¥¾ÝºÅ", grdmain)].Value); //DBUtility.Gy_BaseFun.Fun_GetCol("ÄÚ²¿µ¥¾ÝºÅ", grdmain); 
            BillNew.omodel.HAutoSaveFlag = false;
            
            //
            //BillNew.HExRate = ClsPub.isDoule(this.txtHMaterName.Text.ToString());
            //Ã÷ϸÀำֵ
            BillNew.DetailColl = new List<Model.ClsPay_DuSubsidyItemBillSub>();
            Model.ClsPay_DuSubsidyItemBillSub oSub = new Model.ClsPay_DuSubsidyItemBillSub();
            oSub.HEntryID = 1;
            //
            if (oDuHlp.GetInfoByName(sDuSubName))
            {
                oSub.HDuSubsidyItemID = oDuHlp.omodel.HItemID;
            }
            else
            {
                oSub.HDuSubsidyItemID = 0;
                return false;
            }
            //
            if (oEmp.GetInfoByName(sEmpName))
            {
                oSub.HEmpID = oEmp.omodel.HItemID;
            }
            else
            {
                oSub.HEmpID = 0;
                return false;
            }
            oSub.HQty = DBUtility.ClsPub.isLong(grdmain.Rows[row].Cells[DBUtility.Gy_BaseFun.Fun_GetCol("ÊýÁ¿", grdmain)].Value); //DBUtility.Gy_BaseFun.Fun_GetCol("ÊýÁ¿", grdmain); ;
            oSub.HPrice = DBUtility.ClsPub.isLong(grdmain.Rows[row].Cells[DBUtility.Gy_BaseFun.Fun_GetCol("µ¥¼Û", grdmain)].Value); //DBUtility.Gy_BaseFun.Fun_GetCol("µ¥¼Û", grdmain); ;
            oSub.HMoney = DBUtility.ClsPub.isLong(grdmain.Rows[row].Cells[DBUtility.Gy_BaseFun.Fun_GetCol("½ð¶î", grdmain)].Value); //DBUtility.Gy_BaseFun.Fun_GetCol("½ð¶î", grdmain); ;
           
 
            BillNew.DetailColl.Add(oSub);
            return true;
        }
 
        private void tc_Click(object sender, EventArgs e)
        {
            this.Close();
        }
 
        private void K3_OutMachFeeDataIn_Load(object sender, EventArgs e)
        {
            initHeadCaption();
        }
        public string ExcelPath;
        
        private void OpenExcelData(string sPath)
        {
            string sName;
            sName = "Sheet1";
            string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + sPath + ";" +
                         "Extended Properties='Excel 8.0;IMEX=1'";
            DataSet ds = new DataSet();
            OleDbConnection conn = new OleDbConnection(strConn);
            conn.Open();
            try
            {
                OleDbDataAdapter Da = new OleDbDataAdapter("select * from [" + sName + "$]", conn);
                Da.Fill(ds);
                grdmain.DataSource = ds.Tables[0];
            }
            catch(Exception e)
            {
                MessageBox.Show("ÒýÈëEXCELÊý¾Ýʧ°Ü£¡ÇëÓë¹ÜÀíÔ±ÁªÏµ£¡" + e.Message);
            }
        }
 
        private void button1_Click_1(object sender, EventArgs e)
        {
            OpenExcelFile.Title = "Open Excel File  ";
            OpenExcelFile.FileName = "";
            OpenExcelFile.Filter = "Microsoft Office Excel Files(*.xls)|*.xls|(*.csv)|*.csv";
            OpenExcelFile.ShowDialog();
            if (OpenExcelFile.FileName != "")
            {
                ExcelPath = OpenExcelFile.FileName;
                OpenExcelData(ExcelPath);
            }
            else
            {
                ExcelPath = "";
            }
 
        }
 
    }
}