hanxuntao 7 months ago
parent 3a8074d4c7
commit bd49eb5501

Binary file not shown.

@ -1192,7 +1192,15 @@ namespace DSWeb.Areas.Account.Controllers
}
string fileOriginalName = Path.GetFileNameWithoutExtension(imgFile.FileName);
String fileExt = Path.GetExtension(imgFile.FileName).ToLower();
String newFileName = DateTime.Now.ToString("yyyyMMddHHmmss_ffff", DateTimeFormatInfo.InvariantInfo) + fileExt;
string ext = Path.GetExtension(imgFile.FileName).ToLower();
if (ext == ".asp" || ext == ".aspx" || ext == ".html" || ext == ".exe")
{
jsonRespose.Success = false;
jsonRespose.Message = "不允许上传ASP货ASPX文件";
return new ContentResult() { Content = JsonConvert.Serialize(jsonRespose) };
}
String newFileName = DateTime.Now.ToString("yyyyMMddHHmmss_ffff", DateTimeFormatInfo.InvariantInfo) + fileExt;
String filePath = dirPath + newFileName;
imgFile.SaveAs(filePath);

@ -665,6 +665,7 @@ namespace DSWeb.Areas.Account.Controllers
T_ALL_DA T_ALL_DA = new T_ALL_DA();
var bankdailylist = new List<ChBankDaily>();
int itemno = 100;
int critemno = 200;
foreach (var headData in headList)
{
var strCT = T_ALL_DA.GetStrSQL("CT", "select COUNT(*) CT from ch_bank_daily where BILLNO='" + headData.BILLNO + "'");
@ -683,24 +684,25 @@ namespace DSWeb.Areas.Account.Controllers
bankdaily.BANKGID = headData.ACCOUNT;
bankdaily.VOUDATE =zjdate;
bankdaily.BILLNO = headData.BILLNO;
bankdaily.ITEMNO = itemno;
bankdaily.BSSTATUS = "新增";
if (headData.BILLTYPE == 1)
{
bankdaily.ITEMNO = itemno;
bankdaily.DR = headData.AMOUNT;
bankdaily.CR = 0;
bankdaily.EXPLAN = "收" + headData.CUSTOMERNAME;
itemno = itemno + 1;
}
else {
bankdaily.ITEMNO = critemno;
bankdaily.CR = headData.AMOUNT;
bankdaily.DR = 0;
bankdaily.EXPLAN = "付" + headData.CUSTOMERNAME;
critemno = critemno + 1;
}
bankdaily.BLC =0;
bankdaily.EXPLAN2 = CUSTNO;
bankdailylist.Add(bankdaily);
itemno = itemno + 1;
}
var blUpSQL1 = " update ch_fee_settlement set ZJDATE='" + zjdate + "'"+ " where BILLNO='" + headData.BILLNO + "' ";
bool bl1 = T_ALL_DA.GetExecuteSqlCommand(blUpSQL1);

