Newer
Older
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Ces.IBLL;
using Ces.BLL;
using Ces.Model;
using System.Data;
using Ces.Lib;
using Hxj.Data;
using System.Collections;
using Sqcy.Page;
using System.IO;
using System.Data.OleDb;
using System.Data.SqlClient;
//namespace Sqcy.Web.Supplier
//{
public partial class _Sqcy_Web_Supplier_ImportPrice : System.Web.UI.Page
{
private ICyptService cyptService;
public _Sqcy_Web_Supplier_ImportPrice() { cyptService = new CyptService(); }
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
PageInit();
}
}
private void PageInit()
{
if (Session["UserInfo"] != null)
{
UserInfo ui = (UserInfo)Session["UserInfo"];
if (Request.QueryString["id"] != null && Request.QueryString["ft"] != null)
{
Guid PriceSheetID = Request.QueryString["id"].ToSafeGuid();
int ft = Request.QueryString["ft"].ToSafeInt();
if (ui.Role == 1 && ft == 2)
{
}
else if (ui.Role == 4 && ft == 1)
{
}
else
{
UICommon.Msg(this.Page, 1, "您没有权限进行操作", "javascript:Back()", true);
}
}
}
}
protected void ImportPriceBut_Click(object sender, EventArgs e)
{
if (Session["UserInfo"] != null)
{
UserInfo ui = (UserInfo)Session["UserInfo"];
if (Request.QueryString["id"] != null && Request.QueryString["ft"] != null)
{
Guid PriceSheetID = Request.QueryString["id"].ToSafeGuid();
int ft = Request.QueryString["ft"].ToSafeInt();
if (ui.Role == 1 && ft==2)
{
}else if(ui.Role==4 && ft == 1)
{
}
else
{
UICommon.Msg(this.Page, 1, "您没有权限进行操作", "javascript:Back()", true);
}
////先删除
//cyptService.Delete<Supplier_PriceSheetDetailSub>(new WhereClip()
// .And(Supplier_PriceSheetDetailSub._.PriceSheetID==PriceSheetID)
// .And(Supplier_PriceSheetDetailSub._.FromType==ft)
// .And(Supplier_PriceSheetDetailSub._.SupplierID == ui.GroupID.Value)
// );
if (FileImport.HasFile)
{
string IsXls = System.IO.Path.GetExtension(FileImport.FileName).ToString().ToLower();//System.IO.Path.GetExtension获得文件的扩展名
if (IsXls == ".xls")
{
// string FileName = DateTime.Now.ToString("yyyymmddhhMMss")+ FileImport.FileName;
string SavePath = Server.MapPath("~/upfiles/Temp/" + Guid.NewGuid().ToString() + ".xls");
FileImport.SaveAs(SavePath);
DataTable dt = ExRead(SavePath); //调用自定义方法
RemoveEmpty(dt);
DataRow[] drr = dt.Select(); //定义一个DataRow数组
int rowsnum = dt.Rows.Count;
//提交报价start
List<Ces.Model.Supplier_PriceSheetDetailSub> list = new List<Supplier_PriceSheetDetailSub>();
for (int i = 0; i < dt.Rows.Count; i++)
{
DataRow drs = dt.Rows[i];
if (!string.IsNullOrEmpty(drs["报价"].ToSafeString().Trim()))
{
Ces.Model.Supplier_PriceSheetDetailSub psds = new Supplier_PriceSheetDetailSub();
psds.PriceSheetID = PriceSheetID;
psds.GoodsID = drs["序列号"].ToSafeString().ToSafeGuid();
psds.Price = drs["报价"].ToSafeDecimal();
psds.FromType = ft;
psds.SupplierID = ui.GroupID.Value;
psds.CreateDate = DateTime.Now;
list.Add(psds);
}
}
bool isDone = cyptService.GivePriceSheetDetailSub(list);
if (isDone)
{
UICommon.Msg(this.Page, 1, "提交成功", "javascript:Back()", true);
}
else
{
UICommon.Msg(this.Page, 2, "提交失败");
}
}
else
{
UICommon.Msg(this.Page, 2, "文件格式不正确");
}
}
else
{
UICommon.Msg(this.Page, 2, "请选择上传文件");
}
}
}
}
/// <summary>
/// 工具类-删除空行
/// </summary>
/// <param name="dt"></param>
protected void RemoveEmpty(DataTable dt)
{
List<DataRow> removelist = new List<DataRow>();
for (int i = 0; i < dt.Rows.Count; i++)
{
bool IsNull = true;
for (int j = 0; j < dt.Columns.Count; j++)
{
if (!string.IsNullOrEmpty(dt.Rows[i][j].ToString().Trim()))
{
IsNull = false;
}
}
if (IsNull)
{
removelist.Add(dt.Rows[i]);
}
}
for (int i = 0; i < removelist.Count; i++)
{
dt.Rows.Remove(removelist[i]);
}
}
/// <summary>
/// 工具类-读取excle中的内容转为DataTable
/// </summary>
/// <param name="fileName"></param>
/// <returns></returns>
public DataTable ExRead(string fileName)
{
if (fileName == "" || !System.IO.File.Exists(fileName))
throw new Exception("File is not opened is not specified!");
DataTable dt = new DataTable();
string strConn ="Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+ fileName + ";" +"Extended Properties='Excel 8.0;HDR=Yes;IMEX=1;'";
// using (OleDbConnection conn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties=\"Excel 8.0;HDR=YSE;IMEX=1;\";Data Source=" + fileName))
using (OleDbConnection conn = new OleDbConnection(strConn))
{
conn.Open();
OleDbCommand cmd = null;
DataTable dtExcel = new DataTable();
DataTable dtOle = conn.GetSchema("Tables");
dtExcel = conn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, new object[] { null, null, null, "table" });
string tableName = dtExcel.Rows[0]["TABLE_NAME"].ToString();
OleDbDataAdapter da = new OleDbDataAdapter("SELECT * FROM [" + tableName + "]", conn);
cmd = da.SelectCommand;
da.SelectCommand.CommandTimeout = 0;
da.Fill(dt);
dt.TableName = tableName;
}
return dt;
}
public DataTable ExReadPlus(string fileName)
{
if (fileName == "" || !System.IO.File.Exists(fileName))
throw new Exception("File is not opened is not specified!");
DataTable dt = new DataTable();
using (OleDbConnection conn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties=\"Excel 8.0;HDR=YES;IMEX=1;\";Data Source=" + fileName))
{
conn.Open();
OleDbCommand cmd = null;
DataTable dtExcel = new DataTable();
DataTable dtOle = conn.GetSchema("Tables");
dtExcel = conn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, new object[] { null, null, null, "table" });
string tableName = dtExcel.Rows[0]["TABLE_NAME"].ToString();
OleDbDataAdapter da = new OleDbDataAdapter("SELECT * FROM [" + tableName + "]", conn);
cmd = da.SelectCommand;
da.SelectCommand.CommandTimeout = 0;
da.Fill(dt);
dt.TableName = tableName;
}
return dt;
}
//cn1.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + textBox1.Text + ";Extended Properties=Excel 8.0";
//cmd1.CommandText = "select * from [Sheet3$]";
//dr1 = cmd1.ExecuteReader();
//while(dr1.read())
//{
//DataRow dr1 = Table1.NewRow();
//dr1[0] =dr1["sod_nbr"].ToString();
//dr1[1] =dr1["sod_line"].ToString();
//Table1.Rows.Add(dr1);
//}
private string ClearNull(string s)
{
if (!string.IsNullOrEmpty(s))
{
return s;
}
else
{
return "";
}
}
}
//}