You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
457 lines
18 KiB
C#
457 lines
18 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Configuration;
|
|
using System.Data;
|
|
using System.Linq;
|
|
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 DSWeb.Models;
|
|
using DSWeb.EntityDA;
|
|
using System.Text;
|
|
|
|
namespace DSWeb.Shipping
|
|
{
|
|
public partial class OpStatusListGridSource : System.Web.UI.Page
|
|
{
|
|
private string strReadXmlType = "";//读取xml串方式 "init"-初始化获取所有账户信息;"add"-添加新的账户信息;"delete"-删除账户信息;"exist"查看是否有与委托相关账户
|
|
private int iShowCount;//每页显示数据量
|
|
private string strBSNO;//委托编号
|
|
//private string opstatus;
|
|
|
|
//delete
|
|
private string strOpStatusListGid;//账户信息GID
|
|
private string strHandle;//账户操作说明
|
|
private const int iResult = -99;//参数错误
|
|
|
|
T_ALL_DA T_ALL_DA = new T_ALL_DA();
|
|
private string strRange = String.Empty;//权限可视范围
|
|
RangeDA RangeDA = new RangeDA();
|
|
public string strUserID;//用户GID
|
|
public string strCompanyID;//公司GID
|
|
public string strShowName;//用户显示名
|
|
public string strDeptName;//部门名称
|
|
|
|
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 (Session["SHOWNAME"] != null)
|
|
{
|
|
strShowName = Session["SHOWNAME"].ToString();
|
|
}
|
|
if (Session["COMPANYID"] != null)
|
|
{
|
|
strCompanyID = Session["COMPANYID"].ToString();
|
|
}
|
|
if (Session["DEPTNAME"] != null)
|
|
{
|
|
strDeptName = Session["DEPTNAME"].ToString();
|
|
}
|
|
//
|
|
#region 判断参数是否正确
|
|
if (Request.QueryString["read"] != null)
|
|
{
|
|
strReadXmlType = Request.QueryString["read"].ToString().Trim();
|
|
}
|
|
if (Request.QueryString["showcount"] != null)
|
|
{
|
|
iShowCount = int.Parse(Request.QueryString["showcount"].ToString());
|
|
}
|
|
if (Request.QueryString["BSNO"] != null)
|
|
{
|
|
strBSNO = Request.QueryString["BSNO"].ToString();
|
|
}
|
|
#endregion
|
|
|
|
#region 权限可视范围
|
|
//if (Request.QueryString["opstatus"] != null)
|
|
//{
|
|
// opstatus = Request.QueryString["opstatus"].ToString();
|
|
//}
|
|
//if (opstatus == "op_seae")
|
|
//{
|
|
// strRange = RangeDA.GetVISIBLERANGE(strUserID.Trim(), "modOrderManagement");
|
|
// if (strRange.Trim().Equals("0"))//全部
|
|
// {
|
|
// strRange = "";
|
|
// }
|
|
// else if (strRange.Trim().Equals("1"))//分公司
|
|
// {
|
|
// strRange = " and BSNO in(" + RangeDA.GetOrderManagementCompany(strUserID.Trim()) + ")";
|
|
// }
|
|
// else if (strRange.Trim().Equals("2"))//部门
|
|
// {
|
|
// strRange = " and BSNO in(" + RangeDA.GetOrderManagementDEPT(strUserID.Trim()) + ")";
|
|
// }
|
|
// else if (strRange.Trim().Equals("3"))//个人
|
|
// {
|
|
// strRange = " and BSNO in(" + RangeDA.GetOrderManagementPerson(strUserID.Trim()) + ")";
|
|
// }
|
|
// else if (strRange.Trim().Equals("4"))//无
|
|
// {
|
|
// strRange = " and 1<0";
|
|
// }
|
|
// else//空
|
|
// {
|
|
// strRange = " and 1<0";
|
|
// }
|
|
//}
|
|
//else if (opstatus == "op_seai")
|
|
//{
|
|
// strRange = RangeDA.GetVISIBLERANGE(strUserID.Trim(), "modSeaImportList");
|
|
// if (strRange.Trim().Equals("0"))//全部
|
|
// {
|
|
// strRange = "";
|
|
// }
|
|
// else if (strRange.Trim().Equals("1"))//分公司
|
|
// {
|
|
// strRange = " and BSNO in(" + RangeDA.GetSeaImportListCompany(strUserID.Trim()) + ")";
|
|
// }
|
|
// else if (strRange.Trim().Equals("2"))//部门
|
|
// {
|
|
// strRange = " and BSNO in(" + RangeDA.GetSeaImportListDEPT(strUserID.Trim()) + ")";
|
|
// }
|
|
// else if (strRange.Trim().Equals("3"))//个人
|
|
// {
|
|
// strRange = " and BSNO in(" + RangeDA.GetSeaImportListPerson(strUserID.Trim()) + ")";
|
|
// }
|
|
// else if (strRange.Trim().Equals("4"))//无
|
|
// {
|
|
// strRange = " and 1<0";
|
|
// }
|
|
// else//空
|
|
// {
|
|
// strRange = " and 1<0";
|
|
// }
|
|
//}
|
|
#endregion
|
|
//
|
|
if (!strReadXmlType.Equals(""))
|
|
{
|
|
if (strReadXmlType.Equals("delete") || strReadXmlType.Equals("recover"))
|
|
{
|
|
strOpStatusListGid = (String)Request.QueryString["gid"] as String;
|
|
strHandle = (String)Request.QueryString["read"] as String;
|
|
if (strOpStatusListGid == null || strHandle == null)
|
|
{
|
|
Response.Write(iResult);
|
|
}
|
|
else
|
|
{
|
|
string strQuery = DoExcute(strOpStatusListGid, strHandle);
|
|
Response.Write(strQuery);
|
|
}
|
|
}
|
|
else if (strReadXmlType.Equals("addrq"))
|
|
{
|
|
string rq = T_ALL_DA.GetStrSQL("rq", "select rq=getdate()");
|
|
if (rq.Trim() != "")
|
|
{
|
|
int irq = rq.IndexOf(" ");
|
|
rq = rq.Substring(0, irq);
|
|
rq = rq.Replace("-", "/");
|
|
}
|
|
Response.Write(rq);
|
|
return;
|
|
}
|
|
else if (strReadXmlType.Equals("addname"))
|
|
{
|
|
string strname = T_ALL_DA.GetStrSQL("SHOWNAME", "select SHOWNAME from [user] where GID='" + strUserID.Trim() + "'");
|
|
Response.Write(strname);
|
|
return;
|
|
}
|
|
else
|
|
{
|
|
string strOutputXml = "";
|
|
strOutputXml = GetCells(iShowCount, strReadXmlType);
|
|
//输出XML字符串
|
|
Response.ContentType = "text/xml";
|
|
strOutputXml.Replace("&", "&");
|
|
Response.Write(strOutputXml);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
//访问参数不正确
|
|
Response.ContentType = "text/xml";
|
|
Response.Write("-2");
|
|
}
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 根据用户提交的
|
|
/// </summary>
|
|
/// <param name="tempGid">账户GID</param>
|
|
/// <param name="tempHandle">操作类型 delete删除单条账户</param>
|
|
/// <returns>值1-删除成功;值-1 -删除操作异常 值-2 -回滚失败 值-3 -未获取相关账户信息</returns>
|
|
private string DoExcute(string tempGid, string tempHandle)
|
|
{
|
|
string strVal = "";
|
|
OpStatusListDA OpStatusListDA = new OpStatusListDA();
|
|
|
|
//操作类型为删除
|
|
if (tempHandle == "delete")
|
|
{
|
|
int iResult = 0;
|
|
//先判断当前要删除的账户是否存在
|
|
if (!tempGid.Trim().Equals(""))
|
|
{
|
|
OpStatusListEntity OpStatusListEntity = new OpStatusListEntity();
|
|
OpStatusListEntity = OpStatusListDA.GetOpStatusListByID(tempGid);
|
|
|
|
if (OpStatusListEntity.ST_ID != null)
|
|
{
|
|
iResult = OpStatusListDA.DeleteOpStatusListByGid(OpStatusListEntity.ST_ID);
|
|
}
|
|
else
|
|
{
|
|
iResult = -3; //未获取相关账户信息
|
|
}
|
|
}
|
|
strVal = iResult.ToString();
|
|
}
|
|
|
|
if (tempHandle == "recover")
|
|
{
|
|
if (!tempGid.Trim().Equals(""))
|
|
{
|
|
OpStatusListEntity OpStatusListEntity = new OpStatusListEntity();
|
|
OpStatusListEntity = OpStatusListDA.GetOpStatusListByID(tempGid);
|
|
|
|
if (OpStatusListEntity != null)
|
|
{
|
|
StringBuilder OpStatusListBuilder = new StringBuilder();
|
|
OpStatusListBuilder.Append(OpStatusListEntity.ST_ID + ",");
|
|
OpStatusListBuilder.Append(OpStatusListEntity.BSNO + ",");
|
|
OpStatusListBuilder.Append(OpStatusListEntity.STATUS + ",");
|
|
OpStatusListBuilder.Append(OpStatusListEntity.COMPTIME + ",");
|
|
OpStatusListBuilder.Append(OpStatusListEntity.COMPOP + ",");
|
|
OpStatusListBuilder.Append(OpStatusListEntity.REMARK);
|
|
strVal = OpStatusListBuilder.ToString();
|
|
}
|
|
else
|
|
{
|
|
strVal = "-3";
|
|
}
|
|
}
|
|
else
|
|
{
|
|
strVal = "-3";
|
|
}
|
|
}
|
|
|
|
return strVal;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取账户信息
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
private string GetCells(int iShowCount, string readXmlType)
|
|
{
|
|
OpStatusListEntity OpStatusListEntity = new OpStatusListEntity();
|
|
OpStatusListDA OpStatusListDA = new OpStatusListDA();
|
|
|
|
OpStatusListEntity existOpStatusListEntity = new OpStatusListEntity();
|
|
|
|
existOpStatusListEntity = OpStatusListDA.GetOpStatusListByBSNOAndType(strBSNO);
|
|
if (existOpStatusListEntity != null && !strReadXmlType.Equals("exist"))
|
|
{
|
|
//获取所有账户信息,用做Grid显示
|
|
DataTable OpStatusListTable = new DataTable();
|
|
|
|
//初始化
|
|
string strInitSql = " SELECT ST_ID,STATUS,COMPTIME,COMPOP,REMARK FROM op_status WHERE BSNO = '" + strBSNO + "' " + strRange + " ORDER BY BSNO,INPUTTIME";
|
|
OpStatusListTable = getStatusNameTable(OpStatusListDA.GetExcuteSql(strInitSql).Tables[0]);
|
|
|
|
//编排字符串 xml串
|
|
StringBuilder dataBuilder = new StringBuilder();
|
|
|
|
dataBuilder.Append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
|
|
dataBuilder.Append("<rows>");
|
|
|
|
int iCount = OpStatusListTable.Rows.Count;
|
|
|
|
for (int i = 0; i < iCount; i++)
|
|
{
|
|
int jCount = OpStatusListTable.Columns.Count;
|
|
dataBuilder.Append("<row id=\"" + OpStatusListTable.Rows[i]["ST_ID"].ToString() + "\">");
|
|
for (int j = 1; j < jCount; j++)
|
|
{
|
|
switch (j)
|
|
{
|
|
case 1:
|
|
//dataBuilder.Append("<cell>" + OpStatusListTable.Rows[i][j].ToString() + "</cell>");
|
|
string xl = GetCodeBsstatus(OpStatusListTable.Rows[i][j].ToString().Trim());
|
|
if (xl != "")
|
|
{
|
|
dataBuilder.Append(xl);
|
|
}
|
|
else
|
|
{
|
|
dataBuilder.Append("<cell>" + OpStatusListTable.Rows[i][j].ToString() + "</cell>");
|
|
}
|
|
break;
|
|
case 2:
|
|
string rq = OpStatusListTable.Rows[i][j].ToString();
|
|
if (rq.Trim() != "")
|
|
{
|
|
int irq = rq.IndexOf(" ");
|
|
rq = rq.Substring(0, irq);
|
|
rq = rq.Replace("-", "/");
|
|
}
|
|
dataBuilder.Append("<cell>" + rq + "</cell>");
|
|
break;
|
|
case 3:
|
|
dataBuilder.Append("<cell>" + OpStatusListTable.Rows[i][j].ToString() + "</cell>");
|
|
break;
|
|
case 4:
|
|
dataBuilder.Append("<cell>" + OpStatusListTable.Rows[i][j].ToString() + "</cell>");
|
|
break;
|
|
}
|
|
|
|
}
|
|
dataBuilder.Append("</row>");
|
|
}
|
|
dataBuilder.Append("</rows>");
|
|
|
|
return dataBuilder.ToString();
|
|
}
|
|
else if (existOpStatusListEntity != null && strReadXmlType.Equals("exist"))
|
|
{
|
|
return "1";//存在账户
|
|
}
|
|
else if (existOpStatusListEntity == null && strReadXmlType.Equals("add"))
|
|
{
|
|
StringBuilder dataBuilder = new StringBuilder();
|
|
dataBuilder.Append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
|
|
dataBuilder.Append("<rows>");
|
|
dataBuilder.Append("<row id=\"" + Guid.NewGuid().ToString() + "\">");
|
|
string strcb = GetCodeBsstatus("");
|
|
if (strcb.Trim() == "")
|
|
{
|
|
dataBuilder.Append("<cell></cell>");
|
|
}
|
|
else
|
|
{
|
|
dataBuilder.Append(strcb);
|
|
}
|
|
string rq = T_ALL_DA.GetStrSQL("rq", "select rq=getdate()");
|
|
if (rq.Trim() != "")
|
|
{
|
|
int irq = rq.IndexOf(" ");
|
|
rq = rq.Substring(0, irq);
|
|
rq = rq.Replace("-", "/");
|
|
}
|
|
dataBuilder.Append("<cell>" + rq + "</cell>");
|
|
string strname = T_ALL_DA.GetStrSQL("SHOWNAME", "select SHOWNAME from [user] where GID='" + strUserID.Trim() + "'");
|
|
dataBuilder.Append("<cell>" + strname + "</cell>");
|
|
dataBuilder.Append("<cell></cell>");
|
|
dataBuilder.Append("</row>");
|
|
dataBuilder.Append("</rows>");
|
|
return dataBuilder.ToString();
|
|
}
|
|
else
|
|
{
|
|
return "-3";//没有相关的账户
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// 获取CRM系统客户信息下拉列表
|
|
/// </summary>
|
|
/// <param name="strClientValue">当前列表客户信息值</param>
|
|
/// <returns></returns>
|
|
public string GetCodeBsstatus(string strClientValue)
|
|
{
|
|
string strOPLB = "";
|
|
if (strBSNO.Trim().IndexOf("topseae") > -1)
|
|
{
|
|
strOPLB = "topseae";
|
|
}
|
|
else if (strBSNO.Trim().IndexOf("topseai") > -1)
|
|
{
|
|
strOPLB = "topseai";
|
|
if (strBSNO.Trim().IndexOf("topseailcl") > -1)
|
|
{
|
|
strOPLB = "topseailcl";
|
|
}
|
|
}
|
|
else if (strBSNO.Trim().IndexOf("topother") > -1)
|
|
{
|
|
strOPLB = "topother";
|
|
}
|
|
//
|
|
//DataSet ds = T_ALL_DA.GetAllSQL("select * from code_bsstatus where CORPID in (select COMPANYID from user_company where USERID='" + strUserID.Trim() + "')");// and BSNO like '%" + strOPLB + "%'
|
|
|
|
string strInitSql = " SELECT STATUS as BSTYPE FROM op_status WHERE BSNO like '%" + strOPLB + "%'"
|
|
//+ " and STATUS in (select BSTYPE from code_bsstatus where CORPID='" + strCompanyID + "')"
|
|
+ " group by STATUS";
|
|
DataSet ds = T_ALL_DA.GetAllSQL(strInitSql);
|
|
if (ds != null)
|
|
{
|
|
StringBuilder clientBuilder = new StringBuilder();
|
|
clientBuilder.Append("<cell xmlcontent=\"1\" editable=\"1\">" + strClientValue);
|
|
for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
|
|
{
|
|
if (!ds.Tables[0].Rows[i]["BSTYPE"].ToString().Trim().Equals(""))
|
|
{
|
|
clientBuilder.Append("<option value=\"" + ds.Tables[0].Rows[i]["BSTYPE"].ToString() + "\">" + ds.Tables[0].Rows[i]["BSTYPE"].ToString() + "</option>");
|
|
}
|
|
}
|
|
clientBuilder.Append("</cell>");
|
|
return clientBuilder.ToString();
|
|
}
|
|
else
|
|
{
|
|
return "";
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// 将数据集表中账户状态OpStatusListStatus和应收应付类型OpStatusListType的数字状态位转换成文字
|
|
/// </summary>
|
|
/// <param name="tempTable">原数据源DataTable</param>
|
|
/// <returns>返回新数据源DataTable</returns>
|
|
private DataTable getStatusNameTable(DataTable tempTable)
|
|
{
|
|
DataTable sourceTable = tempTable;
|
|
DataTable cloneTable = new DataTable();
|
|
int iSwitch = 0;
|
|
for (int i = 0; i < sourceTable.Rows.Count; i++)
|
|
{
|
|
if (iSwitch == 0)
|
|
{
|
|
for (int j = 0; j < sourceTable.Columns.Count; j++)
|
|
{
|
|
DataColumn newColumn = new DataColumn();
|
|
newColumn.ColumnName = sourceTable.Columns[j].ColumnName;
|
|
newColumn.DataType = sourceTable.Columns[j].DataType;
|
|
cloneTable.Columns.Add(newColumn);
|
|
}
|
|
iSwitch = 1;
|
|
}
|
|
DataRow cloneRow = cloneTable.NewRow();
|
|
|
|
for (int k = 0; k < sourceTable.Columns.Count; k++)
|
|
{
|
|
cloneRow[sourceTable.Columns[k].ColumnName] = sourceTable.Rows[i][k];
|
|
}
|
|
cloneTable.Rows.Add(cloneRow);
|
|
}
|
|
return cloneTable;
|
|
}
|
|
}
|
|
}
|