@ -912,7 +912,15 @@ namespace DSWeb.MvcContainer.Controllers
var file = Request.Files.Get(idx);
var ctnno = Path.GetFileNameWithoutExtension(file.FileName);
var name = Path.GetFileName(file.FileName);
string ext = Path.GetExtension(file.FileName).ToLower();
if (ext == ".asp" || ext == ".aspx" || ext == ".html" || ext == ".exe")
{
resp.Success = false;
resp.Message = "文件类型不正确";
return Json(resp);
}
var bsno = T_ALL_DA.GetStrSQL("GID", "select top 1 GID from [Code_CtnTkInspect] where CTNNO='" + ctnno + "'");
if (bsno != null && bsno.Trim() != "")
{

@ -1456,7 +1456,7 @@ namespace DSWeb.MvcContainer.Controllers
}
//202000727 保存后 如果DEST_RTCNT_TIME不为空 尝试更新op_seai.DEST_RTCNT_TIME
MsOpCtnBsCardDAL.UpdOpseae(headData);
//MsOpCtnBsCardDAL.UpdOpseae(headData);
MsOpCtnBsCardDAL.UpdOpseaiDEST_RTCNT_TIME(headData);
MsOpCtnBsCardDAL.UpBsCtn(headData);
MsOpCtnBsCardDAL.UpBsCtnClearRepair(headData.GID);
@ -3523,6 +3523,13 @@ namespace DSWeb.MvcContainer.Controllers
for (int idx = 0; idx < Request.Files.Count; idx++)
{
var file = Request.Files.Get(idx);
string ext = Path.GetExtension(file.FileName).ToLower();
if (ext == ".asp" || ext == ".aspx" || ext == ".html" || ext == ".exe")
{
resp.Success = false;
resp.Message = "文件类型不正确";
return Json(resp);
}
var BSNO = "";
var GID = "";
@ -3678,7 +3685,13 @@ namespace DSWeb.MvcContainer.Controllers
for (int idx = 0; idx < Request.Files.Count; idx++)
{
var file = Request.Files.Get(idx);
string ext = Path.GetExtension(file.FileName).ToLower();
if (ext == ".asp" || ext == ".aspx" || ext == ".html" || ext == ".exe")
{
resp.Success = false;
resp.Message = "文件类型不正确";
return Json(resp);
}
//var BSNO = "";
//var GID = "";
////if (type == "1" || type == "2")

@ -568,34 +568,8 @@ namespace DSWeb.MvcShipping.Controllers
#region 舱单状态
public ContentResult Get56CDCSTATUSList(string mblno, string bsno)
{
var result = new DBResult();
result = MsOpApplyDAL.Get56CDCSTATUSList(mblno, bsno);
var json = JsonConvert.Serialize(new { Success = result.Success, Message = result.Message, totalCount = 10, data = result.Data });
return new ContentResult() { Content = json };
}
public ContentResult Refresh56CDCSTATUSList(string data)
{
var bodyList = JsonConvert.Deserialize<List<MsOpApply>>(data);
var result = new DBResult();
if (bodyList != null)
{
result = MsOpApplyDAL.RefreshManifestStatus(bodyList);
}
var jsonRespose = new JsonResponse
{
Success = result.Success,
Message = result.Message,
};
return new ContentResult() { Content = JsonConvert.Serialize(jsonRespose) };
}
#endregion

@ -248,12 +248,7 @@ namespace DSWeb.MvcShipping.Controllers
return new ContentResult() {Content = JsonConvert.Serialize(jsonRespose)};
}
public ContentResult GetExpressStatusList(string expno, string expcorpid, string expid)
{
DBResult result = MsOpExpressDAL.GetExpressStatusList(expno, expcorpid, expid);
return new ContentResult() {Content = result.Message};
}
public ContentResult GetExpressDocList(int start, int limit, string sort, string condition)
{

@ -352,7 +352,7 @@ namespace DSWeb.MvcShipping.Controllers
return new ContentResult() { Content = json };
}
string ext = Path.GetExtension(file.FileName).ToLower();
if (ext == ".asp"||ext == ".aspx")
if (ext == ".asp"||ext == ".aspx" || ext == ".html" || ext == ".exe")
{
jsonRespose.Success = false;
jsonRespose.Message = "不允许上传ASP货ASPX文件";

@ -44,7 +44,6 @@ using DSWeb.MvcShipping.Models.MsOpHistry;
using DSWeb.Areas.MvcShipping.DAL.Message.vgm;
using DSWeb.Areas.MvcShipping.DAL.MsOpSeaeQDPortDataDAL;
using DSWeb.Areas.MvcShipping.DAL;
using DotNet4.Utilities;
using System.Web.Script.Serialization;
using System.Web;
using System.Drawing;
@ -1639,10 +1638,10 @@ namespace DSWeb.MvcShipping.Controllers
if (iscreatecustno == true)
MsSysBillNoSetDAL.DeleteBsNo(custno);
}
if (headData.ISLAND && !string.IsNullOrEmpty(headData.APPLYNO)&&string.IsNullOrEmpty(headData.MCONSIGNEEID)) {
var blUpSQL1 = " update op_seae set MCONSIGNEEID=op_ctnbscard.N_FACTRYADDR,DELIVERYDATE=op_ctnbscard.N_DELIVERYDATE,YARDTEL=op_ctnbscard.N_FACTRY from op_seae left join op_ctnbscard on (op_ctnbscard.APPLYNO=op_seae.APPLYNO) WHERE op_ctnbscard.APPLYNO='" + headData.APPLYNO + "'";
bool bl1 = T_ALL_DA.GetExecuteSqlCommand(blUpSQL1);
}
//if (headData.ISLAND && !string.IsNullOrEmpty(headData.APPLYNO)&&string.IsNullOrEmpty(headData.MCONSIGNEEID)) {
// var blUpSQL1 = " update op_seae set MCONSIGNEEID=op_ctnbscard.N_FACTRYADDR,DELIVERYDATE=op_ctnbscard.N_DELIVERYDATE,YARDTEL=op_ctnbscard.N_FACTRY from op_seae left join op_ctnbscard on (op_ctnbscard.APPLYNO=op_seae.APPLYNO) WHERE op_ctnbscard.APPLYNO='" + headData.APPLYNO + "'";
// bool bl1 = T_ALL_DA.GetExecuteSqlCommand(blUpSQL1);
//}
var jsonRespose = new JsonResponse
@ -7607,85 +7606,29 @@ namespace DSWeb.MvcShipping.Controllers
#endregion
#region QQCT单票查询
public ContentResult GetQQCTBILL(string mblno, string bsno)
{
var result = new DBResult();
result = MsOpSeaeYardDAL.GetQQCTBILL(mblno, bsno);
var json = JsonConvert.Serialize(new { Success = result.Success, Message = result.Message, totalCount = 10, data = result.Data });
return new ContentResult() { Content = json };
}
#endregion
#region QQCTU单票查询
public ContentResult GetQQCTUBILL(string mblno, string bsno)
{
var result = new DBResult();
result = MsOpSeaeYardDAL.GetQQCTUBILL(mblno, bsno);
var json = JsonConvert.Serialize(new { Success = result.Success, Message = result.Message, totalCount = 10, data = result.Data });
return new ContentResult() { Content = json };
}
#endregion
#region QQCT、QQCTU海关放行查询
public ContentResult GetQQCTQQCTUBILL(string mblno, string bsno)
{
var result = new DBResult();
result = MsOpSeaeYardDAL.GetQQCTQQCTUBILL(mblno, bsno);
var json = JsonConvert.Serialize(new { Success = result.Success, Message = result.Message, totalCount = 10, data = result.Data });
return new ContentResult() { Content = json };
}
#endregion
#region 单船查询
public ContentResult GetQDVESSEL(string vessel, string voyno)
{
var result = new DBResult();
result = MsOpSeaeYardDAL.GetQDVESSEL(vessel, voyno);
var json = JsonConvert.Serialize(new { Success = result.Success, Message = result.Message, totalCount = 10, data = result.Data });
return new ContentResult() { Content = json };
}
#endregion
#region 舱单状态
public ContentResult Get56CDCSTATUSList(string mblno, string bsno)
{
var result = new DBResult();
var path = Server.MapPath("../../EDIFiles/tmpimg");
result = MsOpSeaeYardDAL.Get56CDCSTATUSList(mblno, bsno, path);
var json = JsonConvert.Serialize(new { Success = result.Success, Message = result.Message, totalCount = 10, data = result.Data });
return new ContentResult() { Content = json };
}
public ContentResult Refresh56CDCSTATUSList(string data)
{
var bodyList = JsonConvert.Deserialize<List<MsOpSeae>>(data);
var result = new DBResult();
if (bodyList != null)
{
result = MsOpSeaeYardDAL.RefreshManifestStatus(bodyList);
}
var jsonRespose = new JsonResponse
{
Success = result.Success,
Message = result.Message,
};
return new ContentResult() { Content = JsonConvert.Serialize(jsonRespose) };
}
#endregion
#region EF查询
public ContentResult GetEFSTATUS(string mblnohead, string mblother)
{
var result = new DBResult();
result = MsOpSeaeDAL.GetEFSTATUS(mblnohead, mblother);
var json = JsonConvert.Serialize(new { Success = result.Success, Message = result.Message, totalCount = 10, data = result.Data });
return new ContentResult() { Content = json };
}
#endregion
#region 生成报关信息
@ -12467,138 +12410,7 @@ namespace DSWeb.MvcShipping.Controllers
}
}
public JsonResult GetShanghaiInfo(string mblno)
{
var data = GetShanghaiData(mblno);
if (data == "14")
return Json(new { success = false, data = "IAM鉴权失败,请检查业务参数配置PARAMNAMECLOUDBAIDUOCRApi、CLOUDBAIDUOCRSec" });
else if (data == "17")
return Json(new { success = false, data = "每日请求量超出限额,请在业务参数中更新百度云ApiKey及SecretKey" });
else if (data == "10012")
return Json(new { success = false, data = "超过请求次数" });
else
{
try
{
JavaScriptSerializer json = new JavaScriptSerializer();
//箱货列表
List<BoxCNT> list = json.Deserialize<List<BoxCNT>>(data);
return Json(new { success = true, data = list });
//箱货详情 url:http://www.hb56.com/PublicQuery/NewConGoodsDetail.aspx?cntid=41136229%20&terid=100307%20&iid=100307&eid=100307564001&sv=5@1278
}
catch (Exception ex)
{
return Json(new { success = false, data = ex.Message + ",其他信息:" + data });
}
}
}
public string GetShanghaiData(string mblno)
{
var code = getCode(20);
if (string.IsNullOrEmpty(code.Values.First()))
return code.Keys.First();
else
{
HttpHelper http = new HttpHelper();
HttpItem item = new HttpItem()
{
URL = "http://www.hb56.com/PublicQuery/ConGoodSearch.ashx?method=3&rdcode=" + code.Keys.First().ToUpper(),
Host = "www.hb56.com",
UserAgent = "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.92 Safari/537.36",
Cookie = code.Values.First()
};
var state = http.GetHtml(item).Html;
if (state == "OK")
{
item = new HttpItem()
{
URL = "http://www.hb56.com/PublicQuery/ConGoodSearch.ashx?type=1&token=1&Usertoken=1&method=0&cidq=&cid=" + mblno + "@1278&rdcode=" + code.Keys.First().ToUpper(),
Method = "Get",
Host = "www.hb56.com",
UserAgent = "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.92 Safari/537.36",
Cookie = code.Values.First()
};
var data = http.GetHtml(item).Html;
data = new Regex(@"~~\w+").Replace(data, "");//去掉末尾多余乱码
data = new Regex(@"(^.+rows\"":|\}$)").Replace(data, "");//去除首尾数据
return data;
}
else
return GetShanghaiData(mblno);
}
}
public Dictionary<string, string> getCode(int times)
{
HttpHelper http = new HttpHelper();
Dictionary<string, string> dict = new Dictionary<string, string>();
if (times == 0)
{
dict.Add("10012", null);
return dict;
}
HttpItem item = new HttpItem()
{
URL = "http://www.hb56.com",
Method = "get",//URL 可选项 默认为Get
UserAgent = "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.92 Safari/537.36"
};
HttpResult result = http.GetHtml(item);
//获取Cookie
var cookie = result.Cookie;
item = new HttpItem()
{
Accept = "image/webp,image/apng,image/*,*/*; q = 0.8",
URL = "http://www.hb56.com/RdCode.aspx?t=" + Guid.NewGuid(),
Method = "get",//URL 可选项 默认为Get
ResultType = ResultType.Byte,
Referer = "http://www.hb56.com/PublicQuery/NewConGoods.aspx",
Cookie = cookie,
UserAgent = "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.92 Safari/537.36"
};
result = http.GetHtml(item);
MsOpSeaeQDPortDataDAL ndal = new MsOpSeaeQDPortDataDAL("");
Bitmap bitmap = MsOpSeaeQDPortDataDAL.BytesToBitmap(result.ResultByte);
bitmap = ndal.unNoise(bitmap, 0);
Bitmap bm2 = new Bitmap(bitmap.Width, bitmap.Height);
Graphics g = Graphics.FromImage(bm2);
g.DrawImageUnscaled(bitmap, 0, 0);
string guid = Guid.NewGuid().ToString();
string path = HttpRuntime.AppDomainAppPath.ToString() + "qdporttemp\\";
string filename = path + guid + ".png";
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}
bm2.Save(filename);
//调用百度云文字识别
qingdaoport.OcrDemo ocr = new qingdaoport.OcrDemo();
JToken o = ocr.GeneralBasic(filename);
times--;
System.IO.File.Delete(filename);
var errorMsg = o.Value<string>("error_msg");
var wordsNum = o.Value<int>("words_result_num");
if (String.IsNullOrEmpty(errorMsg))
{
if (wordsNum > 0)
{
var txts = from p in (JArray)o.Root["words_result"] select (string)p["words"];
Regex r = new Regex(@"^[^u4e00-u9fa5]\w{2}[^u4e00-u9fa5]$");//匹配 计算表达式
string words = txts.First();
if (r.IsMatch(words))
{
dict.Add(words.ToString(), cookie);
return dict;
}
}
return getCode(times);
}
dict.Add(errorMsg, null);
return dict;
}
}
/// <summary>
/// 箱货信息类

@ -16,7 +16,6 @@ using DSWeb.MvcShipping.Models.MsSysParamSet;
using DSWeb.MvcShipping.DAL.MsSysParamSet;
using DSWeb.MvcShipping.Models.CurrencyExchange;//引用汇率管理的datamodule
using System.Web.Configuration;
using DotNet4.Utilities;
using DSWeb.Areas.MvcShipping.Comm;
using DSWeb.MvcShipping.DAL.MsCodeYardDataSet;
using Newtonsoft.Json.Linq;

