|
|
|
|
using System;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Configuration;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Web;
|
|
|
|
|
using System.Web.Security;
|
|
|
|
|
using System.Web.UI;
|
|
|
|
|
using System.Web.UI.HtmlControls;
|
|
|
|
|
using System.Web.UI.WebControls;
|
|
|
|
|
using System.Web.UI.WebControls.WebParts;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using DSWeb.EntityDA;
|
|
|
|
|
using DSWeb.Models;
|
|
|
|
|
using System.Xml;
|
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
|
|
|
|
|
namespace DSWeb.Shipping
|
|
|
|
|
{
|
|
|
|
|
public partial class SeaeAdjustETDGridSource : System.Web.UI.Page
|
|
|
|
|
{
|
|
|
|
|
private int iCurrentPage;
|
|
|
|
|
private int iShowPage;
|
|
|
|
|
private string strHandle;//值为"page"获取分页状态值数组 值为"list"获取日志显示JSON数据 值为"columns"获取日志显示记录 值为"rename"更新列标题
|
|
|
|
|
public string strUserID;//用户GID
|
|
|
|
|
private string strOldHeader;
|
|
|
|
|
private string strNewHeader;
|
|
|
|
|
private string sSQL=String.Empty;
|
|
|
|
|
public string tbAdjustETD = "";
|
|
|
|
|
public string strBSNO;//委托业务GID
|
|
|
|
|
public string strids;//
|
|
|
|
|
public string isbsstatus;//
|
|
|
|
|
UnicodeEncoding unicode = new UnicodeEncoding();
|
|
|
|
|
T_ALL_DA T_ALL_DA = new T_ALL_DA();
|
|
|
|
|
|
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (Session["USERID"] != null)
|
|
|
|
|
{
|
|
|
|
|
strUserID = Session["USERID"].ToString().Trim();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Server.Transfer("~/Error/FriendError.aspx");
|
|
|
|
|
return;
|
|
|
|
|
//strUserID = "";
|
|
|
|
|
}
|
|
|
|
|
//
|
|
|
|
|
if (Request.QueryString["handle"] != null)
|
|
|
|
|
{
|
|
|
|
|
strHandle = Request.QueryString["handle"].ToString().Trim().ToLower();
|
|
|
|
|
}
|
|
|
|
|
if (Request.QueryString["cur_page"] != null)
|
|
|
|
|
{
|
|
|
|
|
iCurrentPage = int.Parse(Request.QueryString["cur_page"].ToString().Trim());
|
|
|
|
|
}
|
|
|
|
|
if (Request.QueryString["show_page"] != null)
|
|
|
|
|
{
|
|
|
|
|
iShowPage = int.Parse(Request.QueryString["show_page"].ToString().Trim());
|
|
|
|
|
}
|
|
|
|
|
if (Request.QueryString["ids"] != null)
|
|
|
|
|
{
|
|
|
|
|
strids = Request.QueryString["ids"].ToString().Trim();
|
|
|
|
|
}
|
|
|
|
|
if (Request.QueryString["isbsstatus"] != null)
|
|
|
|
|
{
|
|
|
|
|
isbsstatus = Request.QueryString["isbsstatus"].ToString().Trim();
|
|
|
|
|
}
|
|
|
|
|
//
|
|
|
|
|
ViewState["hid_sel"] = "";
|
|
|
|
|
if (Request.QueryString["tbNO"] != null && Request.QueryString["tbNO"].ToString().Trim() != "")
|
|
|
|
|
{
|
|
|
|
|
string tbNO = unicode.GetString(unicode.GetBytes(Regex.Unescape(Request.QueryString["tbNO"].ToString().Trim())));
|
|
|
|
|
ViewState["hid_sel"] += " and MBLNO like '%" + tbNO + "%'";
|
|
|
|
|
}
|
|
|
|
|
//
|
|
|
|
|
if (Request.QueryString["VESSEL"] != null && Request.QueryString["VESSEL"].ToString().Trim() != "")
|
|
|
|
|
{
|
|
|
|
|
string strVESSEL = unicode.GetString(unicode.GetBytes(Regex.Unescape(Request.QueryString["VESSEL"].ToString().Trim())));
|
|
|
|
|
ViewState["hid_sel"] += " and VESSEL='" + strVESSEL + "'";
|
|
|
|
|
}
|
|
|
|
|
//
|
|
|
|
|
if (Request.QueryString["VOYNO"] != null && Request.QueryString["VOYNO"].ToString().Trim() != "")
|
|
|
|
|
{
|
|
|
|
|
string strVOYNO = unicode.GetString(unicode.GetBytes(Regex.Unescape(Request.QueryString["VOYNO"].ToString().Trim())));
|
|
|
|
|
ViewState["hid_sel"] += " and VOYNO='" + strVOYNO + "'";
|
|
|
|
|
}
|
|
|
|
|
//
|
|
|
|
|
if (Request.QueryString["tbAdjustETD"] != null && Request.QueryString["tbAdjustETD"].ToString().Trim() != "")
|
|
|
|
|
{
|
|
|
|
|
tbAdjustETD = Request.QueryString["tbAdjustETD"].ToString().Trim();
|
|
|
|
|
}
|
|
|
|
|
//
|
|
|
|
|
if (Request.QueryString["hdSelect"] != null && Request.QueryString["hdSelect"].ToString().Trim() != "")
|
|
|
|
|
{
|
|
|
|
|
ViewState["hdSelect"] = Request.QueryString["hdSelect"].ToString().Trim();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
string strJSON = "";
|
|
|
|
|
if (strHandle != null)
|
|
|
|
|
{
|
|
|
|
|
if (strHandle.Equals("list"))
|
|
|
|
|
{
|
|
|
|
|
if (iCurrentPage <= 0 && iShowPage < 0)
|
|
|
|
|
{
|
|
|
|
|
strJSON = "-2";//提交页数参数错误
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (strHandle.Trim().ToLower().Equals("setting"))
|
|
|
|
|
{
|
|
|
|
|
Response.Write(GetUserSettingJson());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (strHandle.Trim().ToLower().Equals("page"))
|
|
|
|
|
{
|
|
|
|
|
Response.Write(GetPageInfo().ToString());
|
|
|
|
|
}
|
|
|
|
|
if (strHandle.Trim().ToLower().Equals("list"))
|
|
|
|
|
{
|
|
|
|
|
Response.Write(GetGridSource(iShowPage, iCurrentPage));
|
|
|
|
|
}
|
|
|
|
|
if (strHandle.Trim().ToLower().Equals("rename"))
|
|
|
|
|
{
|
|
|
|
|
if (Request.QueryString["old_header"] != null && Request.QueryString["new_header"] != null)
|
|
|
|
|
{
|
|
|
|
|
UnicodeEncoding unicode = new UnicodeEncoding();
|
|
|
|
|
strOldHeader = unicode.GetString(unicode.GetBytes(Regex.Unescape(Request.QueryString["old_header"].ToString())));
|
|
|
|
|
strNewHeader = unicode.GetString(unicode.GetBytes(Regex.Unescape(Request.QueryString["new_header"].ToString())));
|
|
|
|
|
|
|
|
|
|
Response.Write(UpdateColumnHeader(strOldHeader, strNewHeader));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Response.Write("-1");//GET 参数错误
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (strHandle.Trim().ToLower().Equals("delete"))
|
|
|
|
|
{
|
|
|
|
|
Response.Write(DeleteSeaExportOrder(strBSNO).ToString());
|
|
|
|
|
}
|
|
|
|
|
if (strHandle.Trim().ToLower().Equals("adjust"))
|
|
|
|
|
{
|
|
|
|
|
string alt = editSeaeAdjustETD();
|
|
|
|
|
Response.Write(alt);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (strHandle.Trim().ToLower().Equals("bsstatus"))
|
|
|
|
|
{
|
|
|
|
|
string alt = editSeaeBsstatus();
|
|
|
|
|
Response.Write(alt);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (Request.QueryString["bsno"] != null)
|
|
|
|
|
{
|
|
|
|
|
strBSNO = Request.QueryString["bsno"].ToString();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
strJSON = "-1";//GET 参数错误
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string editSeaeAdjustETD()
|
|
|
|
|
{
|
|
|
|
|
T_ALL_DA T_ALL_DA = new T_ALL_DA();
|
|
|
|
|
string alt = "";
|
|
|
|
|
string[] itms = strids.Trim().Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries);
|
|
|
|
|
for (int i = 0; i < itms.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
alt += " or bsno='" + itms[i].ToString().Trim() + "'";
|
|
|
|
|
}
|
|
|
|
|
//
|
|
|
|
|
string pd = T_ALL_DA.GetStrSQL("BSSTATUS", "select top 1 BSSTATUS from op_seae where BSSTATUS=1 and (1<0 " + alt.Trim() + ")");
|
|
|
|
|
if (pd.Trim() != "")
|
|
|
|
|
{
|
|
|
|
|
return "包含业务状态为“锁定”的数据,不允许调整船期!";
|
|
|
|
|
}
|
|
|
|
|
//
|
|
|
|
|
int iResult = 0;
|
|
|
|
|
for (int i = 0; i < itms.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
iResult = T_ALL_DA.GetEditSeaeAdjustETD(itms[i].ToString().Trim(), tbAdjustETD.Trim());
|
|
|
|
|
}
|
|
|
|
|
//
|
|
|
|
|
//sSQL = "update op_seae set etd='" + tbAdjustETD.Trim() + "' where 1<0 "+alt.Trim();
|
|
|
|
|
//bool bl = T_ALL_DA.GetExecuteSqlCommand(sSQL);
|
|
|
|
|
//if (bl)
|
|
|
|
|
if(iResult==1)
|
|
|
|
|
{
|
|
|
|
|
alt = "";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
alt = "操作失败!";
|
|
|
|
|
}
|
|
|
|
|
return alt;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string editSeaeBsstatus()
|
|
|
|
|
{
|
|
|
|
|
string alt = "";
|
|
|
|
|
string[] itms = strids.Trim().Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries);
|
|
|
|
|
for (int i = 0; i < itms.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
alt += " or bsno='" + itms[i].ToString().Trim() + "'";
|
|
|
|
|
}
|
|
|
|
|
sSQL = "update op_seae set BSSTATUS=" + isbsstatus + " where 1<0 " + alt.Trim();
|
|
|
|
|
bool bl = T_ALL_DA.GetExecuteSqlCommand(sSQL);
|
|
|
|
|
if (bl)
|
|
|
|
|
{
|
|
|
|
|
alt = "";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
alt = "操作失败!";
|
|
|
|
|
}
|
|
|
|
|
return alt;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private int DeleteSeaExportOrder(string tempBSNO)
|
|
|
|
|
{
|
|
|
|
|
int iResult = 0;
|
|
|
|
|
FeeDA feeDA = new FeeDA();
|
|
|
|
|
|
|
|
|
|
IList<FeeEntity> feeEntities = feeDA.GetFeeByBSNO(tempBSNO);
|
|
|
|
|
|
|
|
|
|
if (feeEntities.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
//if (feeEntity.GID != null)
|
|
|
|
|
//{
|
|
|
|
|
iResult = -1;//没有与海运出口委托相关联的费用信息
|
|
|
|
|
//}
|
|
|
|
|
//else
|
|
|
|
|
//{
|
|
|
|
|
// SeaExportInfoDA seaExportInfoDA = new SeaExportInfoDA();
|
|
|
|
|
// iResult = seaExportInfoDA.DeleteOrder(tempBSNO);
|
|
|
|
|
//}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
SeaExportInfoDA seaExportInfoDA = new SeaExportInfoDA();
|
|
|
|
|
iResult = seaExportInfoDA.DeleteOrder(tempBSNO);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return iResult;
|
|
|
|
|
}
|
|
|
|
|
private int UpdateColumnHeader(string tempOldHeader, string tempNewHeader)
|
|
|
|
|
{
|
|
|
|
|
int iResult = 0;
|
|
|
|
|
UserSettingDA userSettingDA = new UserSettingDA();
|
|
|
|
|
UserSettingEntity userSettingEntity = userSettingDA.GetUserSettingByUserID(strUserID);
|
|
|
|
|
GridEntity gridEntity = null;
|
|
|
|
|
|
|
|
|
|
if (userSettingEntity != null)
|
|
|
|
|
{
|
|
|
|
|
if (userSettingEntity.GID != null)
|
|
|
|
|
{
|
|
|
|
|
gridEntity = GetSettingXml(userSettingEntity.Xml);
|
|
|
|
|
|
|
|
|
|
foreach (GridColumnEntity column in gridEntity.Columns)
|
|
|
|
|
{
|
|
|
|
|
if (column.Description.Equals(tempOldHeader))
|
|
|
|
|
{
|
|
|
|
|
column.Description = tempNewHeader;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
userSettingEntity.Xml = GetUserSettingXml(gridEntity).OuterXml;
|
|
|
|
|
iResult = userSettingDA.UpdateUserSetting(userSettingEntity);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
iResult = -3;//没有相关用户Grid设置记录
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
iResult = -3;//没有相关用户Grid设置记录
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return iResult;
|
|
|
|
|
}
|
|
|
|
|
private string GetUserSettingJson()
|
|
|
|
|
{
|
|
|
|
|
UserSettingDA userSettingDA = new UserSettingDA();
|
|
|
|
|
UserSettingEntity userSettingEntity = userSettingDA.GetUserSettingByUserID(strUserID);
|
|
|
|
|
GridEntity gridEntity = null;
|
|
|
|
|
|
|
|
|
|
StringBuilder settingBuilder = new StringBuilder();
|
|
|
|
|
if (userSettingEntity != null)
|
|
|
|
|
{
|
|
|
|
|
if (userSettingEntity.GID != null)
|
|
|
|
|
{
|
|
|
|
|
gridEntity = GetSettingXml(userSettingEntity.Xml);
|
|
|
|
|
|
|
|
|
|
settingBuilder.Append("{");
|
|
|
|
|
|
|
|
|
|
settingBuilder.Append("\"show\":" + gridEntity.PagePreCount + ",");
|
|
|
|
|
settingBuilder.Append("\"columns\":");
|
|
|
|
|
int i = 0;
|
|
|
|
|
StringBuilder columnGroupBuilder = new StringBuilder();
|
|
|
|
|
while (gridEntity.Columns.Count > i)
|
|
|
|
|
{
|
|
|
|
|
foreach (GridColumnEntity column in gridEntity.Columns)
|
|
|
|
|
{
|
|
|
|
|
if (column.Index == i)
|
|
|
|
|
{
|
|
|
|
|
StringBuilder columnBuilder = new StringBuilder();
|
|
|
|
|
columnBuilder.Append("{\"name\":\"" + column.Name + "\",");
|
|
|
|
|
columnBuilder.Append("\"description\":\"" + column.Description + "\",");
|
|
|
|
|
columnBuilder.Append("\"index\":" + column.Index.ToString() + ",");
|
|
|
|
|
columnBuilder.Append("\"width\":" + column.Width.ToString() + ",");
|
|
|
|
|
columnBuilder.Append("\"visible\":" + column.VisibleState.ToString());
|
|
|
|
|
|
|
|
|
|
columnGroupBuilder.Append(columnBuilder.ToString() + "},");
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|
string strGroup = columnGroupBuilder.ToString().Trim();
|
|
|
|
|
if (strGroup.EndsWith(","))
|
|
|
|
|
{
|
|
|
|
|
strGroup = strGroup.Substring(0, strGroup.Length - 1);
|
|
|
|
|
}
|
|
|
|
|
strGroup = "[" + strGroup + "]";
|
|
|
|
|
settingBuilder.Append(strGroup);
|
|
|
|
|
settingBuilder.Append("}");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
settingBuilder.Append("-3");//没有相关用户Grid设置记录
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
settingBuilder.Append("-3");//没有相关用户Grid设置记录
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return settingBuilder.ToString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private GridEntity GetSettingXml(string strXml)
|
|
|
|
|
{
|
|
|
|
|
XmlDocument xmlSettingDoc = new XmlDocument();
|
|
|
|
|
GridEntity gridEntity = new GridEntity();
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
xmlSettingDoc.LoadXml(strXml);
|
|
|
|
|
|
|
|
|
|
gridEntity.GID = xmlSettingDoc.ChildNodes[0].ChildNodes[0].InnerText.Trim();
|
|
|
|
|
gridEntity.UserID = xmlSettingDoc.ChildNodes[0].ChildNodes[1].InnerText.Trim();
|
|
|
|
|
gridEntity.CreateTime = DateTime.Parse(xmlSettingDoc.ChildNodes[0].ChildNodes[2].InnerText.Trim());
|
|
|
|
|
|
|
|
|
|
IList<GridColumnEntity> columnsEntities = new List<GridColumnEntity>();
|
|
|
|
|
|
|
|
|
|
int iColCount = xmlSettingDoc.ChildNodes[0].ChildNodes[3].ChildNodes.Count;
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < iColCount; i++)
|
|
|
|
|
{
|
|
|
|
|
GridColumnEntity columnEntity = new GridColumnEntity();
|
|
|
|
|
//columnEntity.GID = xmlSettingDoc.ChildNodes[0].ChildNodes[3].ChildNodes[0].ToString();
|
|
|
|
|
columnEntity.Name = xmlSettingDoc.ChildNodes[0].ChildNodes[3].ChildNodes[i].ChildNodes[0].InnerText.Trim();
|
|
|
|
|
columnEntity.Description = xmlSettingDoc.ChildNodes[0].ChildNodes[3].ChildNodes[i].ChildNodes[1].InnerText.Trim();
|
|
|
|
|
columnEntity.Index = int.Parse(xmlSettingDoc.ChildNodes[0].ChildNodes[3].ChildNodes[i].ChildNodes[2].InnerText.Trim());
|
|
|
|
|
columnEntity.Width = int.Parse(xmlSettingDoc.ChildNodes[0].ChildNodes[3].ChildNodes[i].ChildNodes[3].InnerText.Trim());
|
|
|
|
|
|
|
|
|
|
columnsEntities.Add(columnEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gridEntity.Columns = columnsEntities;
|
|
|
|
|
gridEntity.GroupBy = xmlSettingDoc.ChildNodes[0].ChildNodes[4].InnerText.Trim();
|
|
|
|
|
gridEntity.DefaultPrePageCount = int.Parse(xmlSettingDoc.ChildNodes[0].ChildNodes[5].ChildNodes[0].InnerText.Trim());
|
|
|
|
|
gridEntity.PagePreCount = int.Parse(xmlSettingDoc.ChildNodes[0].ChildNodes[5].ChildNodes[1].InnerText.Trim());
|
|
|
|
|
}
|
|
|
|
|
catch (Exception error)
|
|
|
|
|
{
|
|
|
|
|
throw (error);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return gridEntity;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private int GetPageInfo()
|
|
|
|
|
{
|
|
|
|
|
SeaExportInfoDA seaExportInfoDA = new SeaExportInfoDA();
|
|
|
|
|
string strSql = String.Format("SELECT COUNT(*) FROM op_seae where 1=1 " + ViewState["hid_sel"].ToString().Trim());
|
|
|
|
|
|
|
|
|
|
int iTotal = seaExportInfoDA.GetPageTotal(strSql);
|
|
|
|
|
|
|
|
|
|
return iTotal;
|
|
|
|
|
}
|
|
|
|
|
private string GetGridSource(int tempShowPage, int tempCurPage)
|
|
|
|
|
{
|
|
|
|
|
SeaExportInfoDA seaExportInfoDA = new SeaExportInfoDA();
|
|
|
|
|
StringBuilder logBuilder = new StringBuilder();
|
|
|
|
|
|
|
|
|
|
//SELECT {0} A.GID, A.NAME, A.LOGTYPE, A.LOGTIME, A.LOGCONTENT,B.USERNAME FROM sys_log as A INNER JOIN [user] as B ON A.CREATEUSER = B.GID AND
|
|
|
|
|
string strSql = "";
|
|
|
|
|
string strTopInclude = "";
|
|
|
|
|
string strTopNotInclude = "";
|
|
|
|
|
if (ViewState["hdSelect"].ToString().Trim().Equals("1"))
|
|
|
|
|
{
|
|
|
|
|
if (tempShowPage > 0 && tempCurPage > 0)
|
|
|
|
|
{
|
|
|
|
|
if (tempCurPage == 1)
|
|
|
|
|
{//业务封账 接受委托
|
|
|
|
|
strSql = String.Format("SELECT {0} BSNO,CASE WHEN BSSTATUS = 1 THEN '锁定' ELSE '未锁定' END as BSSTATUS,CASE WHEN FEESTATUS = 1 THEN '锁定' ELSE '未锁定' END as FEESTATUS,ORDERTYPE,INPUTBY,CREATETIME,ACCDATE,MBLNO,HBLNO,CUSTNO,TRANSNO,BLTYPE,"
|
|
|
|
|
+ "YARD,VESSEL,VOYNO,ETD,CLOSINGDATE,ETA,PORTLOAD,PORTDISCHARGE,PLACEDELIVERY,DESTINATION,[SERVICE],GOODSNAME,"
|
|
|
|
|
+ "'',MEASUREMENT,PKGS,KINDPKGS,TEU,CNTRTOTAL,OP,CUSTSERVICE,LANE,SALE,CARRIER,FORWARDER,"
|
|
|
|
|
+ "CUSTOMSER,TRUCKER,INVNO,BSSOURCE,BSSOURCEDETAIL,ORDTYPE,ORDERNO,PACKINGTYPE,WAREHOUSE,CLOSEDOCDATE,INTOPORTDATE "
|
|
|
|
|
+ "FROM op_seae "
|
|
|
|
|
+ " where 1=1 " + ViewState["hid_sel"].ToString().Trim()
|
|
|
|
|
+ " ORDER BY ETD DESC", "top " + tempShowPage);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
strTopNotInclude = "top " + (tempShowPage * (tempCurPage - 1));//RowCount*PageNum
|
|
|
|
|
strTopInclude = "top " + tempShowPage;//RowCount*PageNum
|
|
|
|
|
//业务封账 接受委托
|
|
|
|
|
strSql = String.Format("SELECT {1} BSNO,CASE WHEN BSSTATUS = 1 THEN '锁定' ELSE '未锁定' END as BSSTATUS,CASE WHEN FEESTATUS = 1 THEN '锁定' ELSE '未锁定' END as FEESTATUS,ORDERTYPE,INPUTBY,CREATETIME,ACCDATE,MBLNO,HBLNO,CUSTNO,TRANSNO,BLTYPE,"
|
|
|
|
|
+ "YARD,VESSEL,VOYNO,ETD,CLOSINGDATE,ETA,PORTLOAD,PORTDISCHARGE,PLACEDELIVERY,DESTINATION,[SERVICE],GOODSNAME,"
|
|
|
|
|
+ "'',MEASUREMENT,PKGS,KINDPKGS,TEU,CNTRTOTAL,OP,CUSTSERVICE,LANE,SALE,CARRIER,FORWARDER,"
|
|
|
|
|
+ "CUSTOMSER,TRUCKER,INVNO,BSSOURCE,BSSOURCEDETAIL,ORDTYPE,ORDERNO,PACKINGTYPE,WAREHOUSE,CLOSEDOCDATE,INTOPORTDATE "
|
|
|
|
|
+ "FROM op_seae WHERE BSNO NOT IN ("
|
|
|
|
|
+ "SELECT {0} BSNO FROM op_seae"
|
|
|
|
|
+ " where 1=1 " + ViewState["hid_sel"].ToString().Trim()
|
|
|
|
|
+ " ORDER BY ETD DESC )"
|
|
|
|
|
+ ViewState["hid_sel"].ToString().Trim()
|
|
|
|
|
+ " ORDER BY ETD DESC ", strTopNotInclude, strTopInclude);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return "";//如果页数为空或者页数为0不返回数据
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return "";//如果页数为空或者页数为0不返回数据
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DataTable logTable = GetSqlDataIndex(seaExportInfoDA.GetExcuteSql(strSql).Tables[0]);
|
|
|
|
|
|
|
|
|
|
logBuilder.Append("{");
|
|
|
|
|
logBuilder.Append("rows:[");
|
|
|
|
|
for (int i = 0; i < logTable.Rows.Count; i++)
|
|
|
|
|
{
|
|
|
|
|
logBuilder.Append("{id:\"" + logTable.Rows[i][0].ToString() + "\",");
|
|
|
|
|
logBuilder.Append("data:[");
|
|
|
|
|
logBuilder.Append("\"0\",");
|
|
|
|
|
for (int j = 1; j < logTable.Columns.Count; j++)
|
|
|
|
|
{
|
|
|
|
|
if (j == logTable.Columns.Count - 1)
|
|
|
|
|
{
|
|
|
|
|
logBuilder.Append("\"" + logTable.Rows[i][j].ToString() + "\"");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
logBuilder.Append("\"" + logTable.Rows[i][j].ToString() + "\",");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (i == logTable.Rows.Count - 1)
|
|
|
|
|
{
|
|
|
|
|
logBuilder.Append("]}");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
logBuilder.Append("]},");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
logBuilder.Append("]");
|
|
|
|
|
logBuilder.Append("}");
|
|
|
|
|
|
|
|
|
|
return logBuilder.ToString();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private DataTable GetSqlDataIndex(DataTable tempTable)
|
|
|
|
|
{
|
|
|
|
|
//UserSettingDA userSettingDA = new UserSettingDA();
|
|
|
|
|
//UserSettingEntity userSettingEntity = userSettingDA.GetUserSettingByUserID(strUserID);
|
|
|
|
|
//GridEntity gridEntity = null;
|
|
|
|
|
|
|
|
|
|
//StringBuilder settingBuilder = new StringBuilder();
|
|
|
|
|
|
|
|
|
|
//DataTable dataTable = new DataTable();
|
|
|
|
|
//if (userSettingEntity != null)
|
|
|
|
|
//{
|
|
|
|
|
// if (userSettingEntity.GID != null)
|
|
|
|
|
// {
|
|
|
|
|
// gridEntity = GetSettingXml(userSettingEntity.Xml);
|
|
|
|
|
|
|
|
|
|
// int i = 0;
|
|
|
|
|
// StringBuilder columnGroupBuilder = new StringBuilder();
|
|
|
|
|
// dataTable.Columns.Add(tempTable.Columns[0].ColumnName, tempTable.Columns[0].DataType);
|
|
|
|
|
|
|
|
|
|
// for (int k = 0; k < tempTable.Rows.Count; k++)
|
|
|
|
|
// {
|
|
|
|
|
// DataRow newRow = dataTable.NewRow();
|
|
|
|
|
// newRow[tempTable.Columns[0].ColumnName] = tempTable.Rows[k][tempTable.Columns[0].ColumnName].ToString();
|
|
|
|
|
|
|
|
|
|
// dataTable.Rows.Add(newRow);
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// while (gridEntity.Columns.Count > i)
|
|
|
|
|
// {
|
|
|
|
|
// foreach (GridColumnEntity column in gridEntity.Columns)
|
|
|
|
|
// {
|
|
|
|
|
// if (column.Index == i)
|
|
|
|
|
// {
|
|
|
|
|
// for (int j = 1; j < tempTable.Columns.Count; j++)
|
|
|
|
|
// {
|
|
|
|
|
// if (tempTable.Columns[j].ColumnName.Equals(column.Name))
|
|
|
|
|
// {
|
|
|
|
|
// dataTable.Columns.Add(tempTable.Columns[j].ColumnName, tempTable.Columns[j].DataType);
|
|
|
|
|
|
|
|
|
|
// for (int k = 0; k < tempTable.Rows.Count; k++)
|
|
|
|
|
// {
|
|
|
|
|
// dataTable.Rows[k][tempTable.Columns[j].ColumnName] = tempTable.Rows[k][tempTable.Columns[j].ColumnName].ToString();
|
|
|
|
|
// }
|
|
|
|
|
// break;
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// break;
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// i++;
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// else
|
|
|
|
|
// {
|
|
|
|
|
// return tempTable;
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
//else
|
|
|
|
|
//{
|
|
|
|
|
// return tempTable;
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
//for (int i = 0; i < tempTable.Rows.Count; i++)
|
|
|
|
|
//{
|
|
|
|
|
// tempTable.Rows[i]["GROSSWEIGHT"] = ToDBC(tempTable.Rows[i]["GROSSWEIGHT"].ToString());
|
|
|
|
|
|
|
|
|
|
//}
|
|
|
|
|
return tempTable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static string ToDBC(string input)
|
|
|
|
|
{
|
|
|
|
|
char[] c = input.ToCharArray();
|
|
|
|
|
for (int i = 0; i < c.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
if (c[i] == 12288)
|
|
|
|
|
{
|
|
|
|
|
c[i] = (char)32;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if (c[i] > 65280 && c[i] < 65375)
|
|
|
|
|
c[i] = (char)(c[i] - 65248);
|
|
|
|
|
}
|
|
|
|
|
return new string(c);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private XmlDocument GetUserSettingXml(GridEntity gridEntity)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
XmlDocument xmlDoc = new XmlDocument();
|
|
|
|
|
XmlElement root = xmlDoc.CreateElement("user-settings");
|
|
|
|
|
|
|
|
|
|
//xmlDoc.AppendChild(root);
|
|
|
|
|
|
|
|
|
|
XmlElement xGid = xmlDoc.CreateElement("gid");
|
|
|
|
|
xGid.InnerText = gridEntity.GID;
|
|
|
|
|
root.AppendChild(xGid);
|
|
|
|
|
|
|
|
|
|
XmlElement xUserID = xmlDoc.CreateElement("userid");
|
|
|
|
|
xUserID.InnerText = gridEntity.UserID;
|
|
|
|
|
root.AppendChild(xUserID);
|
|
|
|
|
|
|
|
|
|
XmlElement xCreateTime = xmlDoc.CreateElement("create-time");
|
|
|
|
|
xCreateTime.InnerText = gridEntity.CreateTime.ToString();
|
|
|
|
|
root.AppendChild(xCreateTime);
|
|
|
|
|
|
|
|
|
|
XmlElement xColumns = xmlDoc.CreateElement("columns");
|
|
|
|
|
|
|
|
|
|
foreach (GridColumnEntity column in gridEntity.Columns)
|
|
|
|
|
{
|
|
|
|
|
XmlElement xColumn = xmlDoc.CreateElement("column");
|
|
|
|
|
XmlElement nName = xmlDoc.CreateElement("name");
|
|
|
|
|
nName.InnerText = column.Name;
|
|
|
|
|
|
|
|
|
|
xColumn.AppendChild(nName);
|
|
|
|
|
|
|
|
|
|
XmlElement nDescription = xmlDoc.CreateElement("description");
|
|
|
|
|
nDescription.InnerText = column.Description;
|
|
|
|
|
|
|
|
|
|
xColumn.AppendChild(nDescription);
|
|
|
|
|
|
|
|
|
|
XmlElement nIndex = xmlDoc.CreateElement("index");
|
|
|
|
|
nIndex.InnerText = column.Index.ToString();
|
|
|
|
|
|
|
|
|
|
xColumn.AppendChild(nIndex);
|
|
|
|
|
|
|
|
|
|
XmlElement nWidth = xmlDoc.CreateElement("width");
|
|
|
|
|
nWidth.InnerText = column.Width.ToString();
|
|
|
|
|
|
|
|
|
|
xColumn.AppendChild(nWidth);
|
|
|
|
|
|
|
|
|
|
XmlElement nVisible = xmlDoc.CreateElement("visible");
|
|
|
|
|
nVisible.InnerText = column.VisibleState.ToString();
|
|
|
|
|
|
|
|
|
|
xColumn.AppendChild(nVisible);
|
|
|
|
|
|
|
|
|
|
xColumns.AppendChild(xColumn);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
root.AppendChild(xColumns);
|
|
|
|
|
|
|
|
|
|
XmlElement xGroupBy = xmlDoc.CreateElement("group-by");
|
|
|
|
|
xGroupBy.InnerText = gridEntity.GroupBy;
|
|
|
|
|
|
|
|
|
|
root.AppendChild(xGroupBy);
|
|
|
|
|
|
|
|
|
|
XmlElement xPage = xmlDoc.CreateElement("page");
|
|
|
|
|
|
|
|
|
|
XmlElement nPageDefault = xmlDoc.CreateElement("page-default");
|
|
|
|
|
nPageDefault.InnerText = gridEntity.DefaultPrePageCount.ToString();
|
|
|
|
|
xPage.AppendChild(nPageDefault);
|
|
|
|
|
|
|
|
|
|
XmlElement nPagePre = xmlDoc.CreateElement("page-pre");
|
|
|
|
|
nPagePre.InnerText = gridEntity.PagePreCount.ToString();
|
|
|
|
|
xPage.AppendChild(nPagePre);
|
|
|
|
|
|
|
|
|
|
root.AppendChild(xPage);
|
|
|
|
|
|
|
|
|
|
xmlDoc.AppendChild(root);
|
|
|
|
|
return xmlDoc;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|