From d53b01ecb274f83171296b10ff77d305522e0170 Mon Sep 17 00:00:00 2001
From: yusijie <ysj@hz-kingdee.com>
Date: 星期四, 29 六月 2023 14:55:27 +0800
Subject: [PATCH] 条码生成,来料检验
---
Pub_Class/CustomerCls/ClsPub.cs | 97 +++++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 95 insertions(+), 2 deletions(-)
diff --git a/Pub_Class/CustomerCls/ClsPub.cs b/Pub_Class/CustomerCls/ClsPub.cs
index a5dc3e9..70be5da 100644
--- a/Pub_Class/CustomerCls/ClsPub.cs
+++ b/Pub_Class/CustomerCls/ClsPub.cs
@@ -930,7 +930,7 @@
if (LogTF == 1 || LogTF == 3)//闇�瑕佸垽鏂潈闄�
{
//鏍规嵁鐢ㄦ埛鍚嶇О鍒ゆ柇鏉冮檺
- DsUser = oCn.RunProcReturn("select * from gy_czygl where czymc='" + UserID.Trim() + "'", "gy_czygl");
+ DsUser = oCn.RunProcReturn("select ManagerFlag,isnull(AuthorityID,'') AuthorityID,Czybm from gy_czygl where czymc='" + UserID.Trim() + "'", "gy_czygl");
if (DsUser.Tables[0].Rows.Count == 0)
{
if (Msg == true)
@@ -946,7 +946,8 @@
}
else
{
- if (DsUser.Tables[0].Rows[0]["AuthorityID"].ToString().Trim().Substring((int)ModID - 1, 1) == "1")
+ if (ClsPub.isStrNull(DsUser.Tables[0].Rows[0]["AuthorityID"]).Length > ModID
+ && DsUser.Tables[0].Rows[0]["AuthorityID"].ToString().Trim().Substring((int)ModID - 1, 1) == "1")
{
HavRight = true;
}
@@ -2502,5 +2503,97 @@
}
return sb.ToString();
}
+
+ //鎷兼帴sql锛屾寜杞﹂棿锛屽伐浣滀腑蹇冩煡璇�
+ public static string SpliceSQL(string czymc,string ListName)
+ {
+ DataSet ds;
+ ClsSqlHelper oCN = new ClsSqlHelper();
+ string sql = "";
+
+ //鍒ゆ柇鏄惁鏈夋煡璇㈠垪琛ㄦ墍鏈変俊鎭潈闄�
+ if (!Security_Log("Xt_List_All", 1, false, czymc))
+ {
+ //鏃�
+ switch (ListName)
+ {
+ case "宸ヨ壓璺嚎鍒楄〃":
+ sql = " and HCenterID in (select HWorkCenterID from Gy_UserWorkCenterRelation where HUserID = (select Czybm from gy_czygl where czymc = '" + czymc + "'))";
+ break;
+ case "鐢熶骇璁㈠崟鍒楄〃":
+ sql = " and HDeptID in (select HDeptID from Gy_UserDeptRelation where HUserID = (select Czybm from gy_czygl where czymc = '" + czymc + "'))";
+ break;
+ case "宸ュ簭娲惧伐鍗曞垪琛�":
+ sql = " and HDeptID in (select HDeptID from Gy_UserDeptRelation where HUserID = (select Czybm from gy_czygl where czymc = '" + czymc + "'))";
+ break;
+ case "宸ュ簭娲惧伐鍗曟槑缁嗗垪琛�":
+ sql = " and HDeptID in (select HDeptID from Gy_UserDeptRelation where HUserID = (select Czybm from gy_czygl where czymc = '" + czymc + "'))";
+ break;
+ case "宸ュ簭姹囨姤鍗曞垪琛�":
+ sql = " and HCenterID in (select HWorkCenterID from Gy_UserWorkCenterRelation where HUserID = (select Czybm from gy_czygl where czymc = '" + czymc + "'))";
+ break;
+ case "鐢熶骇杞﹂棿宸ュ簭鎶ヨ〃":
+ sql = ",'" + czymc +"'";
+ break;
+ case "宸ュ簭鍦ㄥ埗鍝佹姤琛�":
+ sql = ",'" + czymc + "'";
+ break;
+ case "宸ュ簭姹囨姤鏃ユ姤琛�":
+ sql = ",'" + czymc + "'";
+ break;
+ case "璁′欢宸ヨ祫鎶ヨ〃":
+ sql = ",'" + czymc + "'";
+ break;
+ case "璁′欢宸ヨ祫姹囨�绘姤琛�":
+ sql = ",'" + czymc + "'";
+ break;
+ }
+ return sql;
+ }
+ else
+ {
+ //鏈�
+ return sql;
+ }
+
+ //ds = oCN.RunProcReturn("select * from gy_czygl where Czymc='" + czymc + "'", "gy_czygl");
+ ////鍒ゆ柇鏄惁鏌ヨ鍒扮浉鍏崇敤鎴蜂俊鎭�
+ //if (ds != null || ds.Tables[0].Rows.Count != 0)
+ //{
+ // Int64 HManagerFlag = Convert.ToInt64(ds.Tables[0].Rows[0]["ManagerFlag"]);
+ // if (HManagerFlag == 1)//鏈夌鐞嗗憳鏉冮檺
+ // {
+ // return sql;
+ // }
+ // else //娌℃湁绠$悊鍛樻潈闄�
+ // {
+ // switch (ListName)
+ // {
+ // case "宸ヨ壓璺嚎鍒楄〃":
+ // sql = " and HCenterID in (select HWorkCenterID from Gy_UserWorkCenterRelation where HUserID = (select Czybm from gy_czygl where czymc = '" + czymc + "'))";
+ // break;
+ // case "鐢熶骇璁㈠崟鍒楄〃":
+ // sql = " and HDeptID in (select HDeptID from Gy_UserDeptRelation where HUserID = (select Czybm from gy_czygl where czymc = '" + czymc + "'))";
+ // break;
+ // case "宸ュ簭娲惧伐鍗曞垪琛�":
+ // sql = " and HDeptID in (select HDeptID from Gy_UserDeptRelation where HUserID = (select Czybm from gy_czygl where czymc = '" + czymc + "'))";
+ // break;
+ // case "宸ュ簭娲惧伐鍗曟槑缁嗗垪琛�":
+ // sql = " and HDeptID in (select HDeptID from Gy_UserDeptRelation where HUserID = (select Czybm from gy_czygl where czymc = '" + czymc + "'))";
+ // break;
+ // case "宸ュ簭姹囨姤鍗曞垪琛�":
+ // sql = " and HCenterID in (select HWorkCenterID from Gy_UserWorkCenterRelation where HUserID = (select Czybm from gy_czygl where czymc = '" + czymc + "'))";
+ // break;
+ // }
+ // return sql;
+ // }
+ //}
+ //else
+ //{
+ // sql = "娌℃湁鏌ヨ鍒扮浉鍏崇敤鎴蜂俊鎭�";
+ // return sql;
+ //}
+ }
+
}
}
--
Gitblit v1.9.1