@ -11,7 +11,6 @@ using HcUtility.Comm;
using System.Data.SqlClient;
using DSWeb.DataAccess;
using DSWeb.MvcShipping.Models.MsOpSeaeBill;
using DotNet4.Utilities;
using DSWeb.MvcShipping.Models.MsCodeServiceFeeTemplate;
using DSWeb.MvcShipping.DAL.MsSysBillNoSet;
using DSWeb.MvcShipping.DAL.MsSysParamSet;
@ -3142,503 +3141,14 @@ namespace DSWeb.MvcShipping.DAL.MsOpApplyDAL
}
#region 更新舱单状态
public static DBResult RefreshManifestStatus(List<MsOpApply> bodyList)
{
var result = new DBResult();
Database db = DatabaseFactory.CreateDatabase();
using (var conn = db.CreateConnection())
{
conn.Open();
var tran = conn.BeginTransaction();
try
{
var strSql = new StringBuilder();
strSql.Append("update op_apply set MANIFESTSTATUS=@MANIFESTSTATUS ");
strSql.Append(" where BSNO=@BSNO ");
var cmdupdate =
db.GetSqlStringCommand(strSql.ToString());
if (bodyList != null)
{
foreach (var enumValue in bodyList)
{
var manifeststatus = GetManifestSTATUSList(enumValue.MBLNO, enumValue.BSNO);
if (manifeststatus.ISPREPARED == false)
{
}
else
{
var status = "0";
if (manifeststatus.ISLOADCLEAR)
{
status = "5";
}
else if (manifeststatus.ISBILLCLEAR)
{
status = "4";
}
else if (manifeststatus.ISCUSTOMCLEAR)
{
status = "3";
}
else if (manifeststatus.ISARRIVAL)
{
status = "2";
}
else if (manifeststatus.ISPREPARED)
{
status = "1";
}
cmdupdate.Parameters.Clear();
db.AddInParameter(cmdupdate, "@MANIFESTSTATUS", DbType.String, status);
db.AddInParameter(cmdupdate, "@BSNO", DbType.String, enumValue.BSNO);
db.ExecuteNonQuery(cmdupdate, tran);
}
}
}
tran.Commit();
}
catch (Exception)
{
tran.Rollback();
result.Success = false;
result.Message = "更新出现错误,请重试或联系系统管理员";
return result;
}
}
result.Success = true;
result.Message = "更新成功" + result.Message;
return result;
}
#endregion
static public DBResult Get56CDCSTATUSList(string mblno, string bsno)
{
var result = new DBResult();
result.Success = true;
var bodyList = new List<MsOpSeaeCustomStatus>();
try
{
HttpHelper http = new HttpHelper();
HttpItem item = new HttpItem()
{
URL = "http://cdp.qdcdc.com/CDP/Login.aspx",//URL这里都是测试 必需项
Referer = "http://cdp.qdcdc.com/CDP/Login.aspx",
Encoding = null,//编码格式utf-8,gb2312,gbk 可选项 默认类会自动识别
Host = "56.qdcdc.com",
UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",
Accept = "text/html, application/xhtml+xml, */*",// 可选项有默认值
ContentType = "application/x-www-form-urlencoded",
Postdata = "__VIEWSTATE=%2FwEPDwULLTE2NDY3NDYxOTEPFgIeCWF1dGhMZXZlbAIBZGQFDBMiaM5jeSqYOP96II7WoW0oyc%2BSfvVv%2FGIrZ%2FP5bg%3D%3D&__EVENTVALIDATION=%2FwEWAgLO2Kj0DALLr40TnsCiM32qLiMK44G5moITtUwkOOjKlsY5RQB7pzBatDk%3D&user_name=user1&password=88888888&hdSuccess=true",
Method = "POST",//URL 可选项 默认为Get
};
HttpResult resulthtml = http.GetHtml(item);
var mycookie = resulthtml.Cookie;
http = new HttpHelper();
item = new HttpItem()
{
URL = "http://cdp.qdcdc.com/CDP/MftQuery/BillExportQuery.aspx",//URL这里都是测试 必需项
Referer = "http://cdp.qdcdc.com/CDP/MftQuery/BillExportQuery.aspx",
Encoding = null,//编码格式utf-8,gb2312,gbk 可选项 默认类会自动识别
Host = "cdp.qdcdc.com",
Cookie = mycookie,
UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",
Accept = "text/html, application/xhtml+xml, */*",// 可选项有默认值
ContentType = "application/x-www-form-urlencoded",
Postdata = "__VIEWSTATE=%2FwEPDwUKLTExMzU1MTk4OGRktjQbcTwrtROJIB0DnKW%2FD24wHlo1MdO2yN13vwaX7GI%3D"
+ "&__EVENTVALIDATION=%2FwEWGAK%2FttbiCQKj%2B6LoDwLooeTACQLu%2F%2Fi7CwLa9PCNDgLp7r6qDgLblJqhCgLV3JG"
+ "HCALkwOjWBQLD2Y%2F%2FAwKYnc6YDwLJ7LFVAuDmrTwCvf3v3AcCluH%2BPgKs37SpCwKqgp2pDQLZ1tnQDQLol%2BuuCQL"
+ "T4ZKcAQKklPGiDwLB043aDwLAkeEVAoba9d8KBTCeVFBSa01eOoxl%2FjKz%2Fc7CpJUHsEtTic89nJEP3hM%3D&txtIMO="
+ "&txtTransportName=&txtVoyageNo=&txtBillNo=" + mblno + "&LinkButtonQuery=%E6%9F%A5%E8%AF%A2&hdSelectRow="
+ "&hdData=&hdCols=%E5%BA%8F%E5%8F%B7%2C%E5%87%BA%E5%8F%A3%E6%8F%90%E5%8D%95%E5%8F%B7%2C%E8%BF%90%E8%BE"
+ "%93%E5%B7%A5%E5%85%B7%E4%BF%A1%E6%81%AF%2C%E6%80%BB%E5%8D%95%2F%E5%88%86%E5%8D%95%2C%E9%A2%84%E9%85%"
+ "8D%E8%88%B1%E5%8D%95%2C%E5%87%BA%E5%8F%A3%E8%BF%90%E6%8A%B5%E6%8A%A5%E5%91%8A%2C%E8%90%BD%E8%B4%A7%E"
+ "6%94%B9%E9%85%8D%E7%8A%B6%E6%80%81%2C%E5%87%BA%E5%8F%A3%E8%A3%85%E8%BD%BD%2C%E5%87%BA%E5%8F%A3%E7%90"
+ "%86%E8%B4%A7%2C%E5%87%BA%E5%8F%A3%E6%8A%A5%E5%85%B3%E7%8A%B6%E6%80%81%2C%E6%8F%90%E5%8D%95%E6%94%BE%"
+ "E8%A1%8C%2C%E8%BD%AC%E5%8F%91%E7%8A%B6%E6%80%81&hdChildHide=&hdColsHide=&hdColSpan=%E6%8F%90%E5%8D%95"
+ "%E5%8F%B7&hdMutiQuery=&hdReturnResult=&hdLoadMarkText=&hdArrivalMarkText=&hdEmptyResult=&hdTalMarkText=&hdBillRelStatus=",
Method = "POST",//URL 可选项 默认为Get
};
resulthtml = http.GetHtml(item);
resulthtml.Html = resulthtml.Html.Replace("../Css/NewMftQueryStyle.css", "http://56.qdcdc.com/cnm/Css/NewMftQueryStyle.css");
result.Data = resulthtml.Html;
var datahtml = GetDataHtmlList(resulthtml.Html, "id=\"tbData\"", "</table>");
datahtml = datahtml.Remove(datahtml.IndexOf("</tr>"), 5);
datahtml = datahtml.Remove(0, datahtml.IndexOf(">") + 1);
if (datahtml != "")
{
var i = 1;
while (datahtml.IndexOf("</tr>") >= 0)
{
var datalength = datahtml.IndexOf("</tr>");
var recdatastr = datahtml.Substring(0, datalength + 5);
datahtml = datahtml.Substring(datalength + 5, datahtml.Length - datalength - 5);
recdatastr = recdatastr.Remove(0, recdatastr.IndexOf("<tr") + 3);
recdatastr = recdatastr.Remove(recdatastr.IndexOf("</tr>"), 5);
recdatastr = recdatastr.Replace(" ", "");
recdatastr = recdatastr.Replace("/r/n ", "");
var fieldno = 1;
var istrue = false;
if (i != 1 && i != 2 && (recdatastr.Length > 40))
{
MsOpSeaeCustomStatus data = new MsOpSeaeCustomStatus();
while (recdatastr.IndexOf("<td") >= 0)
{
var fieldlength = recdatastr.IndexOf("</td>");
var fielddatastr = recdatastr.Substring(0, fieldlength + 5);
recdatastr = recdatastr.Substring(fieldlength + 5, recdatastr.Length - fieldlength - 5);
fielddatastr = fielddatastr.Remove(fielddatastr.IndexOf("</td>"), 5);
fielddatastr = fielddatastr.Remove(0, fielddatastr.IndexOf(">") + 1);
fielddatastr = fielddatastr.Replace("\r\n", "");
fielddatastr = fielddatastr.Replace(" ", "");
if (fieldno == 1)
{
fielddatastr = fielddatastr.Remove(0, fielddatastr.IndexOf(">") + 1);
if (fielddatastr == "合计:" || fielddatastr == "<bstyle=\"color:Red\">暂无相关数据</b>") istrue = false; else istrue = true;
}
if (fieldno == 11)
{
data.PREPAREDSTR = fielddatastr;//箱号
}
if (fieldno == 12)
{
if (fielddatastr.IndexOf("接受申报") >= 0)
data.ISPREPARED = true;//箱号
}
if (fieldno == 13)
{
data.ARRIVALSTR = fielddatastr;//箱号
}
if (fieldno == 14)
{
if (fielddatastr.IndexOf("运抵正常") >= 0)
data.ISARRIVAL = true;//箱号
}
if (fieldno == 15)
{
if (fielddatastr.IndexOf("单证放行") >= 0)
{
data.ISCUSTOMCLEAR = true;//箱号
data.CUSTOMCLEARSTR = fielddatastr.Replace("单证放行", "");
}
}
if (fieldno == 16)
{
data.BILLCLEARSTR = fielddatastr;//箱号
}
if (fieldno == 17)
{
if (fielddatastr.IndexOf("已放行") >= 0)
data.ISBILLCLEAR = true;//箱号
}
if (fieldno == 19)
{
data.LOADCLEARSTR = fielddatastr;//箱号
}
if (fieldno == 20)
{
if (fielddatastr.IndexOf("同意装载") >= 0)
data.ISLOADCLEAR = true;//箱号
}
fieldno = fieldno + 1;
}
if (istrue)
bodyList.Add(data);
}
i = i + 1;
}
}
if (bodyList.Count != 0)
{
Database db = DatabaseFactory.CreateDatabase();
using (var conn = db.CreateConnection())
{
conn.Open();
var strSql = new StringBuilder();
strSql.Append("update op_apply set MANIFESTSTATUS=@MANIFESTSTATUS ");
strSql.Append(" where BSNO=@BSNO ");
var cmdupdate =
db.GetSqlStringCommand(strSql.ToString());
if (bodyList != null)
{
var manifeststatus = bodyList[0];
if (manifeststatus.ISPREPARED == false)
{
}
else
{
var statusref = "无状态";
var status = "0";
if (manifeststatus.ISLOADCLEAR)
{
status = "5";
statusref = "装载放行";
}
else if (manifeststatus.ISBILLCLEAR)
{
status = "4";
statusref = "提单放行";
}
else if (manifeststatus.ISCUSTOMCLEAR)
{
status = "3";
statusref = "报关放行";
}
else if (manifeststatus.ISARRIVAL)
{
status = "2";
statusref = "运抵正常";
}
else if (manifeststatus.ISPREPARED)
{
status = "1";
statusref = "预配舱单";
}
cmdupdate.Parameters.Clear();
db.AddInParameter(cmdupdate, "@MANIFESTSTATUS", DbType.String, status);
db.AddInParameter(cmdupdate, "@BSNO", DbType.String, bsno);
db.ExecuteNonQuery(cmdupdate);
result.Message = statusref;
}
}
}
}
}
catch
{
result.Success = false;
result.Message = "提取数据过程中发生错误,请联系系统管理员!";
}
return result;
}
static public MsOpSeaeCustomStatus GetManifestSTATUSList(string mblno, string bsno)
{
var bodyList = new List<MsOpSeaeCustomStatus>();
try
{
HttpHelper http = new HttpHelper();
HttpItem item = new HttpItem()
{
URL = "http://cdp.qdcdc.com/CDP/Login.aspx",//URL这里都是测试 必需项
Referer = "http://cdp.qdcdc.com/CDP/Login.aspx",
Encoding = null,//编码格式utf-8,gb2312,gbk 可选项 默认类会自动识别
Host = "56.qdcdc.com",
UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",
Accept = "text/html, application/xhtml+xml, */*",// 可选项有默认值
ContentType = "application/x-www-form-urlencoded",
Postdata = "__VIEWSTATE=%2FwEPDwULLTE2NDY3NDYxOTEPFgIeCWF1dGhMZXZlbAIBZGQFDBMiaM5jeSqYOP96II7WoW0oyc%2BSfvVv%2FGIrZ%2FP5bg%3D%3D&__EVENTVALIDATION=%2FwEWAgLO2Kj0DALLr40TnsCiM32qLiMK44G5moITtUwkOOjKlsY5RQB7pzBatDk%3D&user_name=user1&password=88888888&hdSuccess=true",
Method = "POST",//URL 可选项 默认为Get
};
HttpResult resulthtml = http.GetHtml(item);
var mycookie = resulthtml.Cookie;
http = new HttpHelper();
item = new HttpItem()
{
URL = "http://cdp.qdcdc.com/CDP/MftQuery/BillExportQuery.aspx",//URL这里都是测试 必需项
Referer = "http://cdp.qdcdc.com/CDP/MftQuery/BillExportQuery.aspx",
Encoding = null,//编码格式utf-8,gb2312,gbk 可选项 默认类会自动识别
Host = "cdp.qdcdc.com",
Cookie = mycookie,
UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",
Accept = "text/html, application/xhtml+xml, */*",// 可选项有默认值
ContentType = "application/x-www-form-urlencoded",
Postdata = "__VIEWSTATE=%2FwEPDwUKLTExMzU1MTk4OGRktjQbcTwrtROJIB0DnKW%2FD24wHlo1MdO2yN13vwaX7GI%3D"
+ "&__EVENTVALIDATION=%2FwEWGAK%2FttbiCQKj%2B6LoDwLooeTACQLu%2F%2Fi7CwLa9PCNDgLp7r6qDgLblJqhCgLV3JG"
+ "HCALkwOjWBQLD2Y%2F%2FAwKYnc6YDwLJ7LFVAuDmrTwCvf3v3AcCluH%2BPgKs37SpCwKqgp2pDQLZ1tnQDQLol%2BuuCQL"
+ "T4ZKcAQKklPGiDwLB043aDwLAkeEVAoba9d8KBTCeVFBSa01eOoxl%2FjKz%2Fc7CpJUHsEtTic89nJEP3hM%3D&txtIMO="
+ "&txtTransportName=&txtVoyageNo=&txtBillNo=" + mblno + "&LinkButtonQuery=%E6%9F%A5%E8%AF%A2&hdSelectRow="
+ "&hdData=&hdCols=%E5%BA%8F%E5%8F%B7%2C%E5%87%BA%E5%8F%A3%E6%8F%90%E5%8D%95%E5%8F%B7%2C%E8%BF%90%E8%BE"
+ "%93%E5%B7%A5%E5%85%B7%E4%BF%A1%E6%81%AF%2C%E6%80%BB%E5%8D%95%2F%E5%88%86%E5%8D%95%2C%E9%A2%84%E9%85%"
+ "8D%E8%88%B1%E5%8D%95%2C%E5%87%BA%E5%8F%A3%E8%BF%90%E6%8A%B5%E6%8A%A5%E5%91%8A%2C%E8%90%BD%E8%B4%A7%E"
+ "6%94%B9%E9%85%8D%E7%8A%B6%E6%80%81%2C%E5%87%BA%E5%8F%A3%E8%A3%85%E8%BD%BD%2C%E5%87%BA%E5%8F%A3%E7%90"
+ "%86%E8%B4%A7%2C%E5%87%BA%E5%8F%A3%E6%8A%A5%E5%85%B3%E7%8A%B6%E6%80%81%2C%E6%8F%90%E5%8D%95%E6%94%BE%"
+ "E8%A1%8C%2C%E8%BD%AC%E5%8F%91%E7%8A%B6%E6%80%81&hdChildHide=&hdColsHide=&hdColSpan=%E6%8F%90%E5%8D%95"
+ "%E5%8F%B7&hdMutiQuery=&hdReturnResult=&hdLoadMarkText=&hdArrivalMarkText=&hdEmptyResult=&hdTalMarkText=&hdBillRelStatus=",
Method = "POST",//URL 可选项 默认为Get
};
resulthtml = http.GetHtml(item);
var datahtml = GetDataHtmlList(resulthtml.Html, "id=\"tbData\"", "</table>");
datahtml = datahtml.Remove(datahtml.IndexOf("</tr>"), 5);
datahtml = datahtml.Remove(0, datahtml.IndexOf(">") + 1);
if (datahtml != "")
{
var i = 1;
while (datahtml.IndexOf("</tr>") >= 0)
{
var datalength = datahtml.IndexOf("</tr>");
var recdatastr = datahtml.Substring(0, datalength + 5);
datahtml = datahtml.Substring(datalength + 5, datahtml.Length - datalength - 5);
recdatastr = recdatastr.Remove(0, recdatastr.IndexOf("<tr") + 3);
recdatastr = recdatastr.Remove(recdatastr.IndexOf("</tr>"), 5);
recdatastr = recdatastr.Replace(" ", "");
recdatastr = recdatastr.Replace("/r/n ", "");
var fieldno = 1;
var istrue = false;
if (i != 1 && i != 2 && (recdatastr.Length > 40))
{
MsOpSeaeCustomStatus data = new MsOpSeaeCustomStatus();
while (recdatastr.IndexOf("<td") >= 0)
{
var fieldlength = recdatastr.IndexOf("</td>");
var fielddatastr = recdatastr.Substring(0, fieldlength + 5);
recdatastr = recdatastr.Substring(fieldlength + 5, recdatastr.Length - fieldlength - 5);
fielddatastr = fielddatastr.Remove(fielddatastr.IndexOf("</td>"), 5);
fielddatastr = fielddatastr.Remove(0, fielddatastr.IndexOf(">") + 1);
fielddatastr = fielddatastr.Replace("\r\n", "");
fielddatastr = fielddatastr.Replace(" ", "");
if (fieldno == 1)
{
fielddatastr = fielddatastr.Remove(0, fielddatastr.IndexOf(">") + 1);
if (fielddatastr == "合计:" || fielddatastr == "<bstyle=\"color:Red\">暂无相关数据</b>") istrue = false; else istrue = true;
}
if (fieldno == 11)
{
data.PREPAREDSTR = fielddatastr;//箱号
}
if (fieldno == 12)
{
if (fielddatastr.IndexOf("接受申报") >= 0)
data.ISPREPARED = true;//箱号
}
if (fieldno == 13)
{
data.ARRIVALSTR = fielddatastr;//箱号
}
if (fieldno == 14)
{
if (fielddatastr.IndexOf("运抵正常") >= 0)
data.ISARRIVAL = true;//箱号
}
if (fieldno == 15)
{
if (fielddatastr.IndexOf("单证放行") >= 0)
{
data.ISCUSTOMCLEAR = true;//箱号
data.CUSTOMCLEARSTR = fielddatastr.Replace("单证放行", "");
}
}
if (fieldno == 16)
{
data.BILLCLEARSTR = fielddatastr;//箱号
}
if (fieldno == 17)
{
if (fielddatastr.IndexOf("已放行") >= 0)
data.ISBILLCLEAR = true;//箱号
}
if (fieldno == 19)
{
data.LOADCLEARSTR = fielddatastr;//箱号
}
if (fieldno == 20)
{
if (fielddatastr.IndexOf("同意装载") >= 0)
data.ISLOADCLEAR = true;//箱号
}
fieldno = fieldno + 1;
}
if (istrue)
bodyList.Add(data);
}
i = i + 1;
}
}
}
catch
{
}
if (bodyList.Count > 0)
return bodyList[0];
return new MsOpSeaeCustomStatus();
}
#endregion

