提交代码
This commit is contained in:
@@ -202,7 +202,10 @@ namespace BLL
|
|||||||
|
|
||||||
var mat1 = BLL.Base_MaterialService.GetMaterialByMaterialId(material1);
|
var mat1 = BLL.Base_MaterialService.GetMaterialByMaterialId(material1);
|
||||||
var mat2 = BLL.Base_MaterialService.GetMaterialByMaterialId(material2);
|
var mat2 = BLL.Base_MaterialService.GetMaterialByMaterialId(material2);
|
||||||
|
if (mat1.MaterialCode == "No matl" || mat2.MaterialCode == "No matl") //材质1或材质2有一种为无材质,则匹配不了wpq
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
int m1 = SNClass(mat1.MaterialClass);
|
int m1 = SNClass(mat1.MaterialClass);
|
||||||
int m2 = SNClass(mat2.MaterialClass);
|
int m2 = SNClass(mat2.MaterialClass);
|
||||||
|
|
||||||
|
|||||||
@@ -841,7 +841,7 @@ namespace BLL
|
|||||||
{
|
{
|
||||||
if (isExitWPQId)
|
if (isExitWPQId)
|
||||||
{
|
{
|
||||||
string strSql = "SELECT distinct PipelineId, PipelineCode FROM View_HJGL_WeldJoint WHERE IsTwoJoint IS NULL AND UnitWorkId =@UnitWorkId AND WPQId IS NULL";
|
string strSql = "SELECT distinct PipelineId, PipelineCode FROM View_HJGL_WeldJoint WHERE IsTwoJoint IS NULL AND UnitWorkId =@UnitWorkId AND WPQId IS NULL order by PipelineCode";
|
||||||
List<SqlParameter> listStr = new List<SqlParameter>();
|
List<SqlParameter> listStr = new List<SqlParameter>();
|
||||||
listStr.Add(new SqlParameter("@UnitWorkId", node.NodeID));
|
listStr.Add(new SqlParameter("@UnitWorkId", node.NodeID));
|
||||||
if (!string .IsNullOrEmpty(pipecode))
|
if (!string .IsNullOrEmpty(pipecode))
|
||||||
|
|||||||
@@ -544,7 +544,7 @@ namespace FineUIPro.Web.CQMS.WBS
|
|||||||
name = string.Empty;
|
name = string.Empty;
|
||||||
if (!string.IsNullOrEmpty(txtName.Trim()))
|
if (!string.IsNullOrEmpty(txtName.Trim()))
|
||||||
{
|
{
|
||||||
name = "-" + txtName.Trim();
|
name = "-" + txtName.Trim().Replace("&#215;", "×");
|
||||||
}
|
}
|
||||||
if (!string.IsNullOrEmpty(name))
|
if (!string.IsNullOrEmpty(name))
|
||||||
{
|
{
|
||||||
@@ -644,7 +644,7 @@ namespace FineUIPro.Web.CQMS.WBS
|
|||||||
name = string.Empty;
|
name = string.Empty;
|
||||||
if (!string.IsNullOrEmpty(txtName.Trim()))
|
if (!string.IsNullOrEmpty(txtName.Trim()))
|
||||||
{
|
{
|
||||||
name = "-" + txtName.Trim();
|
name = "-" + txtName.Trim().Replace("&#215;", "×");
|
||||||
}
|
}
|
||||||
Model.WBS_WorkPackageProject workPackageProject = BLL.WorkPackageProjectService.GetWorkPackageProjectByWorkPackageCode(workPackageCode2, this.CurrUser.LoginProjectId);
|
Model.WBS_WorkPackageProject workPackageProject = BLL.WorkPackageProjectService.GetWorkPackageProjectByWorkPackageCode(workPackageCode2, this.CurrUser.LoginProjectId);
|
||||||
if (ckbWorkPackageCode.Checked)
|
if (ckbWorkPackageCode.Checked)
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
color: red;
|
color: red;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.customlabelNum span {
|
.customlabelNum span {
|
||||||
color: blue;
|
color: blue;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
@@ -45,6 +46,9 @@
|
|||||||
OnNodeCommand="tvControlItem_NodeCommand" runat="server" ShowBorder="false" EnableCollapse="true"
|
OnNodeCommand="tvControlItem_NodeCommand" runat="server" ShowBorder="false" EnableCollapse="true"
|
||||||
AutoLeafIdentification="true"
|
AutoLeafIdentification="true"
|
||||||
EnableTextSelection="true" OnNodeExpand="tvControlItem_TreeNodeExpanded">
|
EnableTextSelection="true" OnNodeExpand="tvControlItem_TreeNodeExpanded">
|
||||||
|
<Listeners>
|
||||||
|
<f:Listener Event="beforenodecontextmenu" Handler="onTreeNodeContextMenu" />
|
||||||
|
</Listeners>
|
||||||
</f:Tree>
|
</f:Tree>
|
||||||
</Items>
|
</Items>
|
||||||
</f:Panel>
|
</f:Panel>
|
||||||
@@ -527,6 +531,12 @@
|
|||||||
Text="删除" Icon="Delete">
|
Text="删除" Icon="Delete">
|
||||||
</f:MenuButton>
|
</f:MenuButton>
|
||||||
</f:Menu>
|
</f:Menu>
|
||||||
|
<f:Menu ID="Menu4" runat="server">
|
||||||
|
<f:MenuButton ID="btnMenuPipeLineAllDelete" OnClick="btnMenuPipeLineAllDelete_Click" EnablePostBack="true"
|
||||||
|
ConfirmText="删除选中管线?" ConfirmTarget="Top" runat="server"
|
||||||
|
Text="删除" Icon="Delete">
|
||||||
|
</f:MenuButton>
|
||||||
|
</f:Menu>
|
||||||
<f:Menu ID="Menu2" runat="server">
|
<f:Menu ID="Menu2" runat="server">
|
||||||
<f:MenuButton ID="btnDelMat" OnClick="btnDelMat_Click" EnablePostBack="true"
|
<f:MenuButton ID="btnDelMat" OnClick="btnDelMat_Click" EnablePostBack="true"
|
||||||
ConfirmText="删除选中行?" ConfirmTarget="Top" runat="server"
|
ConfirmText="删除选中行?" ConfirmTarget="Top" runat="server"
|
||||||
@@ -553,6 +563,7 @@
|
|||||||
var menuID1 = '<%= Menu1.ClientID %>';
|
var menuID1 = '<%= Menu1.ClientID %>';
|
||||||
var menuID2 = '<%= Menu2.ClientID %>';
|
var menuID2 = '<%= Menu2.ClientID %>';
|
||||||
var menuID3 = '<%= Menu3.ClientID %>';
|
var menuID3 = '<%= Menu3.ClientID %>';
|
||||||
|
var menuID4 = '<%= Menu4.ClientID %>';
|
||||||
// 返回false,来阻止浏览器右键菜单
|
// 返回false,来阻止浏览器右键菜单
|
||||||
function onRowContextMenu1(event, rowId) {
|
function onRowContextMenu1(event, rowId) {
|
||||||
F(menuID1).show(); //showAt(event.pageX, event.pageY);
|
F(menuID1).show(); //showAt(event.pageX, event.pageY);
|
||||||
@@ -570,6 +581,12 @@
|
|||||||
function reloadGrid() {
|
function reloadGrid() {
|
||||||
__doPostBack(null, 'reloadGrid');
|
__doPostBack(null, 'reloadGrid');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 返回false,来阻止浏览器右键菜单
|
||||||
|
function onTreeNodeContextMenu(event, rowId) {
|
||||||
|
F(menuID4).show(); //showAt(event.pageX, event.pageY);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -143,8 +143,9 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
|||||||
{
|
{
|
||||||
foreach (var q in unitWork2)
|
foreach (var q in unitWork2)
|
||||||
{
|
{
|
||||||
int a = (from x in Funs.DB.HJGL_Pipeline where x.ProjectId == this.CurrUser.LoginProjectId && x.UnitWorkId == q.UnitWorkId
|
int a = (from x in Funs.DB.HJGL_Pipeline
|
||||||
&& x.PipelineCode.Contains(this.tvPipeCode.Text.Trim())
|
where x.ProjectId == this.CurrUser.LoginProjectId && x.UnitWorkId == q.UnitWorkId
|
||||||
|
&& x.PipelineCode.Contains(this.tvPipeCode.Text.Trim())
|
||||||
select x).Count();
|
select x).Count();
|
||||||
var unitNamesUnitIds = BLL.UnitService.getUnitNamesUnitIds(q.UnitId);
|
var unitNamesUnitIds = BLL.UnitService.getUnitNamesUnitIds(q.UnitId);
|
||||||
TreeNode tn2 = new TreeNode();
|
TreeNode tn2 = new TreeNode();
|
||||||
@@ -157,7 +158,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
|||||||
tn2.ToolTip = "施工单位:" + unitNamesUnitIds;
|
tn2.ToolTip = "施工单位:" + unitNamesUnitIds;
|
||||||
tn2.CommandName = 1 + "|" + Funs.GetEndPageNumber(a, pageSize);
|
tn2.CommandName = 1 + "|" + Funs.GetEndPageNumber(a, pageSize);
|
||||||
tn2.EnableExpandEvent = true;
|
tn2.EnableExpandEvent = true;
|
||||||
tn2.EnableClickEvent= true;
|
tn2.EnableClickEvent = true;
|
||||||
rootNode2.Nodes.Add(tn2);
|
rootNode2.Nodes.Add(tn2);
|
||||||
if (a > 0)
|
if (a > 0)
|
||||||
{
|
{
|
||||||
@@ -175,7 +176,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
|||||||
#region
|
#region
|
||||||
private void BindNodes(TreeNode node)
|
private void BindNodes(TreeNode node)
|
||||||
{
|
{
|
||||||
BLL.PipelineService.BindTreeNodes(node, this.tvPipeCode.Text.Trim(), this.CurrUser.LoginProjectId,pageSize);
|
BLL.PipelineService.BindTreeNodes(node, this.tvPipeCode.Text.Trim(), this.CurrUser.LoginProjectId, pageSize);
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
@@ -414,11 +415,11 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
|||||||
private string GetRateByUnitWork(string unitworkid)
|
private string GetRateByUnitWork(string unitworkid)
|
||||||
{
|
{
|
||||||
var db = Funs.DB;
|
var db = Funs.DB;
|
||||||
var q=from x in db.View_HJGL_WeldJoint where x.UnitWorkId == unitworkid select x ;
|
var q = from x in db.View_HJGL_WeldJoint where x.UnitWorkId == unitworkid select x;
|
||||||
string rate = "";
|
string rate = "";
|
||||||
ShopSumSize = "0";
|
ShopSumSize = "0";
|
||||||
FieldSumSize = "0";
|
FieldSumSize = "0";
|
||||||
if (q!=null&&q.Count()>0)
|
if (q != null && q.Count() > 0)
|
||||||
{
|
{
|
||||||
var proSum = (from x in q
|
var proSum = (from x in q
|
||||||
where x.JointAttribute == "预制口"
|
where x.JointAttribute == "预制口"
|
||||||
@@ -442,12 +443,12 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
|||||||
}).FirstOrDefault()?.SizeSum;
|
}).FirstOrDefault()?.SizeSum;
|
||||||
proSum = (proSum != null) ? proSum : 0;
|
proSum = (proSum != null) ? proSum : 0;
|
||||||
FieldSum = (FieldSum != null) ? FieldSum : 0;
|
FieldSum = (FieldSum != null) ? FieldSum : 0;
|
||||||
ShopSumSize = proSum.ToString() ;
|
ShopSumSize = proSum.ToString();
|
||||||
FieldSumSize = FieldSum.ToString() ;
|
FieldSumSize = FieldSum.ToString();
|
||||||
if (AllSum>0)
|
if (AllSum > 0)
|
||||||
{
|
{
|
||||||
var a = (decimal)100 * proSum / AllSum;
|
var a = (decimal)100 * proSum / AllSum;
|
||||||
rate = Math.Round((decimal)a, 1).ToString()+"%";
|
rate = Math.Round((decimal)a, 1).ToString() + "%";
|
||||||
}
|
}
|
||||||
|
|
||||||
return rate;
|
return rate;
|
||||||
@@ -496,14 +497,14 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
|||||||
var q = from x in db.View_HJGL_WeldJoint where x.PipelineId == pipelineid select x;
|
var q = from x in db.View_HJGL_WeldJoint where x.PipelineId == pipelineid select x;
|
||||||
if (q != null && q.Count() > 0)
|
if (q != null && q.Count() > 0)
|
||||||
{
|
{
|
||||||
var proSumModel= (from x in q
|
var proSumModel = (from x in q
|
||||||
where x.JointAttribute == "预制口"
|
where x.JointAttribute == "预制口"
|
||||||
group x by x.PipelineId into g
|
group x by x.PipelineId into g
|
||||||
select new
|
select new
|
||||||
{
|
{
|
||||||
SizeSum = g.Sum(x => x.Size)
|
SizeSum = g.Sum(x => x.Size)
|
||||||
}).FirstOrDefault();
|
}).FirstOrDefault();
|
||||||
var proSum= (proSumModel !=null) ? proSumModel.SizeSum : 0;
|
var proSum = (proSumModel != null) ? proSumModel.SizeSum : 0;
|
||||||
var FieldSumModel = (from x in q
|
var FieldSumModel = (from x in q
|
||||||
where x.JointAttribute == "安装口"
|
where x.JointAttribute == "安装口"
|
||||||
group x by x.PipelineId into g
|
group x by x.PipelineId into g
|
||||||
@@ -511,7 +512,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
|||||||
{
|
{
|
||||||
SizeSum = g.Sum(x => x.Size)
|
SizeSum = g.Sum(x => x.Size)
|
||||||
}).FirstOrDefault();
|
}).FirstOrDefault();
|
||||||
var FieldSum= (FieldSumModel != null) ? FieldSumModel.SizeSum : 0;
|
var FieldSum = (FieldSumModel != null) ? FieldSumModel.SizeSum : 0;
|
||||||
var AllSumModel = (from x in q
|
var AllSumModel = (from x in q
|
||||||
group x by x.PipelineId into g
|
group x by x.PipelineId into g
|
||||||
select new
|
select new
|
||||||
@@ -550,7 +551,8 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
|||||||
if (q != null && q.Count() > 0)
|
if (q != null && q.Count() > 0)
|
||||||
{
|
{
|
||||||
shopNum = (from x in q
|
shopNum = (from x in q
|
||||||
where x.JointAttribute == "预制口" select x
|
where x.JointAttribute == "预制口"
|
||||||
|
select x
|
||||||
).Count();
|
).Count();
|
||||||
fieldNum = (from x in q
|
fieldNum = (from x in q
|
||||||
where x.JointAttribute == "安装口"
|
where x.JointAttribute == "安装口"
|
||||||
@@ -765,6 +767,38 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected void btnMenuPipeLineAllDelete_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
if (CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.PersonId, Const.HJGL_WeldJointMenuId, Const.BtnDelete))
|
||||||
|
{
|
||||||
|
if (this.tvControlItem.SelectedNode.CommandName != "管线")
|
||||||
|
{
|
||||||
|
Alert.ShowInTop("请选择一条管线!", MessageBoxIcon.Warning);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
string pipelineId = this.tvControlItem.SelectedNodeID;
|
||||||
|
var weldJoints = from x in Funs.DB.HJGL_WeldJoint
|
||||||
|
where x.PipelineId == pipelineId && x.WeldingDailyId != null
|
||||||
|
select x;
|
||||||
|
if (weldJoints.Count() > 0)
|
||||||
|
{
|
||||||
|
Alert.ShowInTop("存在已焊接的焊口,无法删除管线!", MessageBoxIcon.Warning);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
BLL.WeldJointService.DeleteWeldJointByPipelineId(pipelineId);
|
||||||
|
BLL.PipelineService.DeletePipeline(pipelineId);
|
||||||
|
//BLL.Sys_LogService.AddLog(BLL.Const.System_6, this.CurrUser.LoginProjectId, this.CurrUser.PersonId, Const.HJGL_PipelineMenuId, Const.BtnDelete, rowID);
|
||||||
|
ShowNotify("删除成功!", MessageBoxIcon.Success);
|
||||||
|
|
||||||
|
|
||||||
|
this.InitTreeMenu();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ShowNotify("您没有这个权限,请与管理员联系!", MessageBoxIcon.Warning);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
protected void btnDelMat_Click(object sender, EventArgs e)
|
protected void btnDelMat_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
if (CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.PersonId, Const.HJGL_WeldJointMenuId, Const.BtnDelete))
|
if (CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.PersonId, Const.HJGL_WeldJointMenuId, Const.BtnDelete))
|
||||||
|
|||||||
@@ -7,12 +7,10 @@
|
|||||||
// </自动生成>
|
// </自动生成>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
namespace FineUIPro.Web.HJGL.WeldingManage
|
namespace FineUIPro.Web.HJGL.WeldingManage {
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
public partial class WeldJointList
|
public partial class WeldJointList {
|
||||||
{
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// form1 控件。
|
/// form1 控件。
|
||||||
@@ -419,6 +417,24 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
|||||||
/// </remarks>
|
/// </remarks>
|
||||||
protected global::FineUIPro.MenuButton btnMenuPipeLineDelete;
|
protected global::FineUIPro.MenuButton btnMenuPipeLineDelete;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Menu4 控件。
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// 自动生成的字段。
|
||||||
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
|
/// </remarks>
|
||||||
|
protected global::FineUIPro.Menu Menu4;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// btnMenuPipeLineAllDelete 控件。
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// 自动生成的字段。
|
||||||
|
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||||
|
/// </remarks>
|
||||||
|
protected global::FineUIPro.MenuButton btnMenuPipeLineAllDelete;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Menu2 控件。
|
/// Menu2 控件。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@@ -251,8 +251,8 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
this.Grid1.Columns[12].Hidden = false;
|
//this.Grid1.Columns[12].Hidden = false;
|
||||||
this.btnSave.Hidden = false;
|
//this.btnSave.Hidden = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|||||||
@@ -375,15 +375,16 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
|||||||
{
|
{
|
||||||
if (!string.IsNullOrEmpty(tvControlItem.SelectedNodeID))
|
if (!string.IsNullOrEmpty(tvControlItem.SelectedNodeID))
|
||||||
{
|
{
|
||||||
var jotList = from x in Funs.DB.HJGL_WeldJoint where x.PipelineId == tvControlItem.SelectedNodeID &&x.JointAttribute==drpJointAttribute.SelectedValue && x.WPQId == null select x;
|
var jotList = from x in Funs.DB.HJGL_WeldJoint where x.PipelineId == tvControlItem.SelectedNodeID &&x.JointAttribute==drpJointAttribute.SelectedValue select x;
|
||||||
if (jotList.Count() > 0)
|
if (jotList.Count() > 0)
|
||||||
{
|
{
|
||||||
foreach (var jot in jotList)
|
foreach (var jot in jotList)
|
||||||
{
|
{
|
||||||
List<Model.View_HJGL_WPQ> wpqList =BLL.WPQListServiceService.GetMatchWPQ(jot,this.CurrUser.LoginProjectId, drpUnit.SelectedValue);
|
List<Model.View_HJGL_WPQ> wpqList =BLL.WPQListServiceService.GetMatchWPQ(jot,this.CurrUser.LoginProjectId, drpUnit.SelectedValue);
|
||||||
|
Model.HJGL_WeldJoint newJot = new Model.HJGL_WeldJoint();
|
||||||
if (wpqList != null)
|
if (wpqList != null)
|
||||||
{
|
{
|
||||||
Model.HJGL_WeldJoint newJot = new Model.HJGL_WeldJoint();
|
|
||||||
Model.WPQ_WPQList wps = BLL.WPQListServiceService.GetWPQById(wpqList.First().WPQId);
|
Model.WPQ_WPQList wps = BLL.WPQListServiceService.GetWPQById(wpqList.First().WPQId);
|
||||||
|
|
||||||
newJot.WPQId = wps.WPQId;
|
newJot.WPQId = wps.WPQId;
|
||||||
@@ -396,8 +397,21 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
|||||||
newJot.IsHotProess = wps.IsHotProess;
|
newJot.IsHotProess = wps.IsHotProess;
|
||||||
newJot.MatchableWPQ = string.Join(",", wpqList.Select(x => x.WPQCode));
|
newJot.MatchableWPQ = string.Join(",", wpqList.Select(x => x.WPQCode));
|
||||||
|
|
||||||
BLL.WeldJointService.UpdateConWeldJoint(newJot);
|
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
newJot.WPQId = null;
|
||||||
|
newJot.WeldJointId = jot.WeldJointId;
|
||||||
|
newJot.WeldingRod = null;
|
||||||
|
newJot.WeldingWire = null;
|
||||||
|
newJot.WeldingMethodId = null;
|
||||||
|
newJot.GrooveTypeId = null;
|
||||||
|
newJot.PreTemperature = null;
|
||||||
|
newJot.IsHotProess = null;
|
||||||
|
newJot.MatchableWPQ = null;
|
||||||
|
}
|
||||||
|
BLL.WeldJointService.UpdateConWeldJoint(newJot);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
BindGrid();
|
BindGrid();
|
||||||
|
|||||||
Reference in New Issue
Block a user