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.
|
|
|
|
using System;
|
|
|
|
|
using BP.DA;
|
|
|
|
|
using BP.En;
|
|
|
|
|
using BP.Sys;
|
|
|
|
|
using System.Data;
|
|
|
|
|
namespace BP.WF.DTS
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 根据坐标排序字段
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class ResetSortMapAttr : Method
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 根据坐标排序字段
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ResetSortMapAttr()
|
|
|
|
|
{
|
|
|
|
|
this.Title = "根据坐标排序MapAttr字段-用于手机端";
|
|
|
|
|
this.Help = "重置MapAttr表中Idx字段,根据坐标y,x排序";
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 设置执行变量
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public override void Init()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 当前的操纵员是否可以执行这个方法
|
|
|
|
|
/// </summary>
|
|
|
|
|
public override bool IsCanDo
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 执行
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>返回执行结果</returns>
|
|
|
|
|
public override object Do()
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
string sql = "select NO from Sys_MapData where No not in(select No from Sys_MapDtl) and No not like '%Rpt'";
|
|
|
|
|
DataTable dt = DBAccess.RunSQLReturnTable(sql);
|
|
|
|
|
if (dt != null)
|
|
|
|
|
{
|
|
|
|
|
foreach (DataRow row in dt.Rows)
|
|
|
|
|
{
|
|
|
|
|
MapAttrs mattrs = new MapAttrs();
|
|
|
|
|
QueryObject qo = new QueryObject(mattrs);
|
|
|
|
|
qo.AddWhere(MapAttrAttr.FK_MapData, row["NO"].ToString());
|
|
|
|
|
qo.addAnd();
|
|
|
|
|
qo.AddWhere(MapAttrAttr.UIVisible, true);
|
|
|
|
|
//qo.addOrderBy(MapAttrAttr.Y, MapAttrAttr.X);
|
|
|
|
|
qo.DoQuery();
|
|
|
|
|
int rowIdx = 0;
|
|
|
|
|
foreach (MapAttr mapAttr in mattrs)
|
|
|
|
|
{
|
|
|
|
|
mapAttr.Idx = rowIdx;
|
|
|
|
|
mapAttr.DirectUpdate();
|
|
|
|
|
rowIdx++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return "执行成功...";
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
return "执行失败...";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|