@ -20,7 +20,6 @@ using HcUtility.Core;
using DSWeb.MvcShipping.Models.CompanyDef;
using DSWeb.Areas.CommMng.DAL;
using DSWeb.MvcShipping.Models.FtpSet;
using DotNet4.Utilities;
using DSWeb.MvcShipping.DAL.MsCodeYardDataSet;
using InvokeWebService;
using DSWeb.MvcShipping.DAL.YARDCTNXML;

@ -2289,7 +2289,7 @@ namespace DSWeb.Areas.MvcShipping.DAL
}
if (OPSEAE.PORTLOADID != OPCTNAPPLY.PORTLOAD)
if (OPSEAE.PORTLOAD != OPCTNAPPLY.PORTLOAD)
{
if (OPCTNAPPLY.PORTLOAD == "QINGDAO,CHINA" && OPSEAE.PORTLOADID == "CNTAO")
{
@ -2326,7 +2326,7 @@ namespace DSWeb.Areas.MvcShipping.DAL
auditlist.Add(audit);
}
if (OPSEAE.PORTDISCHARGEID != OPCTNAPPLY.PORTDISCHARGE)
if (OPSEAE.PORTDISCHARGE != OPCTNAPPLY.PORTDISCHARGE)
{
sort = sort + 1;
var audit = new MsOpAuditDetail();
@ -2334,7 +2334,7 @@ namespace DSWeb.Areas.MvcShipping.DAL
audit.ERRMSG = "与用箱申请卸货港不一致!";
audit.AUDITTYPE = "1";
audit.AUDITDETAILID = "SEAE019";
audit.ERRDATA = "卸货港:" + OPSEAE.PORTDISCHARGEID + "--用箱申请[" + OPCTNAPPLY.BSNO + "] 卸货港:" + OPCTNAPPLY.PORTDISCHARGE;
audit.ERRDATA = "卸货港:" + OPSEAE.PORTDISCHARGE + "--用箱申请[" + OPCTNAPPLY.BSNO + "] 卸货港:" + OPCTNAPPLY.PORTDISCHARGE;
auditlist.Add(audit);
}
else
@ -3571,7 +3571,7 @@ namespace DSWeb.Areas.MvcShipping.DAL
auditlist.Add(audit);
}
if (OPSEAE.PORTDISCHARGEID != OPCTNAPPLY.PORTDISCHARGE)
if (OPSEAE.PORTDISCHARGE != OPCTNAPPLY.PORTDISCHARGE)
{
sort = sort + 1;
var audit = new MsOpAuditDetail();
@ -3579,7 +3579,7 @@ namespace DSWeb.Areas.MvcShipping.DAL
audit.ERRMSG = "与用箱申请卸货港不一致!";
audit.AUDITTYPE = "1";
audit.AUDITDETAILID = "SEAI0019";
audit.ERRDATA = "卸货港:" + OPSEAE.PORTDISCHARGEID + "--用箱申请[" + OPCTNAPPLY.BSNO + "] 卸货港:" + OPCTNAPPLY.PORTDISCHARGE;
audit.ERRDATA = "卸货港:" + OPSEAE.PORTDISCHARGE + "--用箱申请[" + OPCTNAPPLY.BSNO + "] 卸货港:" + OPCTNAPPLY.PORTDISCHARGE;
auditlist.Add(audit);
}
else

@ -14,7 +14,6 @@ using DSWeb.DataAccess;
using System.IO;
using HcUtility.Core;
using DSWeb.Areas.CommMng.DAL;
using DotNet4.Utilities;
using DSWeb.SoftMng.DBUtility;
@ -275,63 +274,7 @@ namespace DSWeb.MvcShipping.DAL.MsOpExpressDAL
return result;
}
#region 快递动态
static public DBResult GetExpressStatusList(string expno, string expcorpid,string expid)
{
var result = new DBResult();
result.Success = true;
try
{
HttpHelper http = new HttpHelper();
HttpItem item = new HttpItem()
{
URL = "http://www.kuaidi100.com/autonumber/autoComNum?text="+expno,//URL这里都是测试 必需项
Referer = "http://www.kuaidi100.com/",
Encoding = null,//编码格式utf-8,gb2312,gbk 可选项 默认类会自动识别
Host = "www.kuaidi100.com",
UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",
Accept = "application/json, text/javascript, */*",// 可选项有默认值
ContentType = "text/html",
Method = "POST",//URL 可选项 默认为Get
};
HttpResult resulthtml = http.GetHtml(item);
var mycookie = resulthtml.Cookie;
item = new HttpItem()
{
URL = "http://www.kuaidi100.com/query?type="+expcorpid+"&postid="+expno+"&id=1&valicode=&temp=0.07429930970249981",//URL这里都是测试 必需项
Referer = "http://www.kuaidi100.com/",
Encoding = null,//编码格式utf-8,gb2312,gbk 可选项 默认类会自动识别
Cookie = mycookie,
Host = "www.kuaidi100.com",
UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",
Accept = "text/html, application/xhtml+xml, */*",// 可选项有默认值
ContentType = "application/x-www-form-urlencoded",
Method = "GET",//URL 可选项 默认为Get
};
resulthtml = http.GetHtml(item);
result.Message = resulthtml.Html;
var alltext = result.Message;
alltext = alltext.Replace(" ","");
if (alltext.IndexOf("已签收")>=0){
RefreshExpressSTATUS(expid,"已收件");
}
}
catch
{
result.Success = false;
result.Message = "提取数据过程中发生错误,请联系系统管理员!";
}
// bodyList=SumBodyList(bodyList);
return result;
}
#endregion
#endregion

@ -15,7 +15,6 @@ using System.Data.SqlClient;
using DSWeb.DataAccess;
using HcUtility.Core;
using DSWeb.Areas.CommMng.DAL;
using DotNet4.Utilities;
using DSWeb.MvcShipping.DAL.MsSysParamSet;
using System.Web;
using DSWeb.MvcShipping.DAL.DsSendmail;
@ -5361,52 +5360,7 @@ namespace DSWeb.MvcShipping.DAL.MsOpSeaeDAL
}
#endregion
#region EF状态
static public DBResult GetEFSTATUS ( string mblnohead, string mblother )
{
var result = new DBResult();
result.Success = true;
try
{
HttpHelper http = new HttpHelper();
HttpItem item = new HttpItem()
{
URL = "http://www.wangbaby19.com/home/Review?MawbPrefix=" + mblnohead + "&MawbSerial=" + mblother,//URL这里都是测试 必需项
Encoding = null,//编码格式utf-8,gb2312,gbk 可选项 默认类会自动识别
Host = "www.wangbaby19.com",
UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",
Accept = "text/html, application/xhtml+xml, */*",// 可选项有默认值
ContentType = "text/html",
Method = "get",//URL 可选项 默认为Get
};
HttpResult resulthtml = http.GetHtml(item);
var datahtml = resulthtml.Html;
//datahtml = datahtml.Replace("css/StyleSheet.css", "http://www.sd.sinotrans.com/sdweb/HomePage/CntrYardQuery/css/StyleSheet.css");
//datahtml = datahtml.Replace("../../App_Themes/HomePage/HomePage.css", "http://www.sd.sinotrans.com/sdweb/App_Themes/HomePage/HomePage.css");
datahtml = datahtml.Remove(0, datahtml.IndexOf("<div id=\"body\""));
//datahtml = datahtml.Replace("/Home/ContainerEvent/?", "http://www.wangbaby19.com/Home/ContainerEvent/?");
datahtml = "\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n <title>主单货物状态及跟踪</title>\r\n\r\n\r\n <script src=\"http://www.wangbaby19.com/Scripts/jquery-1.9.1.min.js\" "
+ "type=\"text/javascript\"></script>\r\n <script src=\"http://www.wangbaby19.com/Scripts/jquery-ui1.9.1.min.js\" type=\"text/javascript\">"
+ "</script>\r\n <script src=\"http://www.wangbaby19.com/Scripts/jquery.higo_plugins_ad.js\" type=\"text/javascript\"></script>\r\n\r\n "
+ "<script src=\"http://www.wangbaby19.com/Scripts/bootstrap.min.js\" type=\"text/javascript\"></script>\r\n\r\n\r\n "
+ "<link href=\"http://www.wangbaby19.com/Content/bootstrap/css/bootstrap.min.css\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"http://www.wangbaby19.com/Content/themes/base/jquery.ui.all.css\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"http://www.wangbaby19.com/Content/ContainerStatusCollect.css\" rel=\"stylesheet\" type=\"text/css\" />\r\n\r\n <script src=\"http://www.wangbaby19.com/Scripts/wb.js\" type=\"text/javascript\"></script>\r\n\r\n\r\n<title>\r\n\r\n</title></head>\r\n<body>" + datahtml;
result.Data = datahtml;
}
catch
{
result.Success = false;
result.Message = "提取数据过程中发生错误,请联系系统管理员!";
}
return result;
}
#endregion
#region 引入EXCEL
static public MsOpSeaeDetail FindCtnData(string cntrno, List<MsOpSeaeDetail> ctnlist)

@ -16,7 +16,6 @@ using System.IO;
using HcUtility.Core;
using DSWeb.MvcShipping.Models.CompanyDef;
using DSWeb.Areas.CommMng.DAL;
using DotNet4.Utilities;
using InvokeWebService;
using System.Xml;
using System.Xml.Serialization;

File diff suppressed because one or more lines are too long

@ -16,7 +16,6 @@ using DSWeb.MvcShipping.Models.MsOpSeaeBill;
using DSWeb.MvcShipping.Models.MsOpSeae;
using DSWeb.MvcShipping.Models.CompanyDef;
using DSWeb.MvcShipping.DAL.DsSendmail;
using DotNet4.Utilities;
using HcUtility.Core;
using DSWeb.MvcShipping.DAL.MsSysParamSet;
using Microsoft.Office.Interop.Excel;
@ -5766,21 +5765,8 @@ namespace DSWeb.MvcShipping.DAL.MsOpSeaeEdiDAL
}
HttpHelper http = new HttpHelper();
HttpItem item = new HttpItem()
{
URL = "http://edi.gsf24.cn/api/openapi?CustomerCode="+sendercode+"&AppKey="+appkey,//URL这里都是测试 必需项
Referer = "http://edi.gsf24.cn/api/openapi?CustomerCode=" + sendercode + "&AppKey=" + appkey,
Encoding = null,//编码格式utf-8,gb2312,gbk 可选项 默认类会自动识别
Host = "edi.gsf24.cn",
UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",
Accept = "text/html, application/xhtml+xml, */*",// 可选项有默认值
ContentType = "application/x-www-form-urlencoded",
Postdata = strSql.ToString(),
Method = "POST",//URL 可选项 默认为Get
};
HttpResult resulthtml = http.GetHtml(item);
result.Data = resulthtml.Html;
result.Data ="";
result = new DBResult();
result.Success = true;

@ -13,7 +13,6 @@ using System.Data.Common;
using Microsoft.Practices.EnterpriseLibrary.Data;
using HcUtility.Comm;
using WebSqlHelper;
using DotNet4.Utilities;
using DSWeb.MvcShipping.Models.MsOpApply;
using DSWeb.EntityDA;

@ -13881,11 +13881,12 @@ Ext.extend(Shipping.MsRptOpProfitIndex, Ext.Panel, {
fields: ['FSTATUS', 'NAME']
});
this.storeISCORP.add({ "FSTATUS": "", "NAME": "全部" });
this.storeISCORP.add({ "FSTATUS": "1", "NAME": "公司综合" });
this.storeISCORP.add({ "FSTATUS": "0", "NAME": "业务" });
this.storeISCORP.add({ "FSTATUS": "1", "NAME": "其他" });
this.comboxISCORP = Ext.create('DsExt.ux.RefTableCombox', {
fieldLabel: '公司综合和业务',
fieldLabel: '业务和其他',
store: this.storeISCORP,
valueField: 'FSTATUS',
displayField: 'NAME',
@ -15320,9 +15321,9 @@ Ext.extend(Shipping.MsRptOpProfitIndex, Ext.Panel, {
}
else {
if (ISCORP == "1") {
sql = sql + getAndConSql(sql, ISCORP, "B.SALE='公司综合'");
sql = sql + getAndConSql(sql, ISCORP, "(B.SALE='公司综合' or B.SALE='盛泰恒青岛' or B.SALE='盛泰恒海南' or B.SALE='HC(SGP)' )");
} if (ISCORP == "0") {
sql = sql + getAndConSql(sql, ISCORP, "B.SALE<>'公司综合'");
sql = sql + getAndConSql(sql, ISCORP, "(B.SALE<>'公司综合' and B.SALE<>'盛泰恒青岛' and B.SALE<>'盛泰恒海南' and B.SALE<>'HC(SGP)' )");
}
}

@ -204,6 +204,13 @@ namespace DSWeb.Areas.TruckMng.Controllers
var size = file.ContentLength;
var name = Path.GetFileName(file.FileName);
string ext = Path.GetExtension(file.FileName).ToLower();
if (ext == ".asp" || ext == ".aspx" || ext == ".html" || ext == ".exe")
{
jsonRespose.Success = false;
jsonRespose.Message = "不允许上传ASP货ASPX文件";
return new ContentResult() { Content = JsonConvert.Serialize(jsonRespose) };
}
var usercode = CookieConfig.GetCookie_UserCode(Request);
string filename = path + "\\" + usercode + DateTime.Now.ToString("yyyyMMddHHmmssfff") + name;

@ -45,6 +45,7 @@
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Prefer32Bit>false</Prefer32Bit>
<PlatformTarget>AnyCPU</PlatformTarget>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
@ -13098,10 +13099,6 @@
<Project>{34447476-60C8-46F1-9794-143EAC52CCB5}</Project>
<Name>DSWebComponent</Name>
</ProjectReference>
<ProjectReference Include="..\FrmHttpHelper\FrmHttpHelper\FrmHttpHelper.csproj">
<Project>{bc03c83b-b33d-483a-a7d9-d45f469911cc}</Project>
<Name>FrmHttpHelper</Name>
</ProjectReference>
<ProjectReference Include="..\HcDBUtility\HcDBUtility.csproj">
<Project>{3251626d-7409-42c5-9bb6-2bf6bd6c285b}</Project>
<Name>HcDBUtility</Name>

@ -2,7 +2,7 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectView>ShowAllFiles</ProjectView>
<NameOfLastUsedPublishProfile>配置文件1</NameOfLastUsedPublishProfile>
<NameOfLastUsedPublishProfile>D:\DONGSHENG7\D7HENGCHENG\DSWeb\Properties\PublishProfiles\配置文件1.pubxml</NameOfLastUsedPublishProfile>
<UseIISExpress>true</UseIISExpress>
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
<Use64BitIISExpress />

@ -7,6 +7,8 @@
<PropertyGroup>
<TimeStampOfAssociatedLegacyPublishXmlFile>2018-03-02T16:59:08.8750562+08:00</TimeStampOfAssociatedLegacyPublishXmlFile>
<_PublishTargetUrl>D:\DONGSHENGWEBHC2</_PublishTargetUrl>
<History>False|2024-04-29T09:52:38.5503406Z;False|2024-04-29T17:26:13.0332784+08:00;False|2024-04-29T17:24:27.2283158+08:00;False|2024-04-29T17:21:02.7760525+08:00;False|2024-04-29T17:15:23.0790860+08:00;False|2024-04-29T17:13:16.3908539+08:00;False|2024-04-29T17:10:51.6254597+08:00;False|2024-04-29T17:09:35.0339596+08:00;</History>
<LastFailureDetails />
</PropertyGroup>
<ItemGroup>
<File Include="7za.exe">
@ -400,7 +402,7 @@
<publishTime>04/18/2022 10:10:31</publishTime>
</File>
<File Include="Areas/Account/Viewsjs/Chfee_Audit/Chfee_AuditBL.js">
<publishTime>02/21/2024 15:01:11</publishTime>
<publishTime>04/10/2024 10:52:47</publishTime>
</File>
<File Include="Areas/Account/Viewsjs/Chfee_Audit/Chfee_AuditLR.js">
<publishTime>03/16/2021 14:28:12</publishTime>
@ -5842,7 +5844,7 @@
<publishTime>02/20/2024 10:33:35</publishTime>
</File>
<File Include="Areas/MvcContainer/Viewsjs/MsOpCtnBsCard/MsOpCtnInsuranceEdit.js">
<publishTime>03/22/2024 16:28:19</publishTime>
<publishTime>04/10/2024 13:46:38</publishTime>
</File>
<File Include="Areas/MvcContainer/Viewsjs/MsOpCtnBsCard/MsOpCtnInsuranceIndex.js">
<publishTime>03/14/2024 09:35:05</publishTime>
@ -8098,7 +8100,7 @@
<publishTime>02/07/2024 10:26:15</publishTime>
</File>
<File Include="Areas/MvcShipping/Viewsjs/MsChFee/FeeDrCrGridCtnTk.js">
<publishTime>03/22/2024 15:43:52</publishTime>
<publishTime>04/10/2024 14:08:06</publishTime>
</File>
<File Include="Areas/MvcShipping/Viewsjs/MsChFee/FeeDrCrGridCtnTkPL.js">
<publishTime>04/27/2022 10:08:43</publishTime>
@ -10834,7 +10836,7 @@
<publishTime>03/01/2018 17:06:39</publishTime>
</File>
<File Include="Areas/MvcShipping/Viewsjs/MsRptOpProfit/MsRptOpProfitIndex.js">
<publishTime>10/30/2023 11:18:38</publishTime>
<publishTime>04/29/2024 14:11:52</publishTime>
</File>
<File Include="Areas/MvcShipping/Viewsjs/MsRptOpProfit/MsRptOpProfitLHIndex.js">
<publishTime>12/31/2020 17:24:13</publishTime>
@ -15316,19 +15318,19 @@
<publishTime>03/01/2018 17:08:26</publishTime>
</File>
<File Include="bin/DSWeb.dll">
<publishTime>04/01/2024 07:35:02</publishTime>
<publishTime>04/29/2024 17:55:43</publishTime>
</File>
<File Include="bin/DSWeb.pdb">
<publishTime>04/01/2024 07:35:02</publishTime>
<publishTime>04/29/2024 17:55:43</publishTime>
</File>
<File Include="bin/DSWeb.XmlSerializers.dll">
<publishTime>04/01/2024 07:35:08</publishTime>
<publishTime>04/29/2024 17:55:44</publishTime>
</File>
<File Include="bin/DSWebComponent.dll">
<publishTime>07/06/2023 07:59:26</publishTime>
<publishTime>04/29/2024 17:09:15</publishTime>
</File>
<File Include="bin/DSWebComponent.pdb">
<publishTime>07/06/2023 07:59:26</publishTime>
<publishTime>04/29/2024 17:09:15</publishTime>
</File>
<File Include="bin/EntityFramework.dll">
<publishTime>10/23/2017 13:15:18</publishTime>
@ -15355,10 +15357,10 @@
<publishTime>05/17/2018 14:25:17</publishTime>
</File>
<File Include="bin/HcDBUtility.dll">
<publishTime>07/06/2023 07:59:29</publishTime>
<publishTime>04/29/2024 17:09:15</publishTime>
</File>
<File Include="bin/HcDBUtility.pdb">
<publishTime>07/06/2023 07:59:29</publishTime>
<publishTime>04/29/2024 17:09:15</publishTime>
</File>
<File Include="bin/HtmlTextBoxControl.dll">
<publishTime>03/01/2018 17:08:26</publishTime>
@ -15463,10 +15465,10 @@
<publishTime>03/10/2017 15:05:10</publishTime>
</File>
<File Include="bin/JsonHelper.dll">
<publishTime>07/06/2023 07:59:28</publishTime>
<publishTime>04/29/2024 17:09:14</publishTime>
</File>
<File Include="bin/JsonHelper.pdb">
<publishTime>07/06/2023 07:59:28</publishTime>
<publishTime>04/29/2024 17:09:14</publishTime>
</File>
<File Include="bin/junit.dll">
<publishTime>03/10/2017 15:05:10</publishTime>
@ -15493,7 +15495,7 @@
<publishTime>05/30/2019 17:57:06</publishTime>
</File>
<File Include="bin/Microsoft.mshtml.dll">
<publishTime>05/17/2019 08:04:30</publishTime>
<publishTime>04/13/2024 15:54:27</publishTime>
</File>
<File Include="bin/Microsoft.Owin.dll">
<publishTime>05/30/2019 17:57:06</publishTime>
@ -15547,10 +15549,10 @@
<publishTime>10/29/2019 16:00:07</publishTime>
</File>
<File Include="bin/OfficeHelper.dll">
<publishTime>07/06/2023 07:59:26</publishTime>
<publishTime>04/29/2024 17:09:14</publishTime>
</File>
<File Include="bin/OfficeHelper.pdb">
<publishTime>07/06/2023 07:59:26</publishTime>
<publishTime>04/29/2024 17:09:14</publishTime>
</File>
<File Include="bin/Owin.dll">
<publishTime>05/30/2019 17:57:06</publishTime>
@ -15604,10 +15606,10 @@
<publishTime>03/01/2018 17:08:26</publishTime>
</File>
<File Include="bin/WebSqlHelper.dll">
<publishTime>07/06/2023 07:59:26</publishTime>
<publishTime>04/29/2024 17:09:15</publishTime>
</File>
<File Include="bin/WebSqlHelper.pdb">
<publishTime>07/06/2023 07:59:26</publishTime>
<publishTime>04/29/2024 17:09:15</publishTime>
</File>
<File Include="bin/zh-CN/ChnCharInfo.resources.dll">
<publishTime>02/22/2023 13:31:10</publishTime>

@ -1 +1 @@
5199a6021d0ad578eb37316d3986f6bbf90e11e4
227d059029442de7a64e9872fcf50d6b691cdefae2b3466a4919a70860f072ad

@ -22,3 +22,9 @@ E:\DONGSHENG7\D7HENGCHENG\DSWebComponent\obj\Debug\DSWebComponent.csprojAssembly
E:\DONGSHENG7\D7HENGCHENG\DSWebComponent\obj\Debug\DSWebComponent.csproj.CoreCompileInputs.cache
E:\DONGSHENG7\D7HENGCHENG\DSWebComponent\obj\Debug\DSWebComponent.dll
E:\DONGSHENG7\D7HENGCHENG\DSWebComponent\obj\Debug\DSWebComponent.pdb
D:\DONGSHENG7\D7HENGCHENG\DSWebComponent\bin\Debug\DSWebComponent.dll
D:\DONGSHENG7\D7HENGCHENG\DSWebComponent\bin\Debug\DSWebComponent.pdb
D:\DONGSHENG7\D7HENGCHENG\DSWebComponent\obj\Debug\DSWebComponent.csproj.AssemblyReference.cache
D:\DONGSHENG7\D7HENGCHENG\DSWebComponent\obj\Debug\DSWebComponent.csproj.CoreCompileInputs.cache
D:\DONGSHENG7\D7HENGCHENG\DSWebComponent\obj\Debug\DSWebComponent.dll
D:\DONGSHENG7\D7HENGCHENG\DSWebComponent\obj\Debug\DSWebComponent.pdb

@ -1 +1 @@
5199a6021d0ad578eb37316d3986f6bbf90e11e4
5e0a726693753b01702a2c223c12db77f2d8ed2c831ba2dfd978b7cd5febbab4

@ -16,3 +16,9 @@ E:\DONGSHENG7\D7HENGCHENG\DSWebComponent\obj\Release\DSWebComponent.csprojAssemb
E:\DONGSHENG7\D7HENGCHENG\DSWebComponent\obj\Release\DSWebComponent.csproj.CoreCompileInputs.cache
E:\DONGSHENG7\D7HENGCHENG\DSWebComponent\obj\Release\DSWebComponent.dll
E:\DONGSHENG7\D7HENGCHENG\DSWebComponent\obj\Release\DSWebComponent.pdb
D:\DONGSHENG7\D7HENGCHENG\DSWebComponent\bin\Release\DSWebComponent.dll
D:\DONGSHENG7\D7HENGCHENG\DSWebComponent\bin\Release\DSWebComponent.pdb
D:\DONGSHENG7\D7HENGCHENG\DSWebComponent\obj\Release\DSWebComponent.csproj.AssemblyReference.cache
D:\DONGSHENG7\D7HENGCHENG\DSWebComponent\obj\Release\DSWebComponent.csproj.CoreCompileInputs.cache
D:\DONGSHENG7\D7HENGCHENG\DSWebComponent\obj\Release\DSWebComponent.dll
D:\DONGSHENG7\D7HENGCHENG\DSWebComponent\obj\Release\DSWebComponent.pdb

@ -23,6 +23,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>x86</PlatformTarget>

@ -1 +1 @@
64b37995e30cdc6b0281714248ba68e753e16431
31031b054980be5790a1d23db386ef042bc7ab1af45f861332448c03784b4498

@ -133,3 +133,13 @@ E:\DONGSHENG7\D7HENGCHENG\FrmHttpHelper\FrmHttpHelper\obj\x86\Debug\FrmHttpHelpe
E:\DONGSHENG7\D7HENGCHENG\FrmHttpHelper\FrmHttpHelper\obj\x86\Debug\FrmHttpHelper.csproj.CoreCompileInputs.cache
E:\DONGSHENG7\D7HENGCHENG\FrmHttpHelper\FrmHttpHelper\obj\x86\Debug\FrmHttpHelper.dll
E:\DONGSHENG7\D7HENGCHENG\FrmHttpHelper\FrmHttpHelper\obj\x86\Debug\FrmHttpHelper.pdb
D:\DONGSHENG7\D7HENGCHENG\FrmHttpHelper\FrmHttpHelper\bin\Debug\FrmHttpHelper.dll.config
D:\DONGSHENG7\D7HENGCHENG\FrmHttpHelper\FrmHttpHelper\bin\Debug\FrmHttpHelper.dll
D:\DONGSHENG7\D7HENGCHENG\FrmHttpHelper\FrmHttpHelper\bin\Debug\FrmHttpHelper.pdb
D:\DONGSHENG7\D7HENGCHENG\FrmHttpHelper\FrmHttpHelper\obj\x86\Debug\FrmHttpHelper.csproj.AssemblyReference.cache
D:\DONGSHENG7\D7HENGCHENG\FrmHttpHelper\FrmHttpHelper\obj\x86\Debug\FrmHttpHelper.Form1.resources
D:\DONGSHENG7\D7HENGCHENG\FrmHttpHelper\FrmHttpHelper\obj\x86\Debug\FrmHttpHelper.Properties.Resources.resources
D:\DONGSHENG7\D7HENGCHENG\FrmHttpHelper\FrmHttpHelper\obj\x86\Debug\FrmHttpHelper.csproj.GenerateResource.cache
D:\DONGSHENG7\D7HENGCHENG\FrmHttpHelper\FrmHttpHelper\obj\x86\Debug\FrmHttpHelper.csproj.CoreCompileInputs.cache
D:\DONGSHENG7\D7HENGCHENG\FrmHttpHelper\FrmHttpHelper\obj\x86\Debug\FrmHttpHelper.dll
D:\DONGSHENG7\D7HENGCHENG\FrmHttpHelper\FrmHttpHelper\obj\x86\Debug\FrmHttpHelper.pdb

@ -1 +1 @@
6f8fb9cce814537e7f19238df2b4024c963d3e5a
560d223b0128b0d2a6f5efd5bce295c99283810bc1c79fa1a756430f9ff0f598

@ -56,3 +56,18 @@ E:\DONGSHENG7\D7HENGCHENG\HcDBUtility\obj\Debug\HcDBUtility.csproj.CoreCompileIn
E:\DONGSHENG7\D7HENGCHENG\HcDBUtility\obj\Debug\HcDBUtility.csproj.CopyComplete
E:\DONGSHENG7\D7HENGCHENG\HcDBUtility\obj\Debug\HcDBUtility.dll
E:\DONGSHENG7\D7HENGCHENG\HcDBUtility\obj\Debug\HcDBUtility.pdb
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\bin\Debug\HcDBUtility.dll
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\bin\Debug\HcDBUtility.pdb
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\bin\Debug\JsonHelper.dll
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Data.dll
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Logging.dll
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\bin\Debug\Newtonsoft.Json.dll
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\bin\Debug\Microsoft.Practices.ObjectBuilder2.dll
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\bin\Debug\Microsoft.Practices.Unity.dll
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\bin\Debug\JsonHelper.pdb
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\obj\Debug\HcDBUtility.csproj.AssemblyReference.cache
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\obj\Debug\HcDBUtility.csproj.CoreCompileInputs.cache
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\obj\Debug\HcDBUtil.D91C53F3.Up2Date
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\obj\Debug\HcDBUtility.dll
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\obj\Debug\HcDBUtility.pdb

@ -1 +1 @@
809ddad6bb6c855687cce9f79d85fc9fa618cdfc
c6f30bf8a6e7e43072b0f60704e0bf28d1203f4444301f674c74cd02b4fca9c0

@ -42,3 +42,18 @@ E:\DONGSHENG7\D7HENGCHENG\HcDBUtility\obj\Release\HcDBUtility.csproj.CoreCompile
E:\DONGSHENG7\D7HENGCHENG\HcDBUtility\obj\Release\HcDBUtility.csproj.CopyComplete
E:\DONGSHENG7\D7HENGCHENG\HcDBUtility\obj\Release\HcDBUtility.dll
E:\DONGSHENG7\D7HENGCHENG\HcDBUtility\obj\Release\HcDBUtility.pdb
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\bin\Release\HcDBUtility.dll
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\bin\Release\HcDBUtility.pdb
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\bin\Release\JsonHelper.dll
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\bin\Release\Microsoft.Practices.EnterpriseLibrary.Common.dll
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\bin\Release\Microsoft.Practices.EnterpriseLibrary.Data.dll
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\bin\Release\Microsoft.Practices.EnterpriseLibrary.Logging.dll
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\bin\Release\Newtonsoft.Json.dll
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\bin\Release\Microsoft.Practices.ObjectBuilder2.dll
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\bin\Release\Microsoft.Practices.Unity.dll
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\bin\Release\JsonHelper.pdb
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\obj\Release\HcDBUtility.csproj.AssemblyReference.cache
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\obj\Release\HcDBUtility.csproj.CoreCompileInputs.cache
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\obj\Release\HcDBUtil.D91C53F3.Up2Date
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\obj\Release\HcDBUtility.dll
D:\DONGSHENG7\D7HENGCHENG\HcDBUtility\obj\Release\HcDBUtility.pdb

@ -1 +1 @@
e75ebc80ac35c47389877900551ae4d76dd7c0d9
ae191f3d251a1834f071e06b318664ff835323d3373d5d2cad2142ec11f89c31

@ -10,3 +10,9 @@ E:\DONGSHENG7\D7HENGCHENG\JsonHelper\obj\Debug\JsonHelper.csprojAssemblyReferenc
E:\DONGSHENG7\D7HENGCHENG\JsonHelper\obj\Debug\JsonHelper.csproj.CoreCompileInputs.cache
E:\DONGSHENG7\D7HENGCHENG\JsonHelper\obj\Debug\JsonHelper.dll
E:\DONGSHENG7\D7HENGCHENG\JsonHelper\obj\Debug\JsonHelper.pdb
D:\DONGSHENG7\D7HENGCHENG\JsonHelper\bin\Debug\JsonHelper.dll
D:\DONGSHENG7\D7HENGCHENG\JsonHelper\bin\Debug\JsonHelper.pdb
D:\DONGSHENG7\D7HENGCHENG\JsonHelper\obj\Debug\JsonHelper.csproj.AssemblyReference.cache
D:\DONGSHENG7\D7HENGCHENG\JsonHelper\obj\Debug\JsonHelper.csproj.CoreCompileInputs.cache
D:\DONGSHENG7\D7HENGCHENG\JsonHelper\obj\Debug\JsonHelper.dll
D:\DONGSHENG7\D7HENGCHENG\JsonHelper\obj\Debug\JsonHelper.pdb

@ -1 +1 @@
e75ebc80ac35c47389877900551ae4d76dd7c0d9
481539c7125060217c35cb6604b5b26587fe4b95fc19ebf00e8257af7f2b5cbe

@ -10,3 +10,9 @@ E:\DONGSHENG7\D7HENGCHENG\JsonHelper\obj\Release\JsonHelper.csprojAssemblyRefere
E:\DONGSHENG7\D7HENGCHENG\JsonHelper\obj\Release\JsonHelper.csproj.CoreCompileInputs.cache
E:\DONGSHENG7\D7HENGCHENG\JsonHelper\obj\Release\JsonHelper.dll
E:\DONGSHENG7\D7HENGCHENG\JsonHelper\obj\Release\JsonHelper.pdb
D:\DONGSHENG7\D7HENGCHENG\JsonHelper\bin\Release\JsonHelper.dll
D:\DONGSHENG7\D7HENGCHENG\JsonHelper\bin\Release\JsonHelper.pdb
D:\DONGSHENG7\D7HENGCHENG\JsonHelper\obj\Release\JsonHelper.csproj.AssemblyReference.cache
D:\DONGSHENG7\D7HENGCHENG\JsonHelper\obj\Release\JsonHelper.csproj.CoreCompileInputs.cache
D:\DONGSHENG7\D7HENGCHENG\JsonHelper\obj\Release\JsonHelper.dll
D:\DONGSHENG7\D7HENGCHENG\JsonHelper\obj\Release\JsonHelper.pdb

@ -1 +1 @@
02299a41665e7a2d06aab99acd8c4b3317512285
1b6b73db2d4ca8ca693a51cba94ff7487fd9cc7627575a20212f88667555f805

@ -22,3 +22,9 @@ E:\DONGSHENG7\D7HENGCHENG\OfficeHelper\obj\Debug\OfficeHelper.csprojAssemblyRefe
E:\DONGSHENG7\D7HENGCHENG\OfficeHelper\obj\Debug\OfficeHelper.csproj.CoreCompileInputs.cache
E:\DONGSHENG7\D7HENGCHENG\OfficeHelper\obj\Debug\OfficeHelper.dll
E:\DONGSHENG7\D7HENGCHENG\OfficeHelper\obj\Debug\OfficeHelper.pdb
D:\DONGSHENG7\D7HENGCHENG\OfficeHelper\bin\Debug\OfficeHelper.dll
D:\DONGSHENG7\D7HENGCHENG\OfficeHelper\bin\Debug\OfficeHelper.pdb
D:\DONGSHENG7\D7HENGCHENG\OfficeHelper\obj\Debug\OfficeHelper.csproj.AssemblyReference.cache
D:\DONGSHENG7\D7HENGCHENG\OfficeHelper\obj\Debug\OfficeHelper.csproj.CoreCompileInputs.cache
D:\DONGSHENG7\D7HENGCHENG\OfficeHelper\obj\Debug\OfficeHelper.dll
D:\DONGSHENG7\D7HENGCHENG\OfficeHelper\obj\Debug\OfficeHelper.pdb

@ -1 +1 @@
02299a41665e7a2d06aab99acd8c4b3317512285
2799e96690ff8453ad1f56526adc55d67a9f5dea0da47cf6d4ccb377d495e632

@ -16,3 +16,9 @@ E:\DONGSHENG7\D7HENGCHENG\OfficeHelper\obj\Release\OfficeHelper.csprojAssemblyRe
E:\DONGSHENG7\D7HENGCHENG\OfficeHelper\obj\Release\OfficeHelper.csproj.CoreCompileInputs.cache
E:\DONGSHENG7\D7HENGCHENG\OfficeHelper\obj\Release\OfficeHelper.dll
E:\DONGSHENG7\D7HENGCHENG\OfficeHelper\obj\Release\OfficeHelper.pdb
D:\DONGSHENG7\D7HENGCHENG\OfficeHelper\bin\Release\OfficeHelper.dll
D:\DONGSHENG7\D7HENGCHENG\OfficeHelper\bin\Release\OfficeHelper.pdb
D:\DONGSHENG7\D7HENGCHENG\OfficeHelper\obj\Release\OfficeHelper.csproj.AssemblyReference.cache
D:\DONGSHENG7\D7HENGCHENG\OfficeHelper\obj\Release\OfficeHelper.csproj.CoreCompileInputs.cache
D:\DONGSHENG7\D7HENGCHENG\OfficeHelper\obj\Release\OfficeHelper.dll
D:\DONGSHENG7\D7HENGCHENG\OfficeHelper\obj\Release\OfficeHelper.pdb

@ -1 +1 @@
26ddf59ec7e2f9ad86872b4d6ab038115467771c
9aeb02af2aa18528b0e4f4ff52eb11405e837e13301c66e6c74f0f86f55fc610

@ -50,3 +50,16 @@ E:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\obj\Debug\WebSqlHelper.csproj.CoreCompile
E:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\obj\Debug\WebSqlHelper.csproj.CopyComplete
E:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\obj\Debug\WebSqlHelper.dll
E:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\obj\Debug\WebSqlHelper.pdb
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\bin\Debug\WebSqlHelper.dll
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\bin\Debug\WebSqlHelper.pdb
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Data.dll
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Logging.dll
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\bin\Debug\Microsoft.Practices.ObjectBuilder.dll
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\bin\Debug\Microsoft.Practices.ObjectBuilder2.dll
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\bin\Debug\Microsoft.Practices.Unity.dll
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\obj\Debug\WebSqlHelper.csproj.AssemblyReference.cache
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\obj\Debug\WebSqlHelper.csproj.CoreCompileInputs.cache
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\obj\Debug\WebSqlHe.B18300F7.Up2Date
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\obj\Debug\WebSqlHelper.dll
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\obj\Debug\WebSqlHelper.pdb

@ -1 +1 @@
26ddf59ec7e2f9ad86872b4d6ab038115467771c
d3530149ef24355d883db4f58bfa95962560d217846cc5a965a3f22b65ca6b33

@ -37,3 +37,16 @@ E:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\obj\Release\WebSqlHelper.csproj.CoreCompi
E:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\obj\Release\WebSqlHelper.csproj.CopyComplete
E:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\obj\Release\WebSqlHelper.dll
E:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\obj\Release\WebSqlHelper.pdb
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\bin\Release\WebSqlHelper.dll
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\bin\Release\WebSqlHelper.pdb
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\bin\Release\Microsoft.Practices.EnterpriseLibrary.Common.dll
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\bin\Release\Microsoft.Practices.EnterpriseLibrary.Data.dll
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\bin\Release\Microsoft.Practices.EnterpriseLibrary.Logging.dll
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\bin\Release\Microsoft.Practices.ObjectBuilder.dll
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\bin\Release\Microsoft.Practices.ObjectBuilder2.dll
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\bin\Release\Microsoft.Practices.Unity.dll
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\obj\Release\WebSqlHelper.csproj.AssemblyReference.cache
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\obj\Release\WebSqlHelper.csproj.CoreCompileInputs.cache
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\obj\Release\WebSqlHe.B18300F7.Up2Date
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\obj\Release\WebSqlHelper.dll
D:\DONGSHENG7\D7HENGCHENG\WebSqlHelper\obj\Release\WebSqlHelper.pdb

Loading…
Cancel